From 5d629c0da80514f9e2f668f85c5afa6a93665932 Mon Sep 17 00:00:00 2001 From: Matthew Foster Date: Fri, 27 May 2022 15:56:39 -0700 Subject: [PATCH] CKAN CIOOS v1.2 Release (#156) * [docs-only] Override click version to avoid conflict * [docs-only] Remove click version from other req files * [docs-only] Remove click override * Remove erroneous argument `--config` isn't a valid option to `rebuild` * Catch TypeError from invalid thrown by dateutils Also provide better logs so that it is possible to identify the issue. * Update search index date tests to throw TypeErrors * Revert "Catch TypeError from invalid dates thrown by dateutils" * Update version for 2.9.4b * [#5597] Fix DataPusher error during resource_update Create local session in the DataPusher submit action and pass that to task_status_update to avoid interferring with the overall resource_update transaction. See ckan/ckan#6137 for details * Improve documentation: resource_patch When someone reads "Uploading a new version of a resource file" is not expected that deletes all extras. * [#6113] Fix user email validator when using name as id parameter CKAN 2.9 introduced the `email_is_unique` validator to prevent duplicates. But the current implementation only works when the id param contains the actual UUID not the name. * Update ckan (paster) commands for ckan 2.9.x * Update ckan (paster) commands for ckan 2.9.x * [I18N] [FIX #5586] Don't cache license translations across requests * Licenses are read and cached in the package model * Translate the license in the helper for each request. * Use CKANRequest object implicitly in templates * Test to ensure that we are using CKANRequest in templates * fix test * fix pep8 test... * [#5998] db init error in alembic * #6086 fix sqlalchemy configuration for datastore * render activity timestamps with title= attribute * Fixture for plugin DB migrations * Remove unnecessary imports * Add pending-migrations * Drop extra tables after tests * update argument * Fix py3 security alerts * Remove blogspam link from the documentation footer * [#6162] fix pagination links for custom org types * [#6179] Fix exception when using solr_user and solr_password on Py3 Fixes #6179 Use the base64 module to encode the Solr Basic Auth header to avoid bytes/str exception on Python 3 * [#6179] Encoding definition * [#6181] Fix page render errors when search facets are not defined * fix guard clause on has_more_facets, #6190 * restore Page import so that other modules can refer to it via 'h.Page', #6190 * [#6207] Fix for g.__timer * Remove not accessed user object * Restore user object to _get_action * Remove not accessed variables * [#2317] fix default ordering consuming resource content from datastore * [#2317] added changelog fragement * [#2317] made default sort by _id less aggressive * [#2317] restrict default order to non distinct case * [2317] accepted proposed change in changelog Co-authored-by: Ian Ward * [#6159] Add and Update Docstring for existing functions * Add doctring to `chained_action` function * Update `chained_auth` docstring * update `chained_helper` docstring * solve conflict * fix pep8 error * update `chained_helper` and `chain_action` doctsting * Fix documentation typo * [#6270] Typo in default_package_sort config example * DataPusher and XLoader documented in Source docs * Update install-from-source.rst * fixes HTTP basic auth cred handling * [#6319] Fix datetime formatting when listing user tokens on py2. * Fix typo * coerce query string keys/values before passing to quote() * ensure fallback behaviour matches default * remove unused import * reversed function used * failing test case for validation error list position * Revert "[#4801] Simplify even more the erros handling in navl" This reverts commit 7b6702b6c17efbe0b2b7eb46ab46da86e387c55c. * Revert "[#4801] Refactor processing of errors in NAVL" This reverts commit a63207806c9474ed736c1a4fc774155042a45a51. * Revert "[#4801] Refactor processing of errors in NAVL" This reverts commit a63207806c9474ed736c1a4fc774155042a45a51. * Remove valid lists from error output, add tests * [#6340] Handle Traceback Exception for HTTP and HTTP status Code in logging The traceback for HTTP Exception will be added only when debug is true * [#6340] Add the changelog * [#6340] Coding Standard * [#6340] Change the error level to debug/info * fix for render_datetime * [#6051] Allow UTF-8 in JS translations See issue #6051 * Fix runaway preview height * Fix unpriviledged users being able to access bulk process Any user was able to access and view the bulk process page for organization management. This fix checks access and returns unauthorized exception if theuser shouldn't be there. * Move auth check to _prepare method Previously implementation only worked for GET requests, now works with GET and POST requests * Use bulk_update_public to check access Was using group_update. Also removed duplicate check from POST request * Update tests * fixing access atom feed for a deleted organization * fixing access atom feed for a deleted group * Call to defaul action to allow links to be opened in new tab * Switch to JQuery recommended method * [#6051] Py2/py3 compatible version of open * Remove leftover paste import * Coding standards * Rebuild requirements.txt to sync it with requirements.in * Fix io.open call in lib/i18n.py * Pin watchdog on py3 so it installs a compatible version * Use codecs instead of io * Fix bad merge of #6149 * Rename lib/io.py module which was giving problems * Rename __init__.py file in extension * Show job title on job start/finish log messages To make it easier to debug background job calls. Before: ``` INFO [ckan.lib.jobs] Worker rq:worker:f0792c8bd67344f288b5704d39c43124 starts job 2baa42e5-4582-4103-92e5-b4a384d0b1da from queue "default" ``` After: ``` INFO [ckan.lib.jobs] Worker rq:worker:f0792c8bd67344f288b5704d39c43124 starts job 2baa42e5-4582-4103-92e5-b4a384d0b1da (Process data fields) from queue "default" ``` * Add missing __init__.py file * String literals * snippet names rendered in non-debug mode * Update changelog for 2.9.4 * Build frontend * [i18n] Pull po files from Transifex * [i18n] Compile mo files * Upgrade version for 2.9.4 * Update version for 2.9.5b * Consistent cli behavior * pep8 * Py2 compatible fix for #6135 * [#6390] fix user create/edit email validators * Allow strict types for user/group uploads CKAN 2.9 specific changes when cherry-picking: * Replace f-strings with .format() * Don't use faker / Pillow for tests, as there is no faker fixture in the Python 2 version * Add changelog entry for group image types * Move type verification into upload method * Fix APIToken CLI test * Update docs * Link to config options from changelog * Allow children for select2 * Fix children type * [#6531] Py2/py3 compatible version of open * Add select2 features * Undo change * Replace f-string * Fix standards * [#6530] Add Solr 8 support * Set logging level to error in error mail handler * Add RootPathMiddleware to flask stack to support non-root installs running on python 3 * Add previously removed RootPathMiddleware back to common middleware as it is still needed * Added utility functions for common CKAN admin commands. * Use correct auth function when editing organizations * [#5820] fix invite user with existing email error * Fix regression when validating resource subfields (by @TomeCirun) * [#6408] Add timeout param to request get calls (by @EricSoroos) * [#6408] Document new options * Accept empty string in one of validator * Negate empty string check * Fix pep8 * [i18n] Pull translation from Transifex * [i18n] Compile mo files * Compile frontend * Small fix adding virtual env path to ckan command. * Update changelog before 2.9.5 * Include the Solr 8 schema file in the 2.9 branch * Update version for 2.9.5 * Updates to ckan_utils.sh. * move spatial harvester into ckanext-cioos_harvest extension and allow POST requests to the spatial search api endpoint in the spatial api * document spatil harvester config * update submodules * create dev branch in submodules and update * add compile css command * upgrade solr to 8.11.1 * update * update all submodules to latest dev version * update submodules again * update schema * Updated submodule contrib/docker/src/ckanext-cioos_theme * Updated submodule contrib/docker/src/ckanext-spatial * fix a few integration bugs * update * Updated submodule contrib/docker/src/ckanext-cioos_theme * update translations * fix bugs, update logos * Updated submodule contrib/docker/src/ckanext-scheming * add atlantic eov icons * Updated submodule contrib/docker/src/ckanext-cioos_theme * add collapsed option to indicate how truncated fields initially load * add wasRevisionOf to schema.org profile output * release all submodules - merge dev into main * remove geoview pip file from dockerfile Co-authored-by: amercader Co-authored-by: Chris Wood Co-authored-by: Ken Tsang Co-authored-by: Jari Voutilainen Co-authored-by: Guillermo Ferrer Bosque <22233599+guibos@users.noreply.github.com> Co-authored-by: Carlo Cancellieri Co-authored-by: Eric Soroos Co-authored-by: Alexandr Cherniavskyi Co-authored-by: etj Co-authored-by: chris48s Co-authored-by: Sergey Motornyuk Co-authored-by: robbi5 Co-authored-by: ThrawnCA Co-authored-by: pdelboca Co-authored-by: Christian Buck Co-authored-by: wrinklenose <67383107+wrinklenose@users.noreply.github.com> Co-authored-by: Ian Ward Co-authored-by: steveoni Co-authored-by: Andres Vazquez Co-authored-by: Gauravp-NEC <66116382+Gauravp-NEC@users.noreply.github.com> Co-authored-by: Erin Doherty Co-authored-by: Niall McAndrew Co-authored-by: Sunny-NEC Co-authored-by: Shubham Mahajan Co-authored-by: Tome Cirun Co-authored-by: jescgom Co-authored-by: franz osorio Co-authored-by: Dan Mihaila Co-authored-by: Francesco Frassinelli Co-authored-by: Teemu Erkkola Co-authored-by: Jeff Cullis --- .gitignore | 4 + CHANGELOG.rst | 76 + Dockerfile | 3 - FEATURES.md | 68 +- INSTALL_CIOOS_CKAN.md | 23 +- changes/6120.bugfix | 1 + changes/6477.bugfix | 3 + changes/6546.bugfix | 1 + ckan/__init__.py | 2 +- ckan/cli/asset.py | 3 +- ckan/cli/cli.py | 192 +- ckan/cli/dataset.py | 7 +- ckan/cli/db.py | 97 +- ckan/cli/generate.py | 2 +- ckan/cli/user.py | 19 +- ckan/cli/views.py | 2 +- ckan/config/deployment.ini_tmpl | 6 + ckan/config/middleware/common_middleware.py | 18 + ckan/config/middleware/flask_app.py | 24 +- ckan/config/solr/schema.solr6.xml | 238 + ckan/config/solr/schema.solr8.xml | 240 + ckan/config/solr/schema.xml | 69 +- ckan/i18n/am/LC_MESSAGES/ckan.po | 5111 ++++++++++++++++ ckan/i18n/ar/LC_MESSAGES/ckan.po | 5269 ++++++++++++++++ ckan/i18n/bg/LC_MESSAGES/ckan.mo | Bin 0 -> 80241 bytes ckan/i18n/bg/LC_MESSAGES/ckan.po | 5133 ++++++++++++++++ ckan/i18n/ca/LC_MESSAGES/ckan.po | 5216 ++++++++++++++++ ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo | Bin 0 -> 92824 bytes ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po | 5256 ++++++++++++++++ ckan/i18n/da_DK/LC_MESSAGES/ckan.po | 5098 ++++++++++++++++ ckan/i18n/de/LC_MESSAGES/ckan.mo | Bin 0 -> 93218 bytes ckan/i18n/de/LC_MESSAGES/ckan.po | 5302 +++++++++++++++++ ckan/i18n/el/LC_MESSAGES/ckan.po | 5243 ++++++++++++++++ ckan/i18n/en_AU/LC_MESSAGES/ckan.po | 5126 ++++++++++++++++ ckan/i18n/en_GB/LC_MESSAGES/ckan.po | 5130 ++++++++++++++++ ckan/i18n/es/LC_MESSAGES/ckan.po | 5295 ++++++++++++++++ ckan/i18n/es_AR/LC_MESSAGES/ckan.po | 5198 ++++++++++++++++ ckan/i18n/eu/LC_MESSAGES/ckan.po | 5143 ++++++++++++++++ ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo | Bin 0 -> 7403 bytes ckan/i18n/fa_IR/LC_MESSAGES/ckan.po | 5024 ++++++++++++++++ ckan/i18n/fi/LC_MESSAGES/ckan.mo | Bin 0 -> 80889 bytes ckan/i18n/fi/LC_MESSAGES/ckan.po | 5206 ++++++++++++++++ ckan/i18n/fr/LC_MESSAGES/ckan.po | 14 +- ckan/i18n/gl/LC_MESSAGES/ckan.po | 5040 ++++++++++++++++ ckan/i18n/he/LC_MESSAGES/ckan.po | 5198 ++++++++++++++++ ckan/i18n/hr/LC_MESSAGES/ckan.po | 5123 ++++++++++++++++ ckan/i18n/hu/LC_MESSAGES/ckan.po | 5024 ++++++++++++++++ ckan/i18n/id/LC_MESSAGES/ckan.mo | Bin 0 -> 21848 bytes ckan/i18n/id/LC_MESSAGES/ckan.po | 5021 ++++++++++++++++ ckan/i18n/is/LC_MESSAGES/ckan.po | 5133 ++++++++++++++++ ckan/i18n/it/LC_MESSAGES/ckan.po | 5156 ++++++++++++++++ ckan/i18n/ja/LC_MESSAGES/ckan.po | 5070 ++++++++++++++++ ckan/i18n/km/LC_MESSAGES/ckan.po | 5017 ++++++++++++++++ ckan/i18n/ko_KR/LC_MESSAGES/ckan.po | 5082 ++++++++++++++++ ckan/i18n/lt/LC_MESSAGES/ckan.po | 5095 ++++++++++++++++ ckan/i18n/lv/LC_MESSAGES/ckan.po | 5147 ++++++++++++++++ ckan/i18n/mk/LC_MESSAGES/ckan.po | 5201 ++++++++++++++++ ckan/i18n/mn_MN/LC_MESSAGES/ckan.po | 5151 ++++++++++++++++ ckan/i18n/my_MM/LC_MESSAGES/ckan.mo | Bin 0 -> 144196 bytes ckan/i18n/my_MM/LC_MESSAGES/ckan.po | 5296 ++++++++++++++++ ckan/i18n/nl/LC_MESSAGES/ckan.po | 5138 ++++++++++++++++ ckan/i18n/no/LC_MESSAGES/ckan.po | 5142 ++++++++++++++++ ckan/i18n/pl/LC_MESSAGES/ckan.po | 5057 ++++++++++++++++ ckan/i18n/pt_BR/LC_MESSAGES/ckan.po | 5186 ++++++++++++++++ ckan/i18n/pt_PT/LC_MESSAGES/ckan.po | 5169 ++++++++++++++++ ckan/i18n/ro/LC_MESSAGES/ckan.po | 5082 ++++++++++++++++ ckan/i18n/ru/LC_MESSAGES/ckan.po | 5134 ++++++++++++++++ ckan/i18n/sk/LC_MESSAGES/ckan.po | 5164 ++++++++++++++++ ckan/i18n/sl/LC_MESSAGES/ckan.po | 5163 ++++++++++++++++ ckan/i18n/sq/LC_MESSAGES/ckan.po | 5124 ++++++++++++++++ ckan/i18n/sr/LC_MESSAGES/ckan.mo | Bin 0 -> 85098 bytes ckan/i18n/sr/LC_MESSAGES/ckan.po | 5117 ++++++++++++++++ ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po | 5047 ++++++++++++++++ ckan/i18n/sv/LC_MESSAGES/ckan.po | 5225 ++++++++++++++++ ckan/i18n/th/LC_MESSAGES/ckan.po | 5074 ++++++++++++++++ ckan/i18n/tr/LC_MESSAGES/ckan.po | 5037 ++++++++++++++++ ckan/i18n/uk_UA/LC_MESSAGES/ckan.po | 5178 ++++++++++++++++ ckan/i18n/vi/LC_MESSAGES/ckan.po | 5088 ++++++++++++++++ ckan/i18n/zh_Hans_CN/LC_MESSAGES/ckan.po | 5061 ++++++++++++++++ ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.mo | Bin 0 -> 73983 bytes ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.po | 5063 ++++++++++++++++ ckan/lib/base.py | 2 +- ckan/lib/captcha.py | 6 +- ckan/lib/helpers.py | 37 +- ckan/lib/i18n.py | 5 +- ckan/lib/{io.py => io_.py} | 0 ckan/lib/jobs.py | 10 +- ckan/lib/munge.py | 2 +- ckan/lib/navl/dictization_functions.py | 29 +- ckan/lib/search/__init__.py | 29 +- ckan/lib/search/query.py | 3 + ckan/lib/uploader.py | 29 +- ckan/logic/__init__.py | 53 + ckan/logic/action/create.py | 8 +- ckan/logic/action/get.py | 2 +- ckan/logic/action/update.py | 9 +- ckan/logic/schema.py | 15 +- ckan/logic/validators.py | 11 +- ckan/model/__init__.py | 13 +- ckan/model/license.py | 7 +- ckan/public/base/javascript/client.js | 21 +- ckan/public/base/javascript/client.min.js | 14 + .../base/javascript/modules/autocomplete.js | 22 +- .../javascript/modules/autocomplete.min.js | 9 + .../base/javascript/modules/data-viewer.js | 2 +- .../javascript/modules/data-viewer.min.js | 1 + .../javascript/plugins/jquery.truncator.js | 16 +- ckan/public/base/javascript/tracking.js | 4 +- ckan/public/base/javascript/tracking.min.js | 1 + .../base/javascript/view-filters.min.js | 18 + .../snippets/activities/added_tag.html | 2 +- .../snippets/activities/changed_group.html | 2 +- .../activities/changed_organization.html | 2 +- .../snippets/activities/changed_package.html | 2 +- .../snippets/activities/changed_resource.html | 2 +- .../snippets/activities/changed_user.html | 2 +- .../snippets/activities/deleted_group.html | 2 +- .../activities/deleted_organization.html | 2 +- .../snippets/activities/deleted_package.html | 2 +- .../snippets/activities/deleted_resource.html | 2 +- .../snippets/activities/fallback.html | 2 +- .../snippets/activities/follow_dataset.html | 2 +- .../snippets/activities/follow_group.html | 2 +- .../snippets/activities/follow_user.html | 2 +- .../snippets/activities/new_group.html | 2 +- .../snippets/activities/new_organization.html | 2 +- .../snippets/activities/new_package.html | 2 +- .../snippets/activities/new_resource.html | 2 +- .../snippets/activities/new_user.html | 2 +- .../snippets/activities/removed_tag.html | 2 +- ckan/templates/snippets/search_form.html | 2 +- ckan/tests/cli/test_cli.py | 9 +- ckan/tests/cli/test_db.py | 97 + ckan/tests/cli/test_user.py | 10 +- ckan/tests/controllers/test_group.py | 6 +- ckan/tests/legacy/lib/test_navl.py | 40 +- ckan/tests/lib/search/test_common.py | 12 + ckan/tests/lib/test_helpers.py | 27 + ckan/tests/lib/test_io.py | 2 +- ckan/tests/logic/action/test_create.py | 75 +- ckan/tests/logic/action/test_get.py | 13 + ckan/tests/logic/test_validators.py | 22 +- ckan/tests/pytest_ckan/fixtures.py | 23 + ckan/tests/pytest_ckan/test_fixtures.py | 15 + ckan/views/api.py | 3 +- ckan/views/feed.py | 4 + ckan/views/group.py | 29 +- ckanext/datapusher/cli.py | 7 +- ckanext/datapusher/logic/action.py | 17 +- ckanext/datastore/backend/postgres.py | 5 +- ckanext/datastore/cli.py | 7 +- .../example_database_migrations/__init__.py | 0 .../example_database_migrations/README | 1 + .../example_database_migrations/alembic.ini | 74 + .../example_database_migrations/env.py | 81 + .../script.py.mako | 24 + .../versions/4f59069f433e_create_x_table.py | 29 + .../versions/728663ebe30e_create_y_table.py | 29 + ckanext/example_database_migrations/plugin.py | 7 + ckanext/example_flask_iblueprint/plugin.py | 16 + .../tests/test_routes.py | 8 + ckanext/resourceproxy/blueprint.py | 7 +- ckanext/resourceproxy/tests/test_proxy.py | 6 +- contrib/docker/ckan-entrypoint.sh | 3 +- contrib/docker/ckan_utils.sh | 136 + contrib/docker/production_non_root_url.ini | 2 +- contrib/docker/production_root_url.ini | 2 +- contrib/docker/solr/Dockerfile | 34 +- contrib/docker/src/cioos-siooc-schema | 2 +- contrib/docker/src/ckanext-cioos_harvest | 2 +- contrib/docker/src/ckanext-cioos_theme | 2 +- contrib/docker/src/ckanext-dcat | 2 +- contrib/docker/src/ckanext-fluent | 2 +- contrib/docker/src/ckanext-geoview | 2 +- contrib/docker/src/ckanext-harvest | 2 +- contrib/docker/src/ckanext-scheming | 2 +- contrib/docker/src/ckanext-spatial | 2 +- .../integration/modules/autocomplete.spec.js | 33 +- doc/_templates/footer.html | 2 - doc/api/index.rst | 4 +- doc/maintaining/cli.rst | 1 + doc/maintaining/configuration.rst | 85 +- .../install-from-docker-compose.rst | 4 +- .../installing/install-from-source.rst | 5 + requirements.in | 6 +- requirements.txt | 102 +- setup.py | 1 + 187 files changed, 254004 insertions(+), 424 deletions(-) create mode 100644 changes/6120.bugfix create mode 100644 changes/6477.bugfix create mode 100644 changes/6546.bugfix create mode 100644 ckan/config/solr/schema.solr6.xml create mode 100644 ckan/config/solr/schema.solr8.xml create mode 100644 ckan/i18n/am/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/ar/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/bg/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/bg/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/ca/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/da_DK/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/de/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/de/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/el/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/en_AU/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/en_GB/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/es/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/es_AR/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/eu/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/fa_IR/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/fi/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/fi/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/gl/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/he/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/hr/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/hu/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/id/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/id/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/is/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/it/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/ja/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/km/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/ko_KR/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/lt/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/lv/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/mk/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/mn_MN/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/my_MM/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/my_MM/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/nl/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/no/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/pl/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/pt_BR/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/pt_PT/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/ro/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/ru/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/sk/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/sl/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/sq/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/sr/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/sr/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/sv/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/th/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/tr/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/uk_UA/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/vi/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/zh_Hans_CN/LC_MESSAGES/ckan.po create mode 100644 ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.mo create mode 100644 ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.po rename ckan/lib/{io.py => io_.py} (100%) create mode 100644 ckan/public/base/javascript/client.min.js create mode 100644 ckan/public/base/javascript/modules/autocomplete.min.js create mode 100644 ckan/public/base/javascript/modules/data-viewer.min.js create mode 100644 ckan/public/base/javascript/tracking.min.js create mode 100644 ckan/public/base/javascript/view-filters.min.js create mode 100644 ckan/tests/cli/test_db.py create mode 100644 ckan/tests/lib/search/test_common.py create mode 100644 ckanext/example_database_migrations/__init__.py create mode 100644 ckanext/example_database_migrations/migration/example_database_migrations/README create mode 100644 ckanext/example_database_migrations/migration/example_database_migrations/alembic.ini create mode 100644 ckanext/example_database_migrations/migration/example_database_migrations/env.py create mode 100644 ckanext/example_database_migrations/migration/example_database_migrations/script.py.mako create mode 100644 ckanext/example_database_migrations/migration/example_database_migrations/versions/4f59069f433e_create_x_table.py create mode 100644 ckanext/example_database_migrations/migration/example_database_migrations/versions/728663ebe30e_create_y_table.py create mode 100644 ckanext/example_database_migrations/plugin.py create mode 100644 contrib/docker/ckan_utils.sh diff --git a/.gitignore b/.gitignore index f76c68bbf95..39736b1cd90 100644 --- a/.gitignore +++ b/.gitignore @@ -73,3 +73,7 @@ contrib/docker/src/OWSLib contrib/docker/src/ckanext-repeating contrib/docker/src/ckanext-composite + +ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.po + +ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.mo diff --git a/CHANGELOG.rst b/CHANGELOG.rst index bcd5b0443e4..6df58328612 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,6 +9,82 @@ Changelog .. towncrier release notes start +v.2.9.5 2022-01-19 +================== + + +Major features +-------------- + +- Solr 8 support. Starting from version 2.9.5, CKAN supports Solr versions 6 and 8. Support for Solr 6 will be dropped in the next + CKAN minor version (2.10). Note that if you want to use Solr 8 you need to use the ``ckan/config/solr/schema.solr8.xml`` file, or + alternatively you can use the ``ckan/ckan-solr:2.9-solr8`` Docker image which comes pre-configured. (`#6530 `_) + + +Bugfixes +-------- + +- Consistent CLI behavior when no command is provided and when using `--help` (`#6120 `_) +- Fix regression when validating resource subfields (`#6546 `_) +- Fix user create/edit email validators (`#6399 `_) +- Error opening JS translations on Python 2 (`#6531 `_) +- Set logging level to error in error mail handler (`#6577 `_) +- Add RootPathMiddleware to flask stack to support non-root installs running on python 3 (`#6556 `_) +- Use correct auth function when editing organizations (`#6622 `_) +- Fix invite user with existing email error (`#5880 `_) +- Accept empty string in one of validator (`#6612 `_) + + +Minor changes +------------- + +- Add timeouts to requests calls (see :ref:`ckan.requests.timeout`) (`#6408 `_) +- Types of file uploads for group and user imags can be restricted via the `ckan.upload.{object_type}.types` and `ckan.upload.{object_type}.mimetypes` config options (eg :ref:`ckan.upload.group.types`, :ref:`ckan.upload.user.mimetypes`) (`#6477 `_) +- Allow children elements on select2 lists (`#6503 `_) +- Enable ``minimumInputLength`` and fix loading message in select2 (`#6554 `_) + + + +v.2.9.4 2021-09-22 +================== + +Note: This release includes requirements upgrades to address security issues + + +Bugfixes +-------- + +- Don't show snippet names in non-debug mode (`#6406 `_) +- Show job title on job start/finish log messages (`#6387 `_) +- Fix unpriviledged users being able to access bulk process (`#6290 `_) +- Allow UTF-8 in JS translations (`#6051 `_) +- Handle Traceback Exception for HTTP and HTTP status Code in logging (`#6340 `_) +- Fix object list validation output (`#6149 `_) +- Coerce query string keys/values before passing to quote() (`#6099 `_) +- Fix datetime formatting when listing user tokens on py2. (`#6319 `_) +- Fix Solr HTTP basic auth cred handling (`#6286 `_) +- Remove not accessed user object in resource_update (`#6220 `_) +- Fix for g.__timer (`#6207 `_) +- Fix guard clause on has_more_facets, #6190 (`#6190 `_) +- Fix page render errors when search facets are not defined (`#6181 `_) +- Fix exception when using solr_user and solr_password on Py3 (`#6179 `_) +- Fix pagination links for custom org types (`#6162 `_) +- Fixture for plugin DB migrations (`#6139 `_) +- Render activity timestamps with title= attribute (`#6109 `_) +- Fix db init error in alembic (`#5998 `_) +- Fix user email validator when using name as id parameter (`#6113 `_) +- Fix DataPusher error during resource_update (`#5597 `_) +- render_datetime helper does not respect ckan.display_timezone configuration (`#6252 `_) +- Fix SQLAlchemy configuration for DataStore (`#6087 `_) +- Don't cache license translations across requests (`#5586 `_) +- Fix tracking.js module preventing links to be opened in new tabs (`#6386 `_) +- Fix deleted org/group feeds (`#6368 `_) +- Fix runaway preview height (`#6284 `_) +- Stable default ordering when consuming resource content from datastore + (`#2317 `_) +- Several documentation fixes and improvements + + v.2.9.3 2021-05-19 ================== diff --git a/Dockerfile b/Dockerfile index 794c4045d3b..338e2760584 100644 --- a/Dockerfile +++ b/Dockerfile @@ -116,9 +116,6 @@ chmod +x /wait-for-postgres.sh # Copy extensions into container and Install RUN chown -R ckan:ckan $CKAN_HOME $CKAN_VENV $CKAN_CONFIG $CKAN_STORAGE_PATH -COPY ./contrib/docker/src/ckanext-geoview/pip-requirements.txt $CKAN_VENV/src/ckanext-geoview/pip-requirements.txt -RUN /bin/bash -c "source $CKAN_VENV/bin/activate && cd $CKAN_VENV/src && ckan-pip install -r ckanext-geoview/pip-requirements.txt" - COPY ./contrib/docker/src/ckanext-dcat/requirements.txt $CKAN_VENV/src/ckanext-dcat/requirements.txt RUN /bin/bash -c "source $CKAN_VENV/bin/activate && cd $CKAN_VENV/src && ckan-pip install -r ckanext-dcat/requirements.txt" diff --git a/FEATURES.md b/FEATURES.md index 7835a2b1686..b1206188471 100644 --- a/FEATURES.md +++ b/FEATURES.md @@ -1,2 +1,68 @@ -- sitemap (/sitemap/sitemap.xml) and robots.txt +# Search Engines +- sitemap (/sitemap/sitemap.xml) +- robots.txt + +# Harvesting + +## CKAN Harvester Type + +config settings +- api_key: api token of a registered user on the ckan being harvested from. + allows harvesting private datasets +- organizations_filter_include: list (['strings']) - list organizations to include in the harvest +- organizations_filter_exclude: list (['strings']) - list organizations to exclude from the harvest +- groups_filter_include: list (['strings']) - list groups to include in the harvest +- groups_filter_exclude: list (['strings']) - list groups to exclude from the harvest +- field_filter_include: list ([{field:"", value:""}]) - list of fields and values to filter datasets by for including in harvest +- field_filter_exclude: list ([{field:"", value:""}]) - list of fields and values to filter datasets by for excluding from harvest + +- clean_tags: munge tags to remove special characters +- force_all: boolean (true|false) - force harvester to gather all datasets even if the dataset was not updated since the last time the harvester was run. only datasets whos content have changed will be updated. +force_package_type + +- default_tags: list - Set default tags if needed eg: ['waf', 'test'] +- remote_groups: string ('only_local'|'create') - populate group if exists, + create remote groups, or nothing +- remote_orgs: string ('only_local'|'create') - same as above but for + organizations. If organization can not be determined from dataset it falls + back to the organization that owns the harvester. +- default_groups: list +- default_extras: dictinary +- override_extras: (default: False) + +## CKAN Spatial Harvester Type +This is a custom harvester that allows harvesting datasets from a remote ckan +instance who's spatial geomitry intersects with a given polygon, multipolygon, +or bbox. + +when using ckan spatial harvester the following harvester config settings are available, these are in adition to the ckan harvester config settings: + +- spatial_filter_file: Path, relative to the src folder, to a file containing well known text formated polygons eg "./pacific_RA.wkt" +- spatial_filter: same as above but a literal text string in well know text format. +- spatial_crs: define the crs of the spatial coordinates (default: 4326) + +note that when using the ckan spatial harvester, the catalogue you are harvesting +from must have implomented our modified /api/2/search/dataset/geo endpoint to +allow searching by polygon. The default endpoint only allows searching using +bounding box. + +# Menu +it is now possible to sync the menu items from a compatible wordpress site, into ckan. The wordpress instance must imploment the following endpoints +``` +/wp-json/ra/menu/en +/wp-json/ra/menu/fr +``` + +To use, first set the 'Custome Header Filename' config option to the appropriate value, for example `/menu/pacific_menu_list.html`. If you are using an existing file then you could stop there. CKAN will pull the menu items from the appropriate template in the /menu/ folder. + +To sync menu items from a wordpress site we run the `menu create` CLI command. + +## CLI Command Usage +``` +ckan menu create --url [path to wordpress api endpoint] --output [output menu list file (default: /menu/menu_list.html)] +``` +## Example +``` +sudo docker exec -u root -it ckan ckan --config /etc/ckan/production.ini menu create --url https://cioospacific.ca/wp-json/ra/menu/ --output /menu/pacific_menu_list.html +``` diff --git a/INSTALL_CIOOS_CKAN.md b/INSTALL_CIOOS_CKAN.md index 66a8b4b68be..5b9581d224b 100644 --- a/INSTALL_CIOOS_CKAN.md +++ b/INSTALL_CIOOS_CKAN.md @@ -616,7 +616,7 @@ This method uses dockers copy command to copy the new schema file into a running ```bash cd ~/ckan -sudo docker cp ~/ckan/ckan/config/solr/schema.xml solr:/opt/solr/server/solr/ckan/conf +sudo docker cp ~/ckan/ckan/config/solr/schema.xml solr:/opt/solr/server/solr/configsets/ckan/conf/managed-schema ``` Restart solr container @@ -636,6 +636,17 @@ sudo docker exec -it ckan ckan --config=/etc/ckan/production.ini search-index re If you need to update CKAN to a new version you can either remove the docker_ckan_home volume or update the volume with the new ckan core files. After which you need to rebuild the CKAN image and any docker containers based on that image. If you are working with a live / production system the preferred method is to update the volume and rebuild which will result in the least amount of down time. +enable volume environment variables to make accessing the volumes easier + +```bash +export VOL_CKAN_HOME=`sudo docker volume inspect docker_ckan_home | jq -r -c '.[] | .Mountpoint'` +export VOL_CKAN_CONFIG=`sudo docker volume inspect docker_ckan_config | jq -r -c '.[] | .Mountpoint'` +export VOL_CKAN_STORAGE=`sudo docker volume inspect docker_ckan_storage | jq -r -c '.[] | .Mountpoint'` +echo $VOL_CKAN_HOME +echo $VOL_CKAN_CONFIG +echo $VOL_CKAN_STORAGE +``` + update local repo ```bash @@ -668,6 +679,12 @@ sudo chown 900:900 -R $VOL_CKAN_HOME/venv/src/ $VOL_CKAN_STORAGE or on windows run the command directly in the ckan container +restart the ckan container + +```bash +cd ~/ckan/contrib/docker +sudo docker-compose restart ckan +``` --- # Troubleshooting @@ -709,7 +726,6 @@ copy updated extension code to the volumes ```bash cd ~/ckan/contrib/docker sudo cp -r src/ckanext-cioos_theme/ $VOL_CKAN_HOME/venv/src/ -sudo cp -r src/ckanext-googleanalyticsbasic $VOL_CKAN_HOME/venv/src/ sudo cp -r src/ckanext-cioos_harvest/ $VOL_CKAN_HOME/venv/src/ sudo cp -r src/ckanext-harvest/ $VOL_CKAN_HOME/venv/src/ sudo cp -r src/ckanext-spatial/ $VOL_CKAN_HOME/venv/src/ @@ -719,6 +735,7 @@ sudo cp -r src/ckanext-dcat/ $VOL_CKAN_HOME/venv/src/ sudo cp src/cioos-siooc-schema/cioos-siooc_schema.json $VOL_CKAN_HOME/venv/src/ckanext-scheming/ckanext/scheming/cioos_siooc_schema.json sudo cp src/cioos-siooc-schema/organization.json $VOL_CKAN_HOME/venv/src/ckanext-scheming/ckanext/scheming/organization.json sudo cp src/cioos-siooc-schema/ckan_license.json $VOL_CKAN_HOME/venv/src/ckanext-scheming/ckanext/scheming/ckan_license.json +sudo cp src/cioos-siooc-schema/*.wkt $VOL_CKAN_HOME/venv/src ``` Exporting volumes on windows does not work so another option for copying files to the volumes is to use the `docker cp` command. You must know the path of the named volume in the container you are connecting to and the container must be running for this to work @@ -1089,7 +1106,7 @@ Delete and re clone the ckan repo. If you edit a harvester config and then reharvest the existing harvester will continue to use the in memory harvester config. To solve this you should reindex the harvesters and restart the harvester docker containers ```bash -sudo docker exec -it ckan ckan --config=/etc/ckan/production.ini harvester reindex +sudo docker exec -it ckan ckan --config=/etc/ckan/production.ini harvester reindex sudo docker-compose restart ckan_run_harvester ckan_fetch_harvester ckan_gather_harvester ``` diff --git a/changes/6120.bugfix b/changes/6120.bugfix new file mode 100644 index 00000000000..967ef0da43f --- /dev/null +++ b/changes/6120.bugfix @@ -0,0 +1 @@ +Consistent CLI behavior when when no command provided and when using `--help` options diff --git a/changes/6477.bugfix b/changes/6477.bugfix new file mode 100644 index 00000000000..a91e90f02b8 --- /dev/null +++ b/changes/6477.bugfix @@ -0,0 +1,3 @@ +Type of uploads for group and user image can be restricted via the +`ckan.upload.{object_type}.types` and `ckan.upload.{object_type}.mimetypes` +config options (eg :ref:`ckan.upload.group.types`, :ref:`ckan.upload.user.mimetypes`) diff --git a/changes/6546.bugfix b/changes/6546.bugfix new file mode 100644 index 00000000000..61773be13bd --- /dev/null +++ b/changes/6546.bugfix @@ -0,0 +1 @@ +Fix regression when validating resource subfields diff --git a/ckan/__init__.py b/ckan/__init__.py index 4116c93ff79..0d3b0631695 100644 --- a/ckan/__init__.py +++ b/ckan/__init__.py @@ -1,6 +1,6 @@ # encoding: utf-8 -__version__ = '2.9.3' +__version__ = '2.9.5' __description__ = 'CKAN Software' __long_description__ = \ diff --git a/ckan/cli/asset.py b/ckan/cli/asset.py index 449c349924e..0cc33e7e18d 100644 --- a/ckan/cli/asset.py +++ b/ckan/cli/asset.py @@ -12,10 +12,9 @@ log = logging.getLogger(__name__) -@click.group() +@click.group(short_help=u"WebAssets commands.") def asset(): """WebAssets commands. - """ pass diff --git a/ckan/cli/cli.py b/ckan/cli/cli.py index cc61b978341..8ec85adc100 100644 --- a/ckan/cli/cli.py +++ b/ckan/cli/cli.py @@ -34,6 +34,10 @@ from ckan.cli import seed +META_ATTR = u'_ckan_meta' +CMD_TYPE_PLUGIN = u'plugin' +CMD_TYPE_ENTRY = u'entry_point' + log = logging.getLogger(__name__) _no_config_commands = [ @@ -43,7 +47,7 @@ ] -class CkanCommand(object): +class CtxObject(object): def __init__(self, conf=None): # Don't import `load_config` by itself, rather call it using @@ -52,63 +56,93 @@ def __init__(self, conf=None): self.app = make_app(self.config) -def _get_commands_from_plugins(plugins): - for plugin in plugins: - for cmd in plugin.get_commands(): - cmd._ckan_meta = { - u'name': plugin.name, - u'type': u'plugin' - } - yield cmd +class ExtendableGroup(click.Group): + _section_titles = { + CMD_TYPE_PLUGIN: u'Plugins', + CMD_TYPE_ENTRY: u'Entry points', + } + def format_commands(self, ctx, formatter): + """Print help message. -def _get_commands_from_entry_point(entry_point=u'ckan.click_command'): - registered_entries = {} - for entry in iter_entry_points(entry_point): - if entry.name in registered_entries: - p.toolkit.error_shout(( - u'Attempt to override entry_point `{name}`.\n' - u'First encounter:\n\t{first!r}\n' - u'Second encounter:\n\t{second!r}\n' - u'Either uninstall one of mentioned extensions or update' - u' corresponding `setup.py` and re-install the extension.' - ).format( - name=entry.name, - first=registered_entries[entry.name].dist, - second=entry.dist)) - raise click.Abort() - registered_entries[entry.name] = entry + Includes information about commands that were registered by extensions. + """ + # click won't parse config file from envvar if no other options + # provided, except for `--help`. In this case it has to be done + # manually. + if not ctx.obj: + _add_ctx_object(ctx) + _add_external_commands(ctx) + + commands = [] + ext_commands = defaultdict(lambda: defaultdict(list)) + + for subcommand in self.list_commands(ctx): + cmd = self.get_command(ctx, subcommand) + if cmd is None: + continue + if cmd.hidden: + continue + help = cmd.short_help or u'' + + meta = getattr(cmd, META_ATTR, None) + if meta: + ext_commands[meta[u'type']][meta[u'name']].append( + (subcommand, help)) + else: + commands.append((subcommand, help)) + + if commands: + with formatter.section(u'Commands'): + formatter.write_dl(commands) + + for section, group in ext_commands.items(): + with formatter.section(self._section_titles.get(section, section)): + for rows in group.values(): + formatter.write_dl(rows) - cmd = entry.load() - cmd._ckan_meta = { - u'name': entry.name, - u'type': u'entry_point' - } - yield cmd + def parse_args(self, ctx, args): + """Preprocess options and arguments. + + As long as at least one option is provided, click won't fallback to + printing help message. That means that `ckan -c config.ini` will be + executed as command, instead of just printing help message(as `ckan -c + config.ini --help`). + In order to fix it, we have to check whether there is at least one + argument. If no, let's print help message manually + + """ + result = super(ExtendableGroup, self).parse_args(ctx, args) + if not ctx.protected_args and not ctx.args: + click.echo(ctx.get_help(), color=ctx.color) + ctx.exit() + return result def _init_ckan_config(ctx, param, value): - is_help = u'--help' in sys.argv - no_config = False - if len(sys.argv) > 1: - for cmd in _no_config_commands: - if sys.argv[1:len(cmd) + 1] == cmd: - no_config = True - break - if no_config or is_help: + if any(sys.argv[1:len(cmd) + 1] == cmd for cmd in _no_config_commands): return + _add_ctx_object(ctx, value) + _add_external_commands(ctx) + +def _add_ctx_object(ctx, path=None): + """Initialize CKAN App using config file available under provided path. + + """ try: - ctx.obj = CkanCommand(value) + ctx.obj = CtxObject(path) except CkanConfigurationException as e: p.toolkit.error_shout(e) - raise click.Abort() + ctx.abort() if six.PY2: ctx.meta["flask_app"] = ctx.obj.app.apps["flask_app"]._wsgi_app else: ctx.meta["flask_app"] = ctx.obj.app._wsgi_app + +def _add_external_commands(ctx): for cmd in _get_commands_from_entry_point(): ctx.command.add_command(cmd) @@ -117,57 +151,53 @@ def _init_ckan_config(ctx, param, value): ctx.command.add_command(cmd) -click_config_option = click.option( - u'-c', - u'--config', - default=None, - metavar=u'CONFIG', - help=u'Config file to use (default: development.ini)', - is_eager=True, - callback=_init_ckan_config -) +def _command_with_ckan_meta(cmd, name, type_): + """Mark command as one retrived from CKAN extension. + This information is used when CLI help text is generated. + """ + setattr(cmd, META_ATTR, {u'name': name, u'type': type_}) + return cmd -class CustomGroup(click.Group): - _section_titles = { - u'plugin': u'Plugins', - u'entry_point': u'Entry points', - } - def format_commands(self, ctx, formatter): - # Without any arguments click skips option callbacks. - self.parse_args(ctx, [u'help']) +def _get_commands_from_plugins(plugins): + """Register commands that are available when plugin enabled. - commands = [] - ext_commands = defaultdict(lambda: defaultdict(list)) + """ + for plugin in plugins: + for cmd in plugin.get_commands(): + yield _command_with_ckan_meta(cmd, plugin.name, CMD_TYPE_PLUGIN) - for subcommand in self.list_commands(ctx): - cmd = self.get_command(ctx, subcommand) - if cmd is None: - continue - help = cmd.short_help or u'' - meta = getattr(cmd, u'_ckan_meta', None) - if meta: - ext_commands[meta[u'type']][meta[u'name']].append( - (subcommand, help)) - else: - commands.append((subcommand, help)) +def _get_commands_from_entry_point(entry_point=u'ckan.click_command'): + """Register commands that are available even if plugin is not enabled. - if commands: - with formatter.section(u'Commands'): - formatter.write_dl(commands) + """ + registered_entries = {} + for entry in iter_entry_points(entry_point): + if entry.name in registered_entries: + p.toolkit.error_shout(( + u'Attempt to override entry_point `{name}`.\n' + u'First encounter:\n\t{first!r}\n' + u'Second encounter:\n\t{second!r}\n' + u'Either uninstall one of mentioned extensions or update' + u' corresponding `setup.py` and re-install the extension.' + ).format( + name=entry.name, + first=registered_entries[entry.name].dist, + second=entry.dist)) + raise click.Abort() + registered_entries[entry.name] = entry - for section, group in ext_commands.items(): - with formatter.section(self._section_titles.get(section, section)): - for _ext, rows in group.items(): - formatter.write_dl(rows) + yield _command_with_ckan_meta(entry.load(), entry.name, CMD_TYPE_ENTRY) -@click.group(cls=CustomGroup) +@click.group(cls=ExtendableGroup) +@click.option(u'-c', u'--config', metavar=u'CONFIG', + is_eager=True, callback=_init_ckan_config, expose_value=False, + help=u'Config file to use (default: ckan.ini)') @click.help_option(u'-h', u'--help') -@click_config_option -def ckan(config, *args, **kwargs): +def ckan(): pass diff --git a/ckan/cli/dataset.py b/ckan/cli/dataset.py index e22493cb0f9..2c87e687417 100644 --- a/ckan/cli/dataset.py +++ b/ckan/cli/dataset.py @@ -12,10 +12,11 @@ log = logging.getLogger(__name__) -@click.group() +@click.group(short_help=u"Manage datasets") def dataset(): - u'''Manage datasets - ''' + """Manage datasets. + """ + pass @dataset.command() diff --git a/ckan/cli/db.py b/ckan/cli/db.py index 98a54a06dae..711a1a7134b 100644 --- a/ckan/cli/db.py +++ b/ckan/cli/db.py @@ -3,6 +3,7 @@ import inspect import logging import os +import contextlib import click from itertools import groupby @@ -11,13 +12,14 @@ import ckan.plugins as p import ckan.plugins.toolkit as tk import ckan.model as model +from ckan.common import config log = logging.getLogger(__name__) applies_to_plugin = click.option(u"-p", u"--plugin", help=u"Affected plugin.") -@click.group() +@click.group(short_help=u"Database management commands.") def db(): """Database management commands. """ @@ -30,7 +32,6 @@ def init(): """ log.info(u"Initialize the Database") try: - import ckan.model as model model.repo.init_db() except Exception as e: tk.error_shout(e) @@ -47,7 +48,6 @@ def clean(): """Clean the database. """ try: - import ckan.model as model model.repo.clean_db() except Exception as e: tk.error_shout(e) @@ -61,14 +61,8 @@ def clean(): def upgrade(version, plugin): """Upgrade the database. """ - try: - import ckan.model as model - model.repo._alembic_ini = _resolve_alembic_config(plugin) - model.repo.upgrade_db(version) - except Exception as e: - tk.error_shout(e) - else: - click.secho(u'Upgrading DB: SUCCESS', fg=u'green', bold=True) + _run_migrations(plugin, version) + click.secho(u'Upgrading DB: SUCCESS', fg=u'green', bold=True) @db.command() @@ -77,14 +71,57 @@ def upgrade(version, plugin): def downgrade(version, plugin): """Downgrade the database. """ - try: - import ckan.model as model - model.repo._alembic_ini = _resolve_alembic_config(plugin) - model.repo.downgrade_db(version) - except Exception as e: - tk.error_shout(e) - else: - click.secho(u'Downgrading DB: SUCCESS', fg=u'green', bold=True) + _run_migrations(plugin, version, False) + click.secho(u'Downgrading DB: SUCCESS', fg=u'green', bold=True) + + +@db.command() +@click.option(u"--apply", is_flag=True, help=u"Apply all pending migrations") +def pending_migrations(apply): + """List all sources with unapplied migrations. + """ + pending = _get_pending_plugins() + if not pending: + click.secho(u"All plugins are up-to-date", fg=u"green") + for plugin, n in sorted(pending.items()): + click.secho(u"{n} unapplied migrations for {p}".format( + p=click.style(plugin, bold=True), + n=click.style(str(n), bold=True))) + if apply: + _run_migrations(plugin) + + +def _get_pending_plugins(): + from alembic.command import history + plugins = [(plugin, state) + for plugin, state + in ((plugin, current_revision(plugin)) + for plugin in config['ckan.plugins'].split()) + if state and not state.endswith(u'(head)')] + pending = {} + for plugin, current in plugins: + with _repo_for_plugin(plugin) as repo: + repo.setup_migration_version_control() + history(repo.alembic_config) + ahead = repo.take_alembic_output() + if current != u'base': + # The last revision in history describes step from void to the + # first revision. If we not on the `base`, we've already run + # this migration + ahead = ahead[:-1] + if ahead: + pending[plugin] = len(ahead) + return pending + + +def _run_migrations(plugin, version=u"head", forward=True): + if not version: + version = u"head" if forward else u"base" + with _repo_for_plugin(plugin) as repo: + if forward: + repo.upgrade_db(version) + else: + repo.downgrade_db(version) @db.command() @@ -92,11 +129,7 @@ def downgrade(version, plugin): def version(plugin): """Returns current version of data schema. """ - import ckan.model as model - model.repo._alembic_ini = _resolve_alembic_config(plugin) - log.info(u"Returning current DB version") - model.repo.setup_migration_version_control() - current = model.repo.current_version() + current = current_revision(plugin) try: current = _version_hash_to_ordinal(current) except ValueError: @@ -106,6 +139,12 @@ def version(plugin): bold=True) +def current_revision(plugin): + with _repo_for_plugin(plugin) as repo: + repo.setup_migration_version_control() + return repo.current_version() + + @db.command(u"duplicate_emails", short_help=u"Check users email for duplicate") def duplicate_emails(): u'''Check users email for duplicate''' @@ -167,3 +206,13 @@ def _resolve_alembic_config(plugin): import ckan.migration as _cm migration_dir = os.path.dirname(_cm.__file__) return os.path.join(migration_dir, u"alembic.ini") + + +@contextlib.contextmanager +def _repo_for_plugin(plugin): + original = model.repo._alembic_ini + model.repo._alembic_ini = _resolve_alembic_config(plugin) + try: + yield model.repo + finally: + model.repo._alembic_ini = original diff --git a/ckan/cli/generate.py b/ckan/cli/generate.py index dd30c4dca6a..2d7af39113e 100644 --- a/ckan/cli/generate.py +++ b/ckan/cli/generate.py @@ -23,7 +23,7 @@ def get_template_directory(self): u"../contrib/alembic") -@click.group() +@click.group(short_help=u"Scaffolding for regular development tasks.") def generate(): """Scaffolding for regular development tasks. """ diff --git a/ckan/cli/user.py b/ckan/cli/user.py index 51bde818a33..0c056652779 100644 --- a/ckan/cli/user.py +++ b/ckan/cli/user.py @@ -4,6 +4,7 @@ import six import click from six import text_type +from datetime import datetime import ckan.logic as logic import ckan.plugins as plugin @@ -228,9 +229,21 @@ def list_tokens(username): for token in tokens: last_access = token[u"last_access"] if last_access: - accessed = plugin.toolkit.h.date_str_to_datetime( - last_access - ).isoformat(u" ", u"seconds") + accessed = plugin.toolkit.h.date_str_to_datetime(last_access) + if six.PY2: + """ + Strip out microseconds to force formatting as isoformat doesnt + have a timespec param on Python 2. + """ + accessed = datetime( + accessed.year, + accessed.month, + accessed.day, + accessed.hour, + accessed.minute, + accessed.second).isoformat(u" ") + else: + accessed = accessed.isoformat(u" ", u"seconds") else: accessed = u"Never" diff --git a/ckan/cli/views.py b/ckan/cli/views.py index cf65047efe3..51d9235fba2 100644 --- a/ckan/cli/views.py +++ b/ckan/cli/views.py @@ -19,7 +19,7 @@ _page_size = 100 -@click.group() +@click.group(short_help=u"Manage resource views.") def views(): """Manage resource views. """ diff --git a/ckan/config/deployment.ini_tmpl b/ckan/config/deployment.ini_tmpl index 6a0ec6f6a52..e30d8479851 100644 --- a/ckan/config/deployment.ini_tmpl +++ b/ckan/config/deployment.ini_tmpl @@ -62,6 +62,10 @@ ckan.datastore.default_fts_index_method = gist ckan.site_url = #ckan.use_pylons_response_cleanup_middleware = true +# Default timeout for Requests +#ckan.requests.timeout = 10 + + ## Authorization Settings ckan.auth.anon_create_dataset = false @@ -186,6 +190,8 @@ ckan.feeds.author_link = #ckan.resource_proxy.max_file_size = 1048576 # Size of chunks to read/write. #ckan.resource_proxy.chunk_size = 4096 +# Default timeout for fetching proxied items +#ckan.resource_proxy.timeout = 10 ## Activity Streams Settings diff --git a/ckan/config/middleware/common_middleware.py b/ckan/config/middleware/common_middleware.py index bdb410dfa82..150648b636a 100644 --- a/ckan/config/middleware/common_middleware.py +++ b/ckan/config/middleware/common_middleware.py @@ -59,6 +59,24 @@ def __call__(self, environ, start_response): return self.app(environ, start_response) +class RootPathMiddleware(object): + ''' + Prevents the SCRIPT_NAME server variable conflicting with the ckan.root_url + config. The routes package uses the SCRIPT_NAME variable and appends to the + path and ckan addes the root url causing a duplication of the root path. + This is a middleware to ensure that even redirects use this logic. + ''' + def __init__(self, app, config): + self.app = app + + def __call__(self, environ, start_response): + # Prevents the variable interfering with the root_path logic + if 'SCRIPT_NAME' in environ: + environ['SCRIPT_NAME'] = '' + + return self.app(environ, start_response) + + class TrackingMiddleware(object): def __init__(self, app, config): diff --git a/ckan/config/middleware/flask_app.py b/ckan/config/middleware/flask_app.py index 6ab4cfa1129..a4bcc8cc7af 100644 --- a/ckan/config/middleware/flask_app.py +++ b/ckan/config/middleware/flask_app.py @@ -33,7 +33,8 @@ from ckan.lib import i18n from ckan.common import config, g, request, ungettext from ckan.config.middleware.common_middleware import (TrackingMiddleware, - HostHeaderMiddleware) + HostHeaderMiddleware, + RootPathMiddleware) import ckan.lib.app_globals as app_globals import ckan.lib.plugins as lib_plugins import ckan.plugins.toolkit as toolkit @@ -183,6 +184,7 @@ def save_session(self, app, session, response): session_opts['session.data_dir'] = '{data_dir}/sessions'.format( data_dir=cache_dir) + app.wsgi_app = RootPathMiddleware(app.wsgi_app, session_opts) app.wsgi_app = SessionMiddleware(app.wsgi_app, session_opts) app.session_interface = BeakerSessionInterface() @@ -197,6 +199,7 @@ def save_session(self, app, session, response): # Template context processors app.context_processor(helper_functions) app.context_processor(c_object) + app.context_processor(request_object) @app.context_processor def ungettext_alias(): @@ -213,7 +216,7 @@ def ungettext_alias(): (_ckan_i18n_dir, u'ckan') ] + [ (p.i18n_directory(), p.i18n_domain()) - for p in PluginImplementations(ITranslation) + for p in reversed(list(PluginImplementations(ITranslation))) ] i18n_dirs, i18n_domains = zip(*pairs) @@ -221,6 +224,7 @@ def ungettext_alias(): app.config[u'BABEL_TRANSLATION_DIRECTORIES'] = ';'.join(i18n_dirs) app.config[u'BABEL_DOMAIN'] = 'ckan' app.config[u'BABEL_MULTIPLE_DOMAINS'] = ';'.join(i18n_domains) + app.config[u'BABEL_DEFAULT_TIMEZONE'] = str(helpers.get_display_timezone()) babel = CKANBabel(app) @@ -362,6 +366,8 @@ def ckan_before_request(): ''' response = None + g.__timer = time.time() + # Update app_globals app_globals.app_globals._check_uptodate() @@ -374,7 +380,6 @@ def ckan_before_request(): set_controller_and_action() set_ckan_current_url(request.environ) - g.__timer = time.time() return response @@ -402,8 +407,9 @@ def ckan_after_request(response): r_time = time.time() - g.__timer url = request.environ['PATH_INFO'] + status_code = response.status_code - log.debug(' %s render time %.3f seconds' % (url, r_time)) + log.info(' %s %s render time %.3f seconds' % (status_code, url, r_time)) return response @@ -422,6 +428,11 @@ def c_object(): return dict(c=g) +def request_object(): + u"""Use CKANRequest object implicitly in templates""" + return dict(request=request) + + class CKAN_Rule(Rule): u'''Custom Flask url_rule_class. @@ -527,8 +538,9 @@ def _register_error_handler(app): u'''Register error handler''' def error_handler(e): - log.error(e, exc_info=sys.exc_info) + debug = asbool(config.get('debug', config.get('DEBUG', False))) if isinstance(e, HTTPException): + log.debug(e, exc_info=sys.exc_info) if debug else log.info(e) extra_vars = { u'code': e.code, u'content': e.description, @@ -537,6 +549,7 @@ def error_handler(e): return base.render( u'error_document_template.html', extra_vars), e.code + log.error(e, exc_info=sys.exc_info) extra_vars = {u'code': [500], u'content': u'Internal server error'} return base.render(u'error_document_template.html', extra_vars), 500 @@ -574,6 +587,7 @@ def filter(self, log_record): secure=secure ) + mail_handler.setLevel(logging.ERROR) mail_handler.setFormatter(logging.Formatter(''' Time: %(asctime)s URL: %(url)s diff --git a/ckan/config/solr/schema.solr6.xml b/ckan/config/solr/schema.solr6.xml new file mode 100644 index 00000000000..1948db5fc73 --- /dev/null +++ b/ckan/config/solr/schema.solr6.xml @@ -0,0 +1,238 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + index_id + text + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ckan/config/solr/schema.solr8.xml b/ckan/config/solr/schema.solr8.xml new file mode 100644 index 00000000000..cdd9a6afe63 --- /dev/null +++ b/ckan/config/solr/schema.solr8.xml @@ -0,0 +1,240 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + index_id + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ckan/config/solr/schema.xml b/ckan/config/solr/schema.xml index 1948db5fc73..9fb65ffeae0 100644 --- a/ckan/config/solr/schema.xml +++ b/ckan/config/solr/schema.xml @@ -6,43 +6,46 @@ License. --> - + - - - - - - - - - - - - + + + + + + + + + + + + - - - - + + + + - + + + - - + + @@ -50,16 +53,18 @@ License. --> - + - + + + - - + + @@ -137,14 +142,12 @@ License. --> - - - - + + + + - - @@ -158,8 +161,8 @@ License. --> - - + + @@ -208,8 +211,6 @@ License. --> index_id - text - diff --git a/ckan/i18n/am/LC_MESSAGES/ckan.po b/ckan/i18n/am/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..d4dff1dc86c --- /dev/null +++ b/ckan/i18n/am/LC_MESSAGES/ckan.po @@ -0,0 +1,5111 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Amharic (https://www.transifex.com/okfn/teams/11162/am/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: am\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "መረጃው አልተገኘም" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "ይሀን ገጽ ለማየት ፍቃድ የሎትም!" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "ተጠናቋል" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "በመጠባበቅ ላይ" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "ማስገባት" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "ስህተት" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "ገና አልተጫነም" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "መረጃ ማከማቻው ውስጥ ጫን" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "የመጫን ላይ የተፈጠረ ስህተት:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "ስህተት:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "የስህተቱ ምንጭ:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "ወቅታዊ ሁኔታ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "የተሻሻለበት የመጨረሻ ጊዜ" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "በጭራሽ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "የተሻሻለበት ዝርዝር ማስታወሻ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "ዝርዝሮች" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "የማስታወሻ መጨረሻ" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "የመረጃ ማከማቻ" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "የመረጃ ማከማቻው አልተገኘም" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"ይህ ዳታ መዝገበ-ቃላት ተቀምጠዋል፤ማንኛውም አይነት መሻሪያዎች ወይም ማሻሻያዎች የሚተገበሩበት በቀጣዩ የመረጃ ማከማቻ " +"ውስጥ በሚደረግ የመረጃ ምዝገባ ጊዜ ነው።" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "የመረጃ ምንጭ \"{0}\" አልተገኘም።" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "ተጠቃሚ {0} ይሀንን የመረጃ ምንጭ ለማሻሻል ፍቃድ የለውም።" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "የ CKAN የመረጃ ኤፒአይ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "ጠንካራ የጠያቂ ድጋፍ ባለው የድር ኤፒአይ በመጠቀም መረጃ ያግኙ።" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" ለበለጠ መረጃ የ CKAN የመረጃ ኤፒአይ እና የመረጃ ማከማቻ መግለጫ ሰነድ.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "ማገባደጃ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "የመረጃው ኤፒአይ በሚከተሉት የ CKAN ኤፒአይ ድርጊት ሂደቶች ማግኝት ይችላሉ።" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "ፍጠር" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "አሻሽል / አስገባ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "መጠይቅ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "መጠይቅ (በ SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "በመጠይቅ ላይ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "የመጠይቅ ምሳሌ (የመጀመሪያ 5 ውጤቶች)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "የመጠይቅ ምሳሌ ('ጆንስ'ን የያዙ ውጤቶች)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "የመጠይቅ ምሳሌ (በ SQL አረፍተ ነገር በኩል)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "ምሳሌ: ጃቫስክሪፕት" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQuery በመጠቀም ወደ መረጃ ኤፒአይ ቀላል የአጃክስ (JSONP) ጥያቄ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "ምሳሌ: ፓይቶን" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "አስቀምጥ" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "መስክ {num}" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "የእሴት አይነት መሻር" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "መግለጫ" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "የመረጃ መዝገበ-ቃላት" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "አምድ" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "አይነት" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "በመጫን ላይ" + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "የመረጃ ኤፒአይ" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "ሰንጠረዥ" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "ተግባቢ እይታ" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "አምዶችን አሳይ" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "የመዋቅር ፍተሻ" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "የራስ የተበጀ የመዘርዘሪያ ገለጻ ከላይ ወደታች ደርድር" + +#: ckan/templates/group/read.html:17 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 "ታዋቂ" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "ይህ ያልተተረጎመ ቃል/ሃረግ/አረፍተነገር ነው።" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "ይህ ቡድን መግለጫ የለውም።" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} የመረጃ ስብስብ" +msgstr[1] "{num} የመረጃ ስብስቦች" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 የመረጃ ስብስቦች" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "የ CKAN ምረጃ ቅድመ-እይታ መሣሪያ ብዙ ጠንካራ ገፅታዎች አሉት።" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "ተከታዮች" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "የመረጃ ምንጭ" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "ምስል" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "የምስል ዩአርኤል(URL)" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "eg. http://example.com/image.jpg (ባዶ ጥቅል ዩአርኤልን ከተጠቀመ)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "የመረጃ አስሽ" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "ግራፍ" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "ካርታ" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "እይታን በመጫን ላይ የተፈጠረ ስህተት" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "እይታን መጫን አልቻለም" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "የመረጃ ማከማቻው(DataStore) ስህተት መልሷል" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "የመረጃ ተኪው(DataProxy) ስህተት መልሷል" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "ፍርግርግ" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "ምሳሌ፡ 0" + +#: 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 "ምሳሌ፡ 100" + +#: 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 "ቡድን (ዘንግ 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "ተከታታይ (ዘንግ 2)" + +#: 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 "የላቲቱድ(Latitude) መስክ" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "የሎንግቱድ(Longitude) መስክ" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "የ GeoJSON መስክ" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "ከፍተኛ ደረጃ የተሰጣቸው የመረጃ ስብስቦች" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "አማካኝ ደረጃ" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "የደረጃ ሰጪዎች ብዛት" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "የተሰጡ ደረጃዎች የሉም" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "ትላልቅ ቡድኖች" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "ቡድን" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "የመረጃ ስብስቦች ብዛት" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "ምንም ቡድኖች የሉም" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "ከፍተኛ መለያዎች" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "የመለያ ስም" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "የመረጃ ስብስቦች ብዛት" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "ብዙ የመረጃ ስብስቦችን የፈጠሩ ተጠቃሚዎች" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "ተጠቃሚ" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "የስታቲሥቲክስ ማውጫ" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "በብዛት የታደሱ የመረጃ ስብስቦች" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "ጽሁፍ" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "ድረ-ጣብያ" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "ድረ-ገጽ ዩአርኤል(URL)" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "eg. http://example.com (ባዶ ጥቅል ዩአርኤልን ከተጠቀመ)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "የእርሶ አሳሽ(browser) 'iframes'ን አይጠቀምም/አይደግፍም።" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "የፈቀዳ(Authorization) ተግባር አልተገኘም፡ %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "አስተዳዳሪ" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "አርታዒ" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "አባል" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "ለማስተዳደር የስርዐቱ አስተዳዳሪ(system administrator) መሆን አለቦት" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "የጣብያው ስም" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "አቀራረብ" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "የጣብያው መለያ መስመር" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "የጣብያው መለያ አርማ" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "ምንነት" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "ስለ ገጽ ጽሁፉ" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "መግቢያ ጽሁፍ" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "መነሻ ገጽ ላይ ያለው ጽሁፍ" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "የራስ CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "በራስ መሻሻል የሚችህል CSS በገጹ አናት ላይ ገብቷል" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "መነሻ ገጽ" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr " ተዛማጅ ከለሳው %s ያልጠፉ ጥቅሎችን(ፓኬጆችን) %s ስለሚያካትት ጥቅል(ፓኬጅ) %s'ን ማጽዳት አይቻልም።" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "ክለሳ %s 'ን የማጽዳት ችግር: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "ጽዳቱ ሙሉ በሙሉ ተጠናቋል" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "ድርጊቱ/እርምጃው አልተተገበረም" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "እንዳይገቡ ተከልክሏል" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "አልተገኘም" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "አግባብ የሌለው ጥያቄ" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "የድርጊቱ/እርምጃው ስም አይታወክም፡ %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON ስህተት: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "አግባብ የሌለው የመረጃ ጥያቄ: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "ቡድኑ አልተገኘም" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "ድርጅቱ አልተገኘም" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "የተሳሳተ የቡድን አይነት" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "ድርጅቶች" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "ቡድኖች" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "መለዮዎች" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "ቅርጸቶች" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "ፈቃዶች" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "ተጠቃሚ %r ይህን %s ለማደስ ፍቃድ የለውም" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "ሰፊ ማሻሻያ ለማድረግ ፍቃድ የሎትም" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "ቡድን ለመፍጠር ፈካድ የሎትም" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "የአደረጃጀት ስህተት" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "ተጠቃሚ %r ይህን %s ፈቃዶችን ለማደስ ፍቃድ የለውም" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "%s ቡድን ለመሰረዝ ፍቃድ የለውም" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "ድርጅቱ ተሰርዟል።" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "ቡድኑ ተሰርዟል።" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ተሰርዟል።" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "ተጠቃሚ %r የ %s አባላትን ለማደስ ፍቃድ የለውም" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "የ %s ቡድን ውስጥ አባላትን ለመፍጠር ፍቃድ የለውም" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "የ %s ቡድን ውስጥ አባላትን ለመጨመር ፍቃድ የለውም" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "የ %s ቡድን ውስጥ አባላትን ለማጥፋት ፍቃድ የለውም" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "የቡድን አባል ተሰርዟል።" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "ንጽጽሩን ከማድረግዎ በፊት ሁለት ለውጦችን(ክለሳዎችን) ይምረጡ።" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "የ CKAN ቡድን ክለሳ ታሪክ" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "በ CKAN ቡድን ላይ የቅርብ ጊዜ ለውጦች: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "የምዝገባ(ማስታወሻ) መልእክት" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "አሁን {0} ን እየተከተልክ ነው" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "{0} ን ከአሁን በኋላ አይከተሉትም" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "ተከታዮችን %s ለማየት ፍቃድ የለዎትም" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "ይህ ጣቢያ በአሁኑ ሰዓት ከመስመር ውጭ ነው፤ ዳታቤዙ አልተነሳም።" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "እባክዎን ፕሮፋሎዎን ያሻሽሉ እና የኢሜይል አድራሻዎን ያክሉ።" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "የይለፍ ቃልዎን ዳግም ማጽደቅ ከፈለጉ %s የኢሜይል አድራሻዎን ይጠቀማል።" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "ልክ ያልኾነ የፍለጋ መጠይቅ: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "ፓራሜትር \"{parameter_name}\" ኢንቲጀር አይደለም" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "የመረጃ ስብስቡ አልተገኘም" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "ልክ ያልሆነ የክለሳ ቅርጸት: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "ይህን \"{package_type}\" አይነት የመረጃ ስብስብን መመልከት አይደገፍም ({file_!r})።" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "ጥቅል %s ለማንበብ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "የ CKAN የመረጃ ስብስብ ክለሳ ታሪክ" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "በ CKAN የመረጃ ስብስብ ላይ የቅርብ ጊዜ ለውጦች: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "ጥቅል ለመፍጠር ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "ይህን የመረጃ ምንጭ ለማደስ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "የመረጃ ስብስብ ለማሻሻል ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "የመለያ ቁጥር(ID) {id} ያለው የመረጃ ስብስብ ሊገኝ አልቻለም።" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "ቢያንስ አንድ የመረጃ ምንጭ መጨመር አለብዎት" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "የመረጃ ምንጭ ለመፍጠር ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "ለዚህ ጥቅል የመረጃ ምንጭ ለመፍጠር ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "ለፍለጋ ኢንዴክስ ጥቅል ማከል አልተቻለም።" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "የፍለጋ ኢንዴክስ ማሻሻል አልቻለም።" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "የመረጃ ስብስብ ተሰርዟል።" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "ይህን %s ጥቅል ለመሰረዝ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "የመረጃ ምንጭ ተሰርዟል።" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "ይህን %s የመረጃ ምንጭ ለመሰረዝ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "የመረጃ ምንጩ እይታ አልተገኘም" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "የመረጃ ምንጩ መረጃ አልተገኘም" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "ምንም የሚወርድ ነገር የለም" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "ይህን %s የመረጃ ስብስብ ለማንበብ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "ይህን %s የመረጃ ምንጭ ለማንበብ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "የመረጃ ምንጭ ለማደስ ፍቃድ የለዎትም" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "እይታ አልተገኘም" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "የእይታ አይነት አልተገኘም" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "መጥፎ የመረጃ እይታ" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "የመረጃ እይታ አልቀረበም" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "ምንም ቅድመ-እይታ አልተገለጸም።" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "ተጠቃሚ አልተገኘም" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "እንደ ተተቃሚ ለመመዝገብ ፍቃድ የለዎትም።" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "ተጠቃሚ ለመፍጠር ፍቃድ የለዎትም" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "የመለያ ቁጥር(ID) \"{user_id}\" ያለውን ተጠቃሚ ለመሰረዝ ፍቃድ የለዎትም" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "ምንም ተጠቃሚ አልተጠቀሰም" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "ተጠቃሚ %s ን ለማደስ ፍቃድ የለዎትም" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "ፕሮፋይል ተሻሽⶀል" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "ተጠቃሚ %s ለመፍጠር ፍቃድ የለዎትም" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "መጥፎ Captcha፤ እባክዎ እንደገና ይሞክሩ።" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "ተጠቃሚ \"%s\" አሁን ተመዝግቧል፤ ነገር ግን እርስዎ እንደ \"%s\" በመጠቀም ላይ ነዎት።" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "ተጠቃሚን ለማደስ ፍቃድ የለዎትም።" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "ያስገቡት የይለፍ ቃል የተሳሳተ ነው" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "የድሮ የይለፍ ቃል" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "የተሳሳተ የይለፍ ቃል" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "ለመግባት ያደረጉት ሙከራ የተሳሳተ ልዩ ስም ወይም ይለፍ ቃል በማስገባትዎ አልተሳካም።" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "የይለፍ ቃል ዳግም የማጽደቅ ጥያቄ ለማቅረብ ፍቃድ የለውም" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "የይለፍ ቃል ዳግም ለማጽደቅ ፍቃድ የለውም።" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "ያስገቡት ልክ ያልሆነ ዳግም ማስጀመሪያ ቁልፍ ነው፤ እባክዎ እንደገና ይሞክሩ።" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "የይለፍ ቃልዎ ዳግም ተዘጋጅቷል።" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "የይለፍ ቃልዎ 4 ትዕምርት(character) ወይም ከዚያ በላይ መሆን አለበት።" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "ያስገባኸው የይለፍ ቃል ከበፊቱ ጋር አይመሳሰልም።" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "የይለፍ ቃል መስጠት(ማቅረብ) አለብዎት" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "የሚከተሉት ንጥል አልተገኘም" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} አልተገኘም" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "ሁሉም ነገር" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "እይታ" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} አዲስ እንቅስቃሴ ከ {site_title}" +msgstr[1] "{n} አዲስ እንቅስቃሴዎች ከ {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "አሁን" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "ያልታወቀ" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "ያልተሰየመ የመረጃ ምንጭ" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "አዲስ የመረጃ ስብስብ ተፈጠⶂል።" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "የተለወጡ የመረጃ ምንጮች" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "የታደሱ ውቅሮች" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} እይታ" +msgstr[1] "{number} እይታዎች" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} የቅርብ ጊዜ እይታ" +msgstr[1] "{number} የቅርብ ጊዜ እይታዎች" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "ምንም የተቀባይ የኢሜይል አድራሻ የለም!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "ድርጅት" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "ቡድን" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "የጠፋ(የተረሳ) ዋጋ" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "የግብዓት መስኩ %(name)s አልተጠበቀም።" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "እባክዎ ኢንቲጀር እሴትን ያስገቡ" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "የዩኒኮድ ሕብረቁምፊ(string) እሴት መሆን አለበት" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "ጥቅል መርጃ (ዎች) አያገለግሉም" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "ተጨማሪ(ትርፍ) ነገሮች" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "የመለዮ ዝርዝር \"%s\" የለም" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "የመረጃ ስብስብ" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "ድርጅት መሰጠት አለበት" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "ድርጅት የለም" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "ወደዚህ ድርጅት የመረጃ ስብስብ መጨመር አይችሉም" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "ልክ ያልሆነ ኢንቲጀር" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "ተፈጥሯዊ ቁጥር መሆን አለበት" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "አዎንታዊ ኢንቲጀር መሆን አለበት" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "የቀን ቅርጸት ትክክል አይደለም" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "በ log_message ውስጥ ምንም አገናኞች(links) አይፈቀዱም" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "የመረጃ ስብስቡ መለያ ቁጥር አስቀድሞም ይገኛል" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "የመረጃ ምንጭ" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "ያ የቡድን ስም ወይም መለያ ቁጥር የለም።" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "የእንቅስቃሴ አይነት" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "ስሞች ሕብረቁምፊዎች መሆን አለባቸው" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "ቢያንስ %s ቁምፊዎች(characters) መሆን አለበት" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "ስም ቢበዛ % i ቁምፊዎች መሆን አለበት" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"የእንግሊዘኛ አነስተኛ ፊደል ና ቁጥር ቁምፊዎች(ascii characters) እና እነዚህን ምልክቶች '-_'መሆን አለበት።" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "ያ ዩአርኤል አስቀድሞ ጥቅም ላይ ውሏል።" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "ስም \"%s\" ርዝመት ከአነስተኛው ገደብ %s በታች ነው" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "ስም \"%s\" ርዝመት ከከፍተኛው ገደብ %s በታች ነው" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "ስሪት ቢበዛ % i ቁምፊዎች መሆን አለበት" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "የተደገመ ቁልፍ \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "የቡድን ስም የመረጃ-ጎታ(database) ውስጥ ይገኛል" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "መለዮ \"%s\" ርዝመት ከአነስተኛው ገደብ %s በታች ነው" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "መለዮ \"%s\" ርዝመት ከከፍተኛው ገደብ %i በታች ነው" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"መለዮ \"%s\" ነጠላ የአነስተኛ ፊደል (ascii) እና ቁጥር ቁምፊዎች(characters) እና እነዚህን ምልክቶች " +"'-_'መሆን አለበት።" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "መለዮ \"%s\" የእንግሊዘኛ አቢይ ሆሄ(uppercase) መሆን የለበትም" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "ልዩ-ስሞች ሕብረቁምፊዎች መሆን አለባቸው" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "ያ የመለያ ስም አልተገኘም።" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "ያ የመለያ ስም መለወጥ አይቻልም።" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "እባክዎ ሁለቱንም የይለፍ ቃላት ያስገቡ" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "የይለፍ-ቃላት ህብረቁምፊዎች መሆን አለባቸው" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "የይለፍ ቃልዎ 8 ቁምፊዎች ወይም ከዚያ በላይ መሆን አለበት" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "ያስገባሃቸው የይለፍ ቃሎች አይዛመዱም" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"አይፈለጌ መልዕክት ይመስላል ስለሚመስሉ አርትኦት(እደሳ) አይፈቀድም። እባክዎ በእርስዎ ዝርዝር ውስጥ ያሉ አገናኞችን " +"ያስወግዱ!" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "ስም ቢያንስ %s ቁምፊዎች መሆን አለበት" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "ያን የቃላት-ዝርዝር ስም አስቀድሞም ጥቅም ላይ ውሏል። " + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "የቁልፍ እሴት ከ %s ወደ %s መለወጥ አይቻልም። ይህ ቁልፍ ተነባቢ ብቻ ነው!" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "የመለያ ዝርዝር አልተገኘም። " + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "መለያ %s የዝርዝር %s አይደለም" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "ምንም የመለያ ስም የለም" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "መለያ %s ቀድሞውኑ የዝርዝር %s ነው" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "እባክህ ልክ የሆነ ዩአርኤል ያቅርቡ" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "ሚናው የለም።" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "ምንም ድርጅት የሌላቸው የመረጃ ስብስቦች የግል ሊሆኑ አይችሉም።" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "ዝርዝር አይደለም" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "ሕብረቁምፊ(string) አይደለም" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "ይህ ወላጅ በሥነ-ተዋረድ ውስጥ ሁረት ይፈጥራል" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" እና \"filter_values\" ተመሳሳይ ርዝመት ሊኖራቸው ይገባል" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_values\" ሲሞላ \"filter_fields\" ያስፈልጋል" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_fields\" ሲሞላ \"filter_values\" ያስፈልጋል" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "ተመሳሳይ ስም ያለው የመርጃ መስክ አለ" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "ኢሜል {email} ትክክለኛ ቅርጸት የለውም" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "የጠፋ(የተረሳ) ዋጋ" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "አንድ ድርጅት እንደ ቡድን የመፍጠር ሙከራ" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "የጥቅል መለያ ቁጥር ወይም ስም (parameter \"package\") ማቅረብ አለብዎት።" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "ደረጃ አሰጣጥ (parameter \"package\") ማቅረብ አለብዎት።" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "ደረጃ የቁጥር እሴት መሆን አለበት።" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "ደረጃ በ %i እና በ %i መካከል መሆን አለበት።" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "የግብዣ ኢሜይል መላክ ላይ ስህተት አጋጥሟል ፤ ተጠቃሚ {0} አልተፈጠረም" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "ተጠቃሚዎችን ለመከታተል መግባት አለቦት" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "እራስዎን መከተል አይችሉም" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "{0}ን አስቀድመው እየተከታተሉ ነው" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "የመረጃ-ስብስብን ለመከተል መግባት አለብዎት" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "ተጠቃሚ {username} የለም።" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "ቡድንን ለመከተል መግባት አለብዎት።" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "ድርጅት የመረጃ-ስብስቦች እስካሉት ድረስ ሊጠፋ አይችልም" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "መረጃው ውስጥ መለያ ቁጥር የለም" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "የቃላት ዝርዝር \"%s\" ሊገኝ አልተቻለም" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "የቃላት ዝርዝር መለዮ \"%s\" ሊገኝ አልተቻለም" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "አንድ ነገርን ላለመከተል መግባት አለብዎት" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "እርስዎ {0}ን እየተከተሉ አይደለም።" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "የመረጃ-ምንጩ አልተገኘም።" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "የ \"query\" ፓራሜትር በመጠቀም ላይ ከሆንክ መጠቀስ የለብህም" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr ": ጥንድ (ዎች) መሆን አለበት" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "መስክ \"{field}\" በምንጭ ጥናት(resource_search) ውስጥ አልተጠቀሰም።" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "ጥቅሉ አልተገኘም።" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "የስራ ወቅታዊ አቋም አልተገኘም።" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "ድርጅት አልተገኘም።" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "ተጠቃሚ %s ጥቅሎችን ለመፍጠር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "ተጠቃሚ %s እነዚህን ቡድኖች ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "ተጠቃሚ %s ለዚህ ድርጅት የመረጃ-ስብስብ ለመጨመር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "ምንም የመረጃ-ስብስቡ መለያ ቁጥር አልተሰጠም ፤ ፈቃድዎን ማረጋገጥ አልተቻለም።" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "ለእዚህ የመረጃ-ምንጭ ምንም ጥቅል(ፓኬጅ) አልተገኘም ፤ ፈቃድዎን ማረጋገጥ አልተቻለም።" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "ተጠቃሚ %s በመረጃ-ስብስብ %s ላይ መረጃዎችን ለመፍጠር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "ተጠቃሚ %s እነዚህን ጥቅሎች ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "ተጠቃሚ %s ቡድኖች ለመፍጠር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "ተጠቃሚ %s ድርጅቶች ለመፍጠር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "ተጠቃሚ {user} ተጠቃሚዎች በኤፒአይ በኩል ለመፍጠር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ተጠቃሚዎች በኤፒአይ በኩል ለመፍጠር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "ቡድኑ አልተገኘም።" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "ተጠቃሚ %s አባላት ለመጨመር ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "ተጠቃሚ %s ቡድን %sን ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "ተጠቃሚ %s የመረጃ-ምንጭ %sን ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "የመረጃ እይታው አልተገኘም ፤ ፈቃድዎን ማረጋገጥ አልተቻለም።" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "ተጠቃሚ %s ግንኙነት %sን ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "ተጠቃሚ %s ቡድኖች ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "ተጠቃሚ %s ቡድን %sን ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "ተጠቃሚ %s ድርጅቶች ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "ተጠቃሚ %s ድርጅት %sን ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "ተጠቃሚ %s የሥራ ሁኔታን ለማጥፋት ፈቃድ የለውም" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "ፈቃድ የለዎትም" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "ተጠቃሚ %s እነዚህን ጥቅሎች(ፓኬጆች) ለማንበብ ፈቃድ የለውም" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "ተጠቃሚ %s ጥቅል(ፓኬጅ) %sን ለማንበብ ፈቃድ የለውም" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "ተጠቃሚ %s የመረጃ-ምንጭ %sን ለማንበብ ፈቃድ የለውም" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "ተጠቃሚ %s ቡድን %sን ለማንበብ ፈቃድ የለውም" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "ዳሽቦርድዎን ለማግኘት መግባት አለብዎት" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "ተጠቃሚ %s ጥቅል(ፓኬጅ) %sን ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "ተጠቃሚ %s የመረጃ-ምንጭ %sን ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "ተጠቃሚ %s የጥቅል(ፓኬጅ) %sን ሁኔታ(አቇም) ለመለወጥ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "ተጠቃሚ %s ድርጅት %sን ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "ተጠቃሚ %s የቡድን %sን ሁኔታ(አቇም) ለመለወጥ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "ተጠቃሚ %s የቡድን %sን ፈቃድ ለመለወጥ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "ተጠቃሚን ለማደስ መግባት አለብህ" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "ተጠቃሚ %s ተጠቃሚ %sን ለማደስ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "ተጠቃሚ {0} ተጠቃሚ {1}ን ለማሻሻል ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "ተጠቃሚ %s የክለሳውን ሁኔታ(አቇም) ለመለወጥ ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "ተጠቃሚ %s የሥራ ሁኔታ ሰንጠረዥን ለማሻሻል ፈቃድ የለውም" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "ተጠቃሚ %s የቃል ትርጉም ሰንጠረዥን ለማሻሻል ፈቃድ የለውም" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "ፈቃድ አልተጠቀሰም" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "ክፍት የመረጃ የጋራ ባለቤትነት ፈቃድ" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "የጋራ የፈጠራ ሲሲዜሮ(CCZero)" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "የጋራ የፈጠራ ባለቤትነት" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "የጋራ ፈጠራ ባለቤትነት ተመሳሳይ-አጋሪ" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU ነጻ ሰነድ ፈቃድ" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "ለላ(ክፍት)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "ሌላ (የህዝብ ጎራ/Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "ሌላ (እውቅና)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "ንግድ ያልሆነ የጋራ ፈጠራ (ማንኛውም)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "ሌላ (ንግድ ያልሆነ)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "ሌላ (ይፋ ያልሆነ)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "በ %s ላይ ጥገኛ ነው" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "የ %s ጥገኝነት ነው" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "የሚወጣው ከ %s ነው" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "አወጣጥ %s አለው" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "ከ %s ጋር ያገናኛል" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "ከ %s የተገናኘ ነው" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "የ %s ልጅ ነው" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "የ %s ወላጅ ነው" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "%s የሚባል አቻ አለው" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "ለዚህ የመረጃ-ምንጭ ምንም የሚጫን የኤፒአይ መረጃ የለም" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "የኤፒአይ መረጃ መጫን አልተሳካም" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "መተየብ(መጻፍ) ይጀምሩ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "ምንም ተዛማጆች አልተገኙም" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "ግብዓቱ በጣም አጭር ነው ፤ ቢያንስ አንድ ቁምፊ(ትዕምርት) መሆን አለበት" +msgstr[1] "ግብዓቱ በጣም አጭር ነው ፤ ቢያንስ %(num)d ቁምፊዎች(ትዕምርቶች) መሆን አለበት" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "በዚህ ቅጽ ላይ ያልተቀመጡ(ያልተያዙ) ለውጦች አሉ" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "እባክዎን እርምጃውን(ድርጊቱን) ያረጋግጡ" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr " ይህንን እርምጃ ማከናወን መፈለግዎን እርግጠኛ ነዎት?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "አረጋግጥ" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "ሰርዝ" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "አትከተል" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "ተከተል" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "አገናኝ(ሊንክ)" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "በኢንተርኔት ላይ ወደ ዩአርኤል አገናኝ (ወደ ኤ.ፒ.አይ መገናኘት ይችላሉ)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "አስቀምጥ" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "አስወግድ" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "በኮምፒዩተርዎ ውስጥ ያለ ፋይል ያስቀምጡ" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "ዩአርኤል" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "ፋይል" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "ቅደም-ተከተሉን አስቀምጥ" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "እያስቀመጠ..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "ፋይል አስቀምጥ" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "ስህተት ተፈጥሯል" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "ፋይል ማስቀመጥ አልተቻለም" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "ማስቀመጡን ማረጋገጥ አልተቻለም" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "የመረጃ ምንጩ ተቀምⶆል" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "ለተቀመጠው ፋይል መረጃ ለማግኘት አልተቻለም" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "ማጣሪያ ጨምር" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "መስክ ምረጥ" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "አድስ" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "ተጨማሪ አሳይ" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "ደብቅ" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "ስህተት %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "ስለ {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "የ CKAN ኤፒአይ(API)" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "የ CKAN ማህበር" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"አምራች CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "የዋና አስተዳደሩ ውቅሮች" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "መገለጫ(ፕሮፋይል) ይመልከቱ" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "ዳሽቦርድ (%(num)d አዲስ እቃ)" +msgstr[1] "ዳሽቦርድ (%(num)d አዲስ እቃዎች)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "ዳሽቦርድ" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "ውጣ" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "ይግቡ" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "ይመዝገቡ" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "የመረጃ ስብስቦች" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "የመረጃ ስብስቦች ፈልግ" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "ፈልግ" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "የመረጃ ስብስብ ፈልግ" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "ወደ ይዘት ዝለል" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "መጣያ" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "የጣቢያ አርማ" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "ውቅሩን ዳግም ማጽደቅ እንደሚፈልጉ እርግጠኛ ነዎት?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "ዳግም አጽድቅ" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "ውቅሩን አሻሽል" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "የ CKAN የውቅር አማራጮች" + +#: ckan/templates/admin/config.html:52 +#, 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 አብነት መጠሪያ ነው። በ CKAN ውስጥ በተለያዩ " +"ቦታዎች ይታያል።

አቀማመጥ: የተለያዩ ቀለል በጣም ፈጣን የሆኑ የቀለም ገጽትዎች " +"ይምረጡ።

የጣቢያ አርማ አርማ: ይህ በሁሉንም የ CKAN አብነቶች ራስጌ ላይ " +"ይገኛል።

ምንነት: ይህ ጽሑፍ በዚህ የ CKAN አብነት ስለ ገጽ ላይ ይታያል።

መግቢያ " +"ጽሑፍ: ይህ ጽሑፍ በዚህ የ CKAN አብነት የመነሻ ገጽ " +"ላይ ለጎብኚዎች እንደ አቀባበል ይታያል።

ብጁ CSS: ይህ በእያንዳንዱ ገፅ " +"<ራስ> ያለ የራስ ማሳመሪያ ነው። አብነቶቹን ይበልጥ በራስ ሙሉ በሙሉ ለማሳመር ከፈለጉ" +" የ CKAN ሰነድን እንዲያነቡ እንመክራለን። " +"

መነሻ ገጽ: ይሄ በመነሻ ገጽዎ ላይ ለሚታዩ ሞደሎች ቀድሞ የተበጀውን አቀማመጥ " +"ለመምረጥ ነው።

" + +#: 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ን አስተዳድር" + +#: 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 አብነት ላይ ሙሉ ቁጥጥር አለዎት። በጥንቃቄ ይቀጥሉ!

" +"

የዋና አስተዳዳሪ ስራዎችን ለማወቅ እና የአጠቃቀም መመሪያን ለማግኘት የ CKAN ዋና አስተዳዳሪ መመሪያን ይመልከቱ።

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "ማጥፋትን አረጋግጥ" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "ለተጨማሪ መረጃ እዚህ ጠቅ ያድርጉ።" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "ስለ %(type)s የመረጃ አይነት ምንም ተቆጣጣሪ አልተገለጸም።" + +#: 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 "ጭማሪ Input" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "የራስ መስክ (ባዶ)" + +#: ckan/templates/development/snippets/form.html:19 +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "ቡድን ጨምር" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "የቡድን ቅፅ" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr " ቡድን {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 "አባል {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "አባል ጨምር" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "ነባር ተጠቃሚ" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "ነባር ተጠቃሚን መጨመር ካሰቡ ከታች ልዩ ስማቸውን ይፈልጉ።" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ወይም" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "አዲስ ተጠቃሚ" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "አዲስ ተጠቃሚ ለመጋበዝ ከፈለጉ የኢሜል አድራሻቸውን ያስገቡ።" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "ሚና" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "ይህን አባል ማጥፋት ይፈልጋሉ እርግጠኛ ነዎት?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "አጥፋ" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "ሚናዎች ምንድን ናቸው?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "የመረጃ ስብስቦችን ፈልግ..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "በቡድን {group} ውስጥ ያሉ የመረጃ ስብስቦች" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "ስም" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "ቡድኔ" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "ስለ ቡድኔ ትንሽ መረጃ..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "ይህን ቡድን ለማጥፋት እንደሚፈልጉ እርግጠኛ ነዎት?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "ቡድን አስቀምጥ" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "{name} አሳይ" + +#: 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 ቡድኖችን መጠቀም ይችላሉ። ለምሳሌ" +" ያህል የመረጃ ስብስቦችን ለአንድ ፕሮጀክት ፣ ቡድን ወይም በሆነ በተለየ ጭብጥ ለማንሸራሸር ፤ ሰዎች የራስዎን የታተሙ " +"የመረጃ ስብስቦች በቀላል መንገድ እንዲፈልጉ እና እንዲያገኙ ያስችላል።" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "ተፍⶆል" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 በዓለም ቀዳሚ አዕምሯዊ ነጻ የግልጽ መረጃ ማስቀመጫ እና መለዋወጫ መድረክ ነው።

CKAN መረጃን " +"ሙሉ ለሙሉ ማተም ፣ ማጋራት ፣ በቀላሉ ማግኘት እና መጠቀም (የመረጃ ማከማቸት እና ጠንካራ መረጃ ኤፒአይዎች አቅርቦትን " +"ያካትታል) የሚያስችሉ መሳሪያዎችህን የያዘ የተⶁላ ሶፍትዌር ነው።

CKAN መረጃዎቻቸውን ለህብረተሰቡ ክፍት እና " +"ተደራሽ ለማድረግ የሚፈልጉ ታላላቅ አታሚዎች (ብሄራዊ እና ክልላዊ መንግሥታት, ኩባንያዎች እና ድርጅቶች) የታለመ ነው። " +"CKAN በዓለም ዙሪያ ያሉ መንግስታዊ እና የተጠቃሚ ቡድኖች ጥቅም ላይ ይውላል ፤ የተለያዩ አከባቢያዊ ፣ ሃገራዊ እና " +"አለም አቀፋዊ የመንግስትና የማህበረሰብ የመረጃ መድረኮችንም ይሸፍናል። ለምሳሌ፣ እንደ ዩናይትድ ኪንግደም data.gov.uk ፣ የአውሮፓ ህብረት publicdata.eu ፣ ብራዚላውያን dados.gov.br ፣ የደች እና የኔዘርላንድ መንግስት ፖርቶች" +" እንዲሁም በአሜሪካ ፣ በእንግሊዝ ፣ በአርጀንቲና በፊንላንድ እና በሌሎች ቦታዎች የከተማ እና ማዘጋጃ ጣቢያዎች " +"ይጠቀማሉ።

CKAN: http://ckan.org/
የ CKAN ጉብኝት: " +"http://ckan.org/tour/
የባህሪያት አጠቃላይ እይታ " +"href=\"http://ckan.org/features/\"> http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "ወደ 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 "" +"ይህ ስለ CKAN ወይም በአጠቃላይ ስለ ጣቢያው ጥሩ የምዕራፍ አንቀፅ ነው። እዚህ ለመሄድ ምንም ግልባጭ የለንም ነገር " +"ግን በቅርብ ጊዜ እንሰራለን። " + +#: 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 "{0} ስታቲስቲክስ" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "የመረጃ ስብስብ" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "የመረጃ ስብስቦች" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "ድርጅቶች" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "ቡድኖች" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "ይሄን ቦታ መሞላት ያስፈልጋል" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"እዚህጋ ምልክታዊ ቅርጸት/አቀማመጥ (Markdown formatting) መጠቀም ይችላሉ " + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "ዋጋ" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "የራስ ምርጫ" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "ቅጹ ልክ ያልኾኑ ግቤቶች(entries) አሉት " + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "መሞላት ያለበት" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "የምስል URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "የተከማቸውን አጽዳ" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "ለ \"{query}\" የተገኘ" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "እናዝናለን ለ \"{query}\" ምንም የመረጃ ስብስቦች አልተገኙም" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "ይፋ አድርገው" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "የግል አድርግ" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "ረቂቅ" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "የግል" + +#: ckan/templates/organization/bulk_process.html:98 +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 "{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 "ድርጅትን አድስ" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ልዩ ስም" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "የኢሜይል አድራሻ" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "አባል አሻሽል" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "በድርጅት ውስጥ ያሉ የመረጃ ስብስቦች : {group}" + +#: 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 ድርጅቶች የተለያዩ የመረጃ ስብስቦችን ለመፍጠር ፣ ለማስተዳደር እና ለማተም ያገለግላሉ። ተጠቃሚዎች " +"በድርጅታቸው ውስጥ ለመፍጠር ፣ ለማደስ እና ለማተም በፍቃድ ደረጃቸው የሚወሰን የተለያዩ ሚናዎች ሊኖራቸው ይችላል።" + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +" ይህን ድርጅት ለማጥፋት መፈለግዎን እርግጠኛ ነዎት? ማስታወሻ * በዚህ ድርጅት ውስጥ ንብረት የሆኑ የህዝብ ወይም የግል" +" የመረጃ ስብስቦች እስካሉ ድረስ ማጥፋት አይችሉም።" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "ድርጅቱን አስቀምጥ" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "{organization_name} አሳይ" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 የመረጃ-ስብስብ ቋሚ ዩአርኤል ያላቸው የመረጃ ምንጮችን(ለምሳሌ፡ ፋይሎች) እስከ መግለጫቸውና ሌሎች መረጃዎች " +"የያዘ ስብስብ ነው። የመረጃ ስብስቦች ተጠቃሚዎች መረጃ ሲፈልጉ የሚመለከⶆቸው ናቸው።" + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "ለውጦች" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "የመረጃ ስብስብ {name}ን ማጥፋት መፈለግዎን እርግጠኛ ነዎት?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "የመረጃ ምንጭ {name}ን ማጥፋት መፈለግዎን እርግጠኛ ነዎት?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "የመረጃ ስብስብ አሳይ" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "የመረጃ ስብስብ አድስ" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "ቅድመ-እይታ" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "ጨምር" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "የመረጃ ምንጭ አድስ" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "እይታዎች" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "የኤፒአይ መጨረሻ" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "ወደ መረጃ ምንጭ ሂድ" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "አውርድ" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "ዩአርኤል:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "ምንጭ: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "ለዚህ የመረጃ ምንጭ የተፈጠረ እይታ ገና የለም።" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "የጠበቋቸውን እይታዎች እያዩ አይደለም?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "የተጠበቁትን እይታዎች ላያገኙ የሚችሉባቸው አንዳንድ ምክንያቶች እነሆ:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "ለእዚህ የመረጃ ምንጭ ተስማሚ የሆነ ምንም እይታ አልተፈጠረም" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "የድረ ገፁ አስተዳዳሪዎች ተያያዥ የማሳያ ተሰኪዎችን ላያካትቱ ይችላሉ" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "ተጭማሪ መረጃ" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "መስክ" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "መረጃው መጨረሻ የተሻሻለው" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "ያልታወቀ" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "ልዕለ-መረጃ ለመጨረሻ ጊዜ የተሻሻለው" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "ተፈጥሯል" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "ቅርጸት" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "ፈቃድ" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "አዲስ ዕይታ" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "ይህ መረጃ ምንም እይታ የለውም" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "አዲስ የመረጃ ምንጭ ይጨምሩ" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

ይህ የመረጃ ስብስብ ምንም መረጃ የለውም ፣ ለምን " +"አይጨምሩም?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "ኤፒአይ" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "የኤፒአይ ሰነዶች" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "ሙሉ {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 "" +"እንዲሁም ይሄን %(api_link)s በመጠቀም ይህን መዝገብ መድረስ ይችላሉ። (see %(api_doc_link)sን " +"ተመልከት ወይም %(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 "" +"እንዲሁም ይሄን %(api_link)s በመጠቀም ይህን መዝገብ መድረስ ይችላሉ። (see %(api_doc_link)sን " +"ተመልከት)" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "ወቅታዊ ሁኔታ" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "መጨረሻ የተሻሻለው" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "የመረጃ ስብስብን ከመፍጠርዎ በፊት ድርጅት መፍጠር ያስፈልግዎታል።" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "አዲስ ድርጅት ፍጠር" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "ይህንን የመረጃ ስብስብ ሊመድቡ የሚችሉበት ምንም ድርጅት የለም።" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "ከመቀጠልዎ በፊት አንድ ድርጅት እንዲፈጥር የስርዓት አስተዳዳሪውን ይጠይቁ።" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"የፍቃድ መግለጫዎች እና ተጨማሪ መረጃዎች በ opendefinition.org ማግኘት " +"ይችላሉ።" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "ድርጅት" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "ምንም ድርጅት የለም" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "የታይነት ደረጃ" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "ይፋ" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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 "Siham Mohammmed" + +#: 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 "khayo7mhmd@gmail.com" + +#: 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:26 +msgid "Data" +msgstr "መረጃ" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ምሳሌ፡ ነሃሴ 1989 የተወለዱ ህጻናት" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "ስለዚህ መረጃ አንዳንድ ጠቃሚ ማስታወሻዎችህ" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ምሳሌ፡ CSV, XML ወይም JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "ይህ በራስ-ሰር(automatically) ስለሚገመት ከፈለጉ ባዶውን መተው ይችላሉ" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ምሳሌ፡ 1997-08-20" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "የፋይል መጠን" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ምሳሌ፡ 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "የ MIME አይነት" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ምሳሌ፡ application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "ይህን የመረጃ ምንጭ ማጥፋት መፈለግዎን እርግጠኛ ነዎት?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "በፊት" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "አስከምጥና ሌላ ጨምር" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "አስስ" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "ለበለጠ መረጃ" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "ሙሉ ማያ" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "አካት" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "ይሀን የመረጃ ምንጭ እይታ ለጊዜው አይገኝም።" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "የመረጃ ምንጭ እይታ አካት" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"የመክተቻውን ኮድ ጥሬ HTML ወደ ሚደግፍ CMS ወይም የብሎግ ሶፍትዌር ቀድቶ መለተፍ(copy and paste) ይችላሉ" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "ስፋት" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "ርዝመት" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "ኮድ" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "የመረጃ ምንጭ ቅድመ-ዕይታ" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "መረጃ እና የመረጃ ምንጮች" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "የመረጃ ስብስብ ጨምር" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "የመረጃ ገፊው(Datapusher) ወቅታዊ ሁነታ፡ {status} ።" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "የምንጭ ፍለጋ URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "ተጨማሪ አሳይ {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "ታዋኪ የሆኑትን ብቻ አሳይ {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "ከዚ ፍለጋ ጋር የሚመሳሰል {facet_type} የለም" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "መነሻ" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "ቋንቋ" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ሂድ" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "ምንም አይነት ፍቃድ አላቀረቡም" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "ይሀ የመረጃ ስብስብ የመረጃን ግልጽነት ትርጉም ያሟላል።" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "ቅደም ተከተል" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "ውጤቶችን አታራ" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

እባክዎን ሌላ ፍለጋ ይሞክሩ።

" + +#: ckan/templates/snippets/search_form.html:87 +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] "ለ \"{query}\" {number} የመረጃ ስብስብ ተገኝቷል" +msgstr[1] "ለ \"{query}\" {number} የመረጃ ስብስቦች ተገኝተዋል" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "ለ \"{query}\" ምንም አይነት የመረጃ ስብስብ አልተገኘም" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} የመረጃ ስብስብ ተገኝቷል" +msgstr[1] "{number} የመረጃ ስብስቦች ተገኝተዋል" + +#: 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] "ለ \"{query}\" {number} ቡድን ተገኝቷል" +msgstr[1] "ለ \"{query}\" {number} ቡድኖች ተገኝተዋል" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "ለ \"{query}\" ምንም አይነት ቡድኖች አልተገኙም" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} ቡድን ተገኝቷል" +msgstr[1] "{number} ቡድኖች ተገኝተዋል" + +#: 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] "ለ \"{query}\" {number} ድርጅት ተገኝቷል" +msgstr[1] "ለ \"{query}\" {number} ድርጅቶች ተገኝተዋል" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "ለ \"{query}\" ምንም አይነት ድርጅቶች አልተገኙም" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} ድርጅት ተገኝቷል" +msgstr[1] "{number} ድርጅቶች ተገኝተዋል" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "ኢሜይል" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} መለዮ {tag} የመረጃ ስብስብ {dataset} ላይ ጨመረ።" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ቡድን {group} አሻሻለ።" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ድርጅት {organization} አሻሻለ።" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} የመረጃ ስብስብ {dataset} አሻሻለ።" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} የመረጃ ስብስብ {dataset} ን የመረጃ ምንጭ {resource} አሻሻለ።" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} ፕሮፋይላቸውን አሻሽለዋል።" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ቡድን {group} ን አጠፋ።" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ድርጅት {organization} ን አጠፋ።" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} የመረጃ ስብስብ {dataset} ን አጠፋ።" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} ከመረጃ ስብስብ {dataset} የመረጃ ምንጭ {resource} አጠፋ።" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} የመረጃ ስብስብ {dataset} ን መከተል ጀመረ።" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} ቡድን {group} ን መከተል ጀመረ።" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} ተጠቃሚ {user} ን መከተል ጀመረ።" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} ቡድን {group} ፈጠረ።" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} ድርጅት {organization} ፈጠረ።" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} የመረጃ ስብስብ {dataset} ፈጠረ።" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} ለመረጃ ስብስብ {dataset} ን የመረጃ ምንጭ {resource} ፈጠረ።" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} ተመዝግቧል" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ከመረጃ ስብስብ {dataset} መለዮ {tag} አጠፋ።" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "መለያዎችን ፈልግ" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 ተጠቃሚዎችን ያሳውቃቸዋል።" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "ዝርዝሮችን ለውጥ" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "ሙሉ ስም" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ምሳሌ: ሙና መሀመድ" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ምሳሌ: muna@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "ስለራስዎ ትንሽ መረጃ" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "ለማስታወቅያ ኢሜል መዝግብ" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "የይለፍ ቃል ቀይር" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "የአስተዳዳሪ ይለፍ ቃል" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "የይለፍ ቃል " + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "የይለፍ ቃሉን አረጋግጥ" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "ይህን ተጠቃሚ መሰረዝ እንደሚፈልጉ እርግጠኛ ነዎት ?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "እርግጠኛ ነዎት የኤፒአይ ቁልፉን እንደገና ማደስ እንደሚፈልጉ እርግጠኛ ነዎት ?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "የኤፒአይ ቁልፍ ዳግም ያድሱ" + +#: ckan/templates/user/edit_user_form.html:59 +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 "አስቀድመው እንደ {user} ሆነው ገብተዋል።" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "ውጣ" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "አስታውሰኝ" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "አስቀድመው ገብተዋል" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "በሌላ አካውንት መግባት ከመቻልዎ በፊት መውጣት ያስፈልግዎታል።" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "አካውንት ፍጠር" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "የይለፍ ቃልዎን ዳግም ያጽድቁ" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "የይለፍ ቃል ዳግም አጽድቅ" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "እንዲሁም ልዩ ስምዎን መቀየር ይችላሉ። በኋላ መለወጥ አይቻልም።" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "የይለፍ ቃል አሻሻል" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "ይሄ እንዴት ነው የሚሰራው?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "በቀላሉ አዲስ የይለፍ ቃል ያስገቡና መለያዎን እናሻሽላለን።" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "ተጠቃሚ የመረጃ ስብስብ አልፈጠረም።" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "ስለራስዎ የገለጹት ነገር የለም።" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "ይህ ተጠቃሚ ስለራሱ የገለጸው ነገር የለም።" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "ክፍት የመለዮ ቁጥር(ID)" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "ይህ ማለት ይሀን ማየት የሚችሉት እርስዎ ብቻ ኖት" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "አባል የሆኑበት ጊዜ" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "የኤፒአይ ቁልፍ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "የይለፍ ቃልዎን ዳግም ያጽድቁ" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "ተጠቃሚዎችን ፈልግ" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "የይለፍ ቃልዎ 8 ትዕምርቶች(characters) ወይም ከዚያ በላይ መሆን አለበት" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "ወደ ውጫዊ ጣብያ መቀየር አይፈቀድም።" diff --git a/ckan/i18n/ar/LC_MESSAGES/ckan.po b/ckan/i18n/ar/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..3f2aeaa0ff0 --- /dev/null +++ b/ckan/i18n/ar/LC_MESSAGES/ckan.po @@ -0,0 +1,5269 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Abed khooli , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Abed khooli , 2020\n" +"Language-Team: Arabic (https://www.transifex.com/okfn/teams/11162/ar/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\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" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "المقطع الصوتي" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "عنوان المقطع الصوتي (url)" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"مثال http://example.com/audio.mp3 (يستخدم عنوان المورد إذا كان فارغا)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"متصفحك لا يدعم عنصر الصوت لكن لا تقلق، يمكنك تنزيله." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "لم يتم العثور على المورد" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "غير مخول لرؤية هذه الصفحة" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "مكتمل" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "قيد الانتظار" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "جار الإرسال" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "خطأ" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "لم يتم التحميل بعد" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "تحميل الى مخزن البيانات" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "خطأ في التحميل:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "خطأ:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "تتبع الخطأ:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "الحالة" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "آخر تحديث" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "أبدا" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "سجل التحميل" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "التفاصيل" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "نهاية السجل" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "مخزن البيانات" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "لم يتم العثور على مورد مخزن البيانات" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"تم حفظ القاموس الوصفي للبيانات. سيتم تفعيل أية تغييرات نوعية بعد تحميل " +"المورد إلى مخزن البيانات." + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "البيانات غير ملائمة: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "لم بتم العثور على المورد \"{0}\". " + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "المستخدم {0} غير مخول بتحديث المورد {1} " + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "الواجهة البرمجية API لبيانات CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"الوصول إلى بيانات الموارد عبر واجهة الويب البرمجية API مع دعم قوي للاستعلام" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"مزيد من المعلومات في دليل التطبيقات البرمجية لمخزن البيانات في CKAN.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "نقاط الربط لـ API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"يمكن الوصول للـ API الخاص بالبيانات عن طريق إجراءات الـ API الخاصة بـ CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "إنشاء" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "تحديث / إدخال" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "استعلام" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "الاستعلام (من خلال SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "جار الاستعلام" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "مثال على الاستعلام (أول 5 نتائج)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "مثال على الاستعلام (النتائج التي تحتوي على 'jones' )" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "مثال على الاستعلام (من خلال عبارة SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "مثال: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "نموذج طلب أجاكس (JSONP) مبسط لبيانات API بإستخدام .JQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "مثال : بايثون Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "حفظ" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "حقل {num}. " + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "تجاوز النوع" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "وصف" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "قاموس البيانات الوصفي" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "العمود" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "النوع" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "تحميل..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "الواجهة البرمجية للبيانات API " + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "الجدول" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "العرض المرن" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "عرض الأعمدة" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "فحص الإعدادات" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "حسب الحقل المخصص تنازليا" + +#: ckan/templates/group/read.html:17 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 "الأكثر طلبا" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "هذا نص غير مترجم" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "لا يوجد وصف لهذا التصنيف" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} مجموعة بيانات" +msgstr[1] "{num} مجموعة بيانات" +msgstr[2] "{num} مجموعتا بيانات" +msgstr[3] "{num} مجموعات بيانات" +msgstr[4] "{num} مجموعة بيانات" +msgstr[5] "{num} مجموعة بيانات" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 مجموعة بيانات" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "تمتلك أداة عرض بيانات الـ CKAN ميزات قوية عديدة" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "المتابعون" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "الموارد" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "ثانية" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "دقيقة" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "ساعة" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "يوم" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "تنتهي بعد" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "وحدات" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "تنتهي عند" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "صورة" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "عنوان الصورة URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"مثال: http://example.com/image.jpg (إذا كان فارغا يتم استخدام عنوان المورد)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "مستكشف البيانات" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "الرسم البياني" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "الخارطة" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "خطأ في تحميل صيغة العرض" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "تعذر تحميل صيغة العرض" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "خطأ في مخزن البيانات" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "خطأ في وكيل البيانات DataProxy" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "جدول" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "مثال: 0" + +#: 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 "مثال: 100" + +#: 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 "التصنيف (محور 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "السلاسل البيانية (محور 2)" + +#: 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 "حقل GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "عنوان (url) غير ملائم" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "مجموعات البيانات الأعلى تقييماً " + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "متوسط التقييم" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "عدد التقييمات" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "لا تقييمات" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "أكبر التصنيفات" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "التصنيف" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "عدد مجموعات البيانات" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "لا يوجد تصنيفات" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "الوسوم الأكثر تداولا" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "اسم الوسم" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "عدد مجموعات البيانات" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "المستخدمون الأكثر إنشاء لمجموعات البيانات" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "المستخدم" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "قائمة الإحصاءات" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "مجموعات البيانات الأكثر تعديلاً" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "النص" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "حدث خطأ أثناء الطلب التزامني AJAX. تعذر تحميل العرض." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "فيديو" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "عنوان (url) الفيديو" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"مثال http://example.com/video.mpeg (يستخدم عنوان المورد إذا كان فارغا)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "عنوان (url) صورة الفيديو" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "مثال http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"للأسف، لا يدعم متصفحك الفيديوهات المضمنة، لا تقلق يمكنك n تنزيل الفيديو ومشاهدته من خلال " +"المشغل المفضل لك." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "الموقع الإلكتروني" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "عنوان الصفحة على الإنترنت URL" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"على سبيل المثال: http://example.com (يتم استخدام عنوان المورد إن كان فارغا)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "متصفحك لايدعم الأطر المضمنة iframes" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "لم يتم العثور على الكود البرمجي لمنح الصلاحية %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "مدير النظام" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "محرر" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "عضو" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "يجب أن تكون مدير النظام للقيام بمهام الإدارة" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "عنوان الموقع" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "مظهر" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "شعار الموقع النصي" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "شعار الموقع الصوري" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "عن الموقع" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "نص الصفحة: عن الموقع" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "نص المقدمة" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "النص على الصفحة الرئيسية" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS مخصص" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "تم إدراج CSS مخصصة في رأس الصفحة" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "الصفحة الرئيسية" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "لا يمكن إزالة الحزمة %s لأنها مرتبطة بتعديل %s يشمل حزم غير محذوفة %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "مشكلة في إزالة تعديل %s : %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "تمت الإزالة" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "لم ينفذ الإجراء." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "تم رفض الوصول" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "غير موجود" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "طلب غير ملائم" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "اسم الإجراء غير معروف: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "خطأ JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "بيانات الطلب غير الملائم: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "لم يتم العثور على التصنيف" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "المؤسسة غير موجودة" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "نوع التصنيف غير صحيح" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "المؤسسات" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "التصنيفات" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "الوسوم" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "الصيغ" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "التراخيص" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "المستخدم %r غير مخول بتحرير %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "غير مخول بإجراء مجموعة تحديثات" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "غير مخول بإنشاء تصنيف" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "خطأ متعلق باستقامة البيانات Integrity" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "المستخدم %r غير مخول بتعديل الأذونات %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "غير مخول بحذف التصنيف %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "تم حذف المؤسسة." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "تم حذف التصنيف." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "تم حذف %s" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "المستخدم %r غير مخول بتعديل أعضاء%s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "غير مخول بإنشاء أعضاء للتصنيف %s " + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "غير مخول بإضافة عضو للتصنيف %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "غير مخول بحذف أعضاء المجموعة %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "تم حذف عضو المجموعة." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "الرجاء اختيار تعديلين قبل القيام بالمقارنة." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "السجل التاريخي لتعديل تصنيف CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "التغييرات الحديثة في تصنيف CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "رسالة السجل:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "أنت الآن تتابع {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "أنت لم تعد تتابع {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "غير مخول بمشاهدة المتابعين %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "هذا الموقع غير متوفر حاليا. لم يتم تفعيل قاعدة البيانات بعد." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "يرجى تحديث ملفك الشخصي و إضافة بريدك الإلكتروني." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +" %sيستخدم عنوان البريد الإلكتروني الخاص بك إذا كنت تحتاج إلى إعادة تعيين " +"كلمة السر. " + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "جملة البحث غير ملائمة: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "المعامل \"{parameter_name}\" ليس عددا صحيحا" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "لم يتم العثور على مجموعة البيانات" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "تنسيق التعديل غير ملائم: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +" عرض مجموعات البيانات من النوع \"{package_type}\" غير مدعومة\n" +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "%sغير مخول بقراءة حزمة البيانات" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "السجل التاريخي لتعديلات مجموعة بيانات CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "آخر التعديلات لمجموعة بيانات CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "غير مخول بإنشاء حزمة" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "غير مخول بتعديل هذا المورد" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "غير مخول بتحديث مجموعة البيانات" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "لم يتم العثور على مجموعة البيانات {id} " + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "يجب إضافة مورد بيانات واحد على الأقل" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "غير مخول بإنشاء مورد" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "غير مخول بإنشاء مورد لهذه الحزمة" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "تعذر إضافة حزمة لفهرس البحث" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "تعذر تحديث فهرس البحث." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "تم حذف مجموعة البيانات." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "غير مخول بحذف الحزمة%s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "تم حذف المورد." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "غير مخول بحذف المورد%s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "لم يتم العثور على صيغة عرض للمورد" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "لم يتم العثور على بيانات المورد" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "لا تحميل متاح" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "غير مخول بقراءة مجموعة البيانات%s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "غير مخول بقراءة المورد%s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "غير مخول بتعديل المورد" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "لم يتم العثور على صيغة العرض " + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "لم يتم العثور على نوع صيغة العرض" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "بيانات صيغة عرض المورد غير صالحة" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "صيغة عرض المورد غير موفرة" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "لم يتم تعريف صيغة معاينة." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "المستخدم غير موجود" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "غير مخول بالتسجيل كمستخدم." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "غير مخول بإنشاء مستخدم" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "غير مخول بحذف المستخدم \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "لم يتم تحديد مستخدم" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "غير مخول بتعديل المستخدم%s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "تم تحديث الملف الشخصي" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "غير مخول بإنشاء المستخدم%s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "إجابة التحقق غير صحيحة. يرجى المحاولة مرة أخرى." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "المستخدم \"%s\" أصبح مسجلا لكنك لا زلت مسجلا للدخول كـ \"%s\" من قبل " + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "غير مخول بتعديل مستخدم." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "كلمة المرور المدخلة غير صحيحة" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "كلمة المرور القديمة" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "كلمة مرور خاطئة" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "تعذر الدخول. خطأ في اسم المستخدم أو كلمة المرور." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "غير مخول بطلب إعادة تعيين كلمة المرور." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "البريد الإلكتروني مطلوب" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"تعذر إرسال الرسالة. يرجى المحاولة لاحقا أو طلب المساعدة من مدير النظام" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "أرسلنا لك رابط إعادة التعيين (ما لم يكن الحساب المحدد غير موجود)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "غير مخول بإعادة تعيين كلمة المرور." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "رمز إعادة التعيين غير صحيح. الرجاء المحاولة مرة أخرى." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "تمت إعادة تعيين كلمة المرور الخاصة بك." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "يجب أن تكون كلمة المرور الخاصة بك 4 أحرف ورموز أو أكثر." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "كلمتا المرور المدخلتان غير متطابقتين." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "يجب إدخال كلمة مرور" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "لم يتم العثور على عنصر المتابعة" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} غير موجود" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "كل شيء" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "صيغة معاينة" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} نشاط جديد من الموقع {site_title}" +msgstr[1] "{n} نشاط جديد من الموقع {site_title}" +msgstr[2] "{n} نشاطان جديدان من الموقع {site_title}" +msgstr[3] "{n} أنشطة جديدة من الموقع {site_title}" +msgstr[4] "{n} أنشطة جديدة من الموقع {site_title}" +msgstr[5] "{n} أنشطة جديدة من الموقع {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "منذ لحظات" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} بايت" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} كيلوبايت" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} ميجابايت" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} جيجابايت" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} تيرابايت" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}ك" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}م" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}ج" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}ت" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}ب" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}إ" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}ز" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}ي" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "غير معروف" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "مورد بلا اسم" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "مجموعة بيانات جديدة منشأة." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "موارد معدلة." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "إعدادات معدلة." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} مشاهدة" +msgstr[1] "{number} مشاهدة" +msgstr[2] "{number} مشاهدتان" +msgstr[3] "{number} مشاهدات" +msgstr[4] "{number} مشاهدة" +msgstr[5] "{number} مشاهدة" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} مشاهدة حديثة" +msgstr[1] "{number} مشاهدة حديثة" +msgstr[2] "{number} مشاهدتان حديثتان" +msgstr[3] "{number} مشاهدات حديثة" +msgstr[4] "{number} مشاهدة حديثة" +msgstr[5] "{number} مشاهدة حديثة" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "لا يتوفر عنوان بريد إلكتروني مستقبل!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "مؤسسة" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "تصنيف" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "قيمة غير متوفرة" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr " حقل الإدخال%(name)s لم يكن متوقعا." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "يرجى إدخال عدد صحيح" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "يجب أن يكون نص يونيكود" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "مورد / موارد الحزمة غير صالحة" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "الإضافات" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "مفردة الوسم \" %s \" غير موجودة" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "مجموعة البيانات" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "لا يمكن التحويل لصيغة JSON صالحة" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "يجب إدخال اسم مؤسسة" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "لا يمكنك نقل مجموعة البيانات هذه إلى مؤسسة أخرى" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "المؤسسة غير موجودة" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "لا يمكنك إضافة مجموعة بيانات لهذه المؤسسة" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "غير صالح كعدد صحيح" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "يجب أن يكون عدد طبيعي" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "يجب أن يكون عدد صحيح موجب" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "تنسيق التاريخ غير صحيح" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "لا يسسمح بالروابط في رسالة السجل." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "معرّف مجموعة البيانات مستخدم" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "المورد" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "اسم هذا التصنيف أو معرّفه غير موجود." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "نوع الفعالية" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "يجب أن تكون الأسماء نصوصا" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "لا يمكن استخدام هذا الاسم" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "يجب أن يكون بطول%s حرفا على الأقل" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "يجب أن لا يتجاوز طول الاسم %iحرفا" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "يجب الاقتصار على حروف وأرقام (أسكي) فقط وهذه الرموز: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "هذا العنوان قيد الاستخدام." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr " طول الاسم \"%s\" أقل من الحد الأدنى %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "طول الاسم \"%s\" أكثر من الحد الأقصى %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr " الحد الأقصى لاسم الإصدار%iمن الحروف" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "المفتاح مكرر \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "اسم التصنيف موجود فعلا في قاعدة البيانات" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr " طول الوسم \"%s\" أقل من الحد الأدنى %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "طول الوسم \"%s\" أكثر من الحد الأقصى %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "الوسم \"%s\" يجب أن يتألف من حروف وأرقام بالإضافة إلى الرموز: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "الوسم \"%s \" يجب أن يكون حروف صغيرة" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "أسماء المستخدمين يجب أن تكون نصوص" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "اسم المستخدم هذا غير موجود" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "لا يمكن تعديل اسم المرور" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "يرجى إدخال كلمتي المرور" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "يجب أن تكون كلمات المرور نصوصا" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "يجب أن تكون كلمة مرورك 8 أحرف ورموز أو أكثر" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "كلمتا المرور المدخلتان غير متطابقتين" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "لم يتم قبول التعديل حيث يظهر وكأنه زائف. يرجى تجنب الروابط في الوصف." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr " الاسم يجب أن يتكون من%s حروف على الأقل" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "اسم المفردة هذه قيد الاستخدام بالفعل." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "لا يمكن تغيير قيمة المفتاح من %s إلى %s. هذا المفتاح متاح للقراءة فقط" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "مفردة الوسم غير موجودة." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "الوسم %s لا يتبع للمفردة %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "لا يوجد اسم للوسم" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "الوسم %s تابع فعلا للمفردة %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "يرجى تزويد عنوان إنترنت صحيح." + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "دور غير موجود" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "مجموعات البيانات غير التابعة لمؤسسة لا يمكن أن تكون خاصة." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "ليست قائمة" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "ليس نصا" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "سينشئ هذا الأصل حلقة في التسلسل الهرمي" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" و \"filter_values\" يجب أن تكون نفس الطول" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" مطلوبة حين لا تكون \"filter_values\" فارغة" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" مطلوبة حين لا تكون \"filter_fields\" فارغة" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "يوجد حقل في مخطط البيانات بنفس الاسم" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "البريد الإلكتروني {email} ليس بصيغة صالحة" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "يجب أن يكون بيصغة قاموس (dict)" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "البريد الإلكتروني '{email}' تابع لشخص مسجل في النظام." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "يجب أن تكون القيمة ضمن {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "يجب أت تكون القيمة كائن JSON ملائم" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "لا يمكن استخراج القيمة ككائن JSON ملائم" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "لا يمكن استخراج '{name}' الإضافي ككائن JSON ملائم" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "قيمة غير متوفرة" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "يجب أن يكون الدور ضمن \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "لا يمكنك إضافة معاونين" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "خاصية معاوني مجموعة البيانات غير مفعلة" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "محاولة إنشاء مؤسسة كتصنيف" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "يجب تزويد معرف حزمة أو اسم (parameter \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "يجب تزويد تقييم (معامل \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "يجب أن يكون التقييم عددا صحيحا." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "يجب أن يكون التقييم بين%iو%i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "خطأ في إرسال الدعوة بالبريد الإلكتروني، لم يتم إنشاء المستخدم: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "يجب تسجيل الدخول لمتابعة المستخدمين" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "لا يمكنك متابعة نفسك" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "أنت بالفعل تتابع {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "يجب تسجيل الدخول لمتابعة مجموعة بيانات." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "المستخدم {username} غير موجود." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "يجب تسجيل الدخول لمتابعة تصنيف." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "حزمة الموارد غير موجودة" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "لا يمكن حذف مؤسسة لديها مجموعات بيانات" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "المعرف id ليس من ضمن البيانات" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "تعذر العثور على المفردة \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "تعذر العثور على الوسم \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "يجب تسجيل الدخول لإلغاء متابعة شيء ما." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "أنت لا تتابع {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "يجب أن تكون الإمكانية (الدور) ضمن \"{}\"" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "غير مصرح لك باسترجاع قائمة المعاونين" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "لم يتم العثور على المورد." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "معامل غير منطقي" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "لا تحدد إذا كنت تستخدم معامل استعلام \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "يجب أن يكون بصيغة زوجية :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "لم يتم التعرف على الحقل \"{field}\" في resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "لم يتم العثور على الحزمة." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "لم يتم العثور على وضع المهمة TaskStatus." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "لم يتم العثور على المؤسسة." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "المستخدم%s غير مخول بإنشاء الحزم" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "المستخدم%s غير مخول بتعديل هذه التصنيفات" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "المستخدم%sغير مخول بإضافة مجموعة بيانات الى هذه المؤسسة" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "لم يتم تحديد معرّف مجموعة بيانات، لا يمكن فحص التحقق من المصادقة" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "لا يمكن العثور على حزمة لهذا المورد، لا يمكن فحص التحقق من المصادقة." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "المستخدم%s غير مخول بإنشاء موارد لمجموعة البيانات%s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "المستخدم%s غير مخول بتعديل هذه الحزم" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "المستخدم%s غير مخول بإنشاء تصنيفات" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "المستخدم%s غير مخول بإنشاء مؤسسات" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "المستخدم {user} غير مخول بإنشاء مستخدمين من خلال API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "غير مخول بإنشاء مستخدمين" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "لم يتم العثور على التصنيف." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "المستخدم%s غير مخول بإضافة أعضاء" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "المستخدم%s غير مخول بتعديل التصنيف%s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "المستخدم %sغير مخول بإضافة معاونين لمجموعة البيانات هذه" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "المستخدم%s غير مخول بحذف المورد%s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "لم يتم العثور على صيغة عرض المورد ، لا يمكن فحص التحقق من المصادقة." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "المستخدم%s غير مخول بحذف العلاقة%s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "المستخدم%s غير مخول بحذف تصنيفات" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "المستخدم%s غير مخول بحذف التصنيف%s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "المستخدم%sغير مخول بحذف مؤسسات" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "المستخدم%s غير مخول بحذف المؤسسة%s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "المستخدم%s غير مخول بحذف وضع المهمة task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "المستخدم %sغير مخول بإزالة معاونين من مجموعة البيانات هذه" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "غير مخول" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "المستخدم%s غير مخول بقراءة هذه الحزم" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "المستخدم%s غير مخول بقراءة الحزمة%s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "المستخدم%s غير مخول بقراءة المورد%s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "المستخدم%s غير مخول بقراءة التصنيف%s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "يجب تسجيل الدخول للوصول إلى لوحة التحكم الخاصة بك." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "المستخدم %s غير مخول بإظهار معاوني مجموعة البيانات هذه" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "المستخدم%sغير مخول بتعديل الحزمة%s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "المستخدم%sغير مخول بتعديل المورد%s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "المستخدم%s غير مخول بتغيير حالة الحزمة%s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "المستخدم%s غير مخول بتعديل المؤسسة%s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "المستخدم%s غير مخول بتغيير حالة التصنيف%s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "المستخدم%s غير مخول بتعديل أذونات التصنيف%s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "يجب تسجيل الدخول لتعديل مستخدم" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "المستخدم%s غير مخول بتعديل المستخدم%s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "المستخدم {0} غير مخول بتحديث المستخدم {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "المستخدم %s غير مخول بتغيير حالة التعديل" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "المستخدم %sغير مخول بتحديث جدول وضع المهمات task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "المستخدم%s غير مخول بتحديث جدول ترجمة المصطلحات term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "العنوان" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "الترخيص غير محدد" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "تراخيص وخدمة المجال العام لمشاع البيانات المفتوحة (PDDL) " + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "ترخيص قاعدة البيانات المفتوح التابع لمشاع البيانات المفتوحة (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "ترخيص النّسب التابع لمشاع البيانات المفتوحة" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "المشاع الإبداعي CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "المشاع الإبداعي - النّسب" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "ترخيص المشاع الإبداعي - النّسب والمشاركة بالمثل" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "رخصة GNU الحرّة للتوثيق" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "أخرى (مفتوحة)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "أخرى (المجال العام)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "أخرى (النّسب)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "رخصة حكومة المملكة المتحدة المفتوحة (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "المشاع الإبداعي غير التجاري (كافة)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "أخرى (غير تجارية)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "أخرى (غير مفتوحة)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "يعتمد على%s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "من متطلبات%s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "مشتقة من%s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "لديها اشتقاق%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "ترتبط بـ%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "مرتبطة بـ%s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "فرع من%s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "من أصول%s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "لها صلة %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "لا توجد بيانات API لتحميل لهذا المورد" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "فشل تحميل معلومات بيانات الـ API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "ابدأ الكتابة..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "لم يتم العثور على نتائج مطابقة" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "القيمة المدخلة قصيرة، يجب أن تكون %(num)d حرفا" +msgstr[1] "القيمة المدخلة قصيرة، يجب أن تكون حرفا" +msgstr[2] "القيمة المدخلة قصيرة، يجب أن تكون %(num)d حرفين" +msgstr[3] "القيمة المدخلة قصيرة، يجب أن تكون %(num)d حروف" +msgstr[4] "القيمة المدخلة قصيرة، يجب أن تكون %(num)d حرفا" +msgstr[5] "القيمة المدخلة قصيرة، يجب أن تكون %(num)d حرفا" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "هناك تعديلات غير محفوظة في هذا النموذج" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "يرجى تأكيد الإجراء" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "هل أنت متأكد أنك تريد تنفيذ هذا الإجراء؟" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "تأكيد" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "إلغاء" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "إلغاء المتابعة" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "تابع" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "رابط" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "رابط عنوان URL على الإنترنت (يمكنك أيضا الربط بـ API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "تحميل/رفع" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "يرجى اختيار ملف للتحميل (الرفع) مرة أخرى" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "إزالة" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "حمّل ملف من جهاز الكمبيوتر الخاص بك" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "عنوان إنترنت URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "الملف" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "إعادة ترتيب الموارد" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"يمكن إعادة ترتيب الموارد بالسحب بواسطة أيقونة السهم على اليمين إلى المكان " +"المرغوب ثم النقر على زر \"حفظ الترتيب\"." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "حفظ الترتيب" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "جار الحفظ ..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "تحميل ملف" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "حدث خطأ ما" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "لا يمكن تحميل الملف" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "لا يمكن المصادقة على التحميل" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "تم تحميل المورد" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "تعذر معالجة بيانات الملف الذي تم تحميله" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "إضافة فلتر" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "اختيار حقل" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "تعديل" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "إظهار المزيد" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "إخفاء" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "خطأ %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "عن {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "الواجهة البرمجية للمنصة CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "جمعية CKAN" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"يعمل على نظام Ckan" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "إعدادات إدارة النظام" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "عرض الملف الشخصي (البروفايل)" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "لوحة التحكم (%(num)d مادة جديدة)" +msgstr[1] "لوحة التحكم (%(num)d مادة جديدة)" +msgstr[2] "لوحة التحكم (%(num)d مادتان جديدتان)" +msgstr[3] "لوحة التحكم (%(num)d مواد جديدة)" +msgstr[4] "لوحة التحكم (%(num)d مادة جديدة)" +msgstr[5] "لوحة التحكم (%(num)d مادة جديدة)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "لوحة التحكم" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "إعدادات الملف الشخصي" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "تسجيل الخروج" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "الحساب" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "تسجيل الدخول" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "تسجيل" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "مجموعات البيانات" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "البحث في مجموعات البيانات" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "البحث" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "البحث في مجموعات البيانات" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "إرسال" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "التخطي الى المحتوى" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "المحذوفات" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "شعار الموقع" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "هل أنت متأكد أنك تريد إعادة ضبط الإعدادات؟" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "إعادة الضبط" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "تحديث الإعدادات" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "خيارات إعدادات CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 والذي يظهر" +" في أماكن مختلفة في نظام CKAN.

نمط العرض : اختر من" +" قائمة نظم الألوان للحصول على سمة مخصصة سريعة.

الشعار " +"النصّي للموقع: هذا هو الشعار الذي يظهر في رأس كافة قوالب هذه " +"النسخة من CKAN.

حول الموقع : سيظهر هذا النص في " +"نسخة CKAN هذه صفحة حول الموقع " +".

نص المقدمة: سيظهر هذا النص في نسخة CKAN هذه في الصفحة الرئيسية كترحيب بالزوار.

" +"

أنماط CSS خاصة: هذه كتلة من CSS تظهر في وسم " +"<head> من كل صفحة. إذا كنت ترغب في تخصيص القوالب بشكل كامل " +"فإننا نوصي بقراءة الدليل " +".

الصفحة الرئيسية: لاختيار عرض محدد مسبقا " +"للعناصر التي تظهر على الصفحة الرئيسية.

" + +#: 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" + +#: 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. مارس هذه " +"الصلاحيات بدقة وحذر!

للحصول على إرشادات حول استخدام ميزات إدارة " +"النظام راجع دليل إدارة CKAN " + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "هل أنت متأكد أنك تريد محو كل شيء نهائيا؟" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "محو الكل نهائيا" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "الإزالة النهائية لمجموعات البيانات والمؤسسات والتصنيفات المحذوفة." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "تأكيد الحذف" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "مجموعات البيانات المحذوفة" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "المؤسسات المحذوفة" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "التصنيفات المحذوفة" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "انقر هنا لمزيد من المعلومات." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "لا يوجد معالج محدد لنوع البيانات:%(type)s." + +#: 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/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 "لغة التوصيف Markdown" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "إضافة تصنيف" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "نموذج التصنيف" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "هل أنت متأكد أنك تريد حذف التصنيف - {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 "هل أنت متأكد أنك تريد حذف العضو - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "إضافة عضو" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "مستخدم مسجل" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "اذا كنت ترغب بإضافة مستخدم مسجل، ابحث عن اسمه أدناه" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "أو" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "مستخدم جديد" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "اذا كنت ترغب بدعوة مستخدم جديد، أدخل البريد الالكتروني الخاص به." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "الدور" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "هل انت متأكد أنك تريد حذف هذا العضو؟" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "حذف" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "ما هي الأدوار؟" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "البحث في مجموعات البيانات ..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "مجموعات البيانات التابعة للتصنيف: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "الاسم" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "تصنيفي" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "معلومات مختصرة عن تصنيفي ..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "هل أنت متأكد انك تريد حذف هذا التصنيف؟" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "حفظ التصنيف" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "عرض {name}" + +#: 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 لإنشاء تصانيف من مجموعات البيانات وإدارتها. يمكن " +"أن يكون ذلك لفهرسة مجموعات البيانات التابعة لمشروع أو فريق معين، أو موضوع " +"معين، أو كطريقة بسيطة لمساعدة الأشخاص في البحث عن مجموعات البيانات المنشورة " +"والخاصة بك." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "محذوفة" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 المنصة مفتوحة المصدر الأشهر في العالم للبيانات المفتوحة.

" +"CKAN هو حل برمجي جاهز وكامل، يجعل الوصول إلى البيانات أمرا سهلا وعمليا - من " +"خلال توفير أدوات لتبسيط النشر والمشاركة وإيجاد واستخدام البيانات (بما في ذلك" +" تخزين البيانات وتوفير واجهة برمجيات قوية للبيانات APIs). تستهدف منصة CKAN " +"ناشري البيانات (الحكومات الوطنية والمحلية والشركات والمؤسسات) الراغبين في " +"جعل بياناتهم مفتوحة ومتاحة.

تستخدم CKAN من قبل الحكومات ومجموعات " +"المستخدمين في جميع أنحاء العالم وتدير مجموعة متنوعة من بوابات البيانات " +"الرسمية والمجتمعية بما في ذلك بوابات الحكومة المحلية والوطنية والدولية، مثل " +"بوابة المملكة المتحدة " +"data.gov.ukوالاتحاد الأوروبيpublicdata.euوالبرازيلdados.gov.br، وبوابات الحكومة الهولندية، " +"فضلا عن مواقع المدن والبلديات في الولايات المتحدة والمملكة المتحدة " +"والأرجنتين وفنلندا وغيرها.

CKAN: " +"http://ckan.org/
CKAN جولة في: http//ckan.org/tour/
نظرة عامة على " +"الميزات:http//ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "مرحبا بكم في 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 "" +"هذه فقرة تمهيدية حول CKAN أو الموقع الإلكتروني بصورة عامة. ليس لدينا نص مخصص" +" لهذه الزاوية بعد ولكن سنعمل قريبا على ذلك" + +#: 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 "{0} إحصاءات" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "مجموعة بيانات" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "مجموعات بيانات" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "مؤسسات" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "تصنيفات" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "هذا الحقل مطلوب " + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"يمكنك استخدام لغة التوصيف Markdown هنا" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "المفتاح" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "القيمة" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "مخصص" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "النموذج يحتوي على مدخلات غير صالحة:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "حقل مطلوب" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg " + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "عنوان الصورة URL " + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "إلغاء التحميل" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "إضافة مؤسسة" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "من النتائج للاستعلام \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "للأسف، لم يتم العثور على مجموعات بيانات للاستعلام \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "تحويل إلى عامة" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "تحويل إلى خاصة" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "مسودة" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "خاصة" + +#: ckan/templates/organization/bulk_process.html:98 +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 "هل أنت متأكد أنك تريد حذف المؤسسة - {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 "تعديل المؤسسة" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "اسم المستخدم" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "البريد الإلكتروني" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "تحديث العضو" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} عضو" +msgstr[1] "{count} عضو" +msgstr[2] "{count} عضوان" +msgstr[3] "{count} أعضاء" +msgstr[4] "{count} عضو" +msgstr[5] "{count} عضو" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "مجموعات البيانات في المؤسسة: {group}" + +#: 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 لإنشاء وإدارة ونشر مجموعات البيانات. يمكن أن يكون " +"للمستخدمين أدوار مختلفة داخل المؤسسة بناءا على مستوى التفويض الممنوح لهم " +"للإنشاء و التحرير والنشر." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"هل أنت متأكد أنك تريد حذف هذه المؤسسة؟ ملاحظة*: لا يمكن الحذف في حال وجود " +"مجموعات بيانات خاصة أو عامة تابعة للمؤسسة." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "حفظ المؤسسة" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "عرض {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 عبارة عن تجميع من موارد البيانات (كالملفات) ، " +"بالإضافة إلى الوصف ومعلومات أخرى، بعنوان URL ثابت. مجموعات البيانات هي ما " +"يراه المستخدمون عند البحث عن البيانات." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "التغييرات " + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "هل أنت متأكد أنك تريد حذف مجموعة البيانات - {name}؟" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "هل أنت متأكد أنك تريد حذف المورد - {name}؟" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "عرض مجموعة البيانات" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "تعديل البيانات الوصفية" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "معاينة" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "إضافة" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "تعديل المورد" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "طرق العرض" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "نقطة ربط API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "الذهاب الى المورد" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "تنزيل" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "عنوان الموقع URL: " + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "وصف مجموعة البيانات:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "المصدر: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "لا توجد صيغ عرض منشأة لهذا المورد بعد." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "لا ترى صيغ العرض التي كنت تتوقعها؟" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "هذه بعض الأسباب التي تحول دون رؤية صيغ العرض المتوقعة:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "لم يتم إنشاء عرض مناسب لهذا المورد" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"ربما لم يقم مسؤولو الموقع بتفعيل المكونات الإضافية لصيغ العرض ذات الصلة" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "معلومات إضافية" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "حقل" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "آخر تحديث للبيانات" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "غير معروف" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "آخر تحديث للبيانات الوصفية" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "أنشئت" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "تنسيق" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "الترخيص" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "عرض جديد" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "هذا المورد ليس له صيغة عرض " + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "إضافة مورد جديد" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

لا تحتوي مجموعة البيانات هذه على بيانات،لماذا لا تضف بعض البيانات؟

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "الواجهة البرمجية API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "دليل API " + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "تفريغ {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 "" +"يمكنك أيضا الوصول إلى هذا السجل باستخدام %(api_link)s(انظر %(api_doc_link)s)" +" أو تنزيل%(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 "" +"يمكنك أيضا الوصول إلى هذا التسجيل باستخدام%(api_link)s (أنظر " +"%(api_doc_link)s)" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "تعديل معاون" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "إضافة معاون" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "عودة إلى كافة المعاونين" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "هل حقا تريد حذف هذا المعاون؟" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "تحديث المعاون" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "ما الأدوار المتوفرة؟" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

المدير: بالإضافة إلى إدارة مجموعة البيانات، يمكن للمدير " +"إضافة أو إزالة معاونين.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

المحرر:يمكن للمحررين تعديل مجموعات البيانات ومواردها " +"والوصول للمجموعات الخاصة.

العضو:يستطيع الآعضاء الوصول " +"لمجموعة البيانات الخاصة لكن لا يستطيعون تعديلها.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "إضافة معاونين" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} معاون" +msgstr[1] "{count} معاون" +msgstr[2] "{count} معاونان" +msgstr[3] "{count} معاونين" +msgstr[4] "{count} معاون" +msgstr[5] "{count} معاونين" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "الحالة" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "آخر تحديث" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "قبل أن تتمكن من إنشاء مجموعة البيانات ينبغي إنشاء مؤسسة." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "إنشاء مؤسسة جديدة" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "لا توجد مؤسسة يمكنك إلحاق مجموعة البيانات بها." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "اطلب من مدير النظام إنشاء مؤسسةلتتمكن من المتابعة." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "بتاريخ %(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "يرجى اختيار الرخصة" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"تعريفات التراخيص ومعلومات إضافية يمكن العثور عليها في opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "المؤسسة" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "لا توجد مؤسسة" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "إمكانية المشاهدة" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "عامة" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "التالي: إضافة البيانات" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json " + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "فلان الفلاني " + +#: 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 "joe@example.com " + +#: 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:26 +msgid "Data" +msgstr "البيانات" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv " + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "على سبيل المثال: اسعار الذهب في كانون ثاني 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "بعض الملاحظات المفيدة حول البيانات" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "مثال: CSV،XML أو JSON " + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "هذا سوف يخمن تلقائيا .اتركه فارغا إذا كنت ترغب في ذلك" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "على سبيل المثال: 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "حجم الملف" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "على سبيل المثال: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "نوع الملف التبادلي MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "على سبيل المثال: application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "هل أنت متأكد أنك تريد حذف هذا المورد؟" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "السابق" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "حفظ وإضافة مورد آخر" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "استكشف" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "معلومات إضافية" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "كامل الشاشة" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "تضمين" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "صيغة عرض المورد هذه غير متوفرة في الوقت الحالي." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "تضمين صيغة عرض المورد" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"يمكنك نسخ كود التضمين ولصقه في نظام إدارة محتوى CMS أو مدونة تدعم تنسيق HTML" +" الخام" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "العرض" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "الارتفاع" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "الكود" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "معاينة المورد" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "البيانات و الموارد" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "إضافة مجموعة البيانات" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "حالة مقدّم البيانات:{status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "عنوان التتبع URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "إظهار المزيد {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "عرض الأكثر تداولا فقط {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "لا توجد {facet_type} تطابق هذا البحث" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "الصفحة الرئيسية" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "اللغة" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "تفعيل" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "لم يتم تزويد أية رخصة" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "مجموعة البيانات هذه متوافقة مع تعريف الانفتاح." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "الترتيب حسب" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "فلترة النتائج" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

يرجى محاولة بحث آخر.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "تم العثور على {number} مجموعة بيانات للاستعلام \"{query}\"" +msgstr[1] "تم العثور على {number} مجموعة بيانات للاستعلام \"{query}\"" +msgstr[2] "تم العثور على {number} مجموعتي بيانات للاستعلام \"{query}\"" +msgstr[3] "تم العثور على {number} مجموعات بيانات للاستعلام \"{query}\"" +msgstr[4] "تم العثور على {number} مجموعة بيانات للاستعلام \"{query}\"" +msgstr[5] " تم العثور على {number} مجموعة بيانات للاستعلام \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "لا توجد مجموعات بيانات مطابقة للاستعلام \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "تم العثور على {number} مجموعة بيانات" +msgstr[1] "تم العثور على {number} مجموعة بيانات" +msgstr[2] "تم العثور على {number} مجموعتي بيانات" +msgstr[3] "تم العثور على {number} مجموعات بيانات" +msgstr[4] "تم العثور على {number} مجموعة بيانات" +msgstr[5] "تم العثور على {number} مجموعة بيانات" + +#: 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] "تم العثور على {number} تصنيف للاستعلام \"{query}\"" +msgstr[1] "تم العثور على {number} تصنيف للاستعلام \"{query}\"" +msgstr[2] "تم العثور على {number} تصنيفين للاستعلام \"{query}\"" +msgstr[3] "تم العثور على {number} تصنيفات للاستعلام \"{query}\"" +msgstr[4] "تم العثور على {number} تصنيفات للاستعلام \"{query}\"" +msgstr[5] "تم العثور على {number} تصنيفات للاستعلام \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "لم يتم العثور على تصنيفات للاستعلام \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "تم العثور على {number} تصنيف" +msgstr[1] "تم العثور على {number} تصنيف" +msgstr[2] "تم العثور على {number} تصنيفين" +msgstr[3] "تم العثور على {number} تصنيفات" +msgstr[4] "تم العثور على {number} تصنيفات" +msgstr[5] "تم العثور على {number} تصنيفات" + +#: 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] "تم العثور على {number} مؤسسة للاستعلام \"{query}\"" +msgstr[1] "تم العثور على {number} مؤسسة للاستعلام \"{query}\"" +msgstr[2] "تم العثور على {number} مؤسستين للاستعلام \"{query}\"" +msgstr[3] "تم العثور على {number} مؤسسات للاستعلام \"{query}\"" +msgstr[4] "تم العثور على {number} مؤسسات للاستعلام \"{query}\"" +msgstr[5] "تم العثور على {number} مؤسسات للاستعلام \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "لم يتم العثور على مؤسسات لـ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "تم العثور على {number} مؤسسة " +msgstr[1] "تم العثور على {number} مؤسسة " +msgstr[2] "تم العثور على {number} مؤسستين " +msgstr[3] "تم العثور على {number} مؤسسات" +msgstr[4] "تم العثور على {number} مؤسسة " +msgstr[5] "تم العثور على {number} مؤسسة " + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "البريد الإلكتروني" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} أضاف وسم {tag} لمجموعة البيانات {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} حدث التصنيف {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} حدث المؤسسة {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} حدث مجموعة البيانات {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "مشاهدة هذه النسخة" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} حدث المورد {resource} التابع لمجموعة البيانات {dataset} " + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} حدث الملف الشخصي" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} حذف التصنيف {group} " + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} حذف المؤسسة {organization} " + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} حذف مجموعة البيانات {dataset} " + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} حذف المورد {resource} من مجموعة البيانات {dataset} " + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "{actor} {activity_type}" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} بدأ بمتابعة {dataset} " + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} بدأ بمتابعة {group} " + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} بدأ بمتابعة {user} " + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} حذف التصنيف {group} " + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} حذف المؤسسة {organization} " + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} أنشأ مجموعة البيانات {dataset} " + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} أضاف المورد {resource} لمجموعة البيانات {dataset} " + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} أنشأ حسابا" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} أزال الوسم {tag} من مجموعة البيانات {dataset} " + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "غيّر منشئ {pkg_link} إلى {new_author} (سابقا {old_author})" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "غيّر منشئ {pkg_link} إلى {new_author}" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "تمت إزالة المنشئ من {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "لم تحدث أية حقول. يرجى مراجعة فروقات البيانات الوصفية للتفاصيل." + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"غيّر البريد الإلكتروني لمنشئ {pkg_link} إلى {new_author_email}\n" +" (سابقا {old_author_email})" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "غيّر البريد الإلكتروني لمنشئ {pkg_link} إلى {new_author_email}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "تمت إزالة البريد الإلكتروني لمنشئ {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "تم حذف {resource_link} من {pkg_link}" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" +"تم تغيير قيمة الحقل {key} إلى {value} في\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" +"تمت إضافة الحقل {key} وقيمته {value} إلى\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "تمت إضافة الحقل {key} إلى {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "تمت إضافة الحقول التالية إلى {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} وقيمته {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"تم تغيير قيمة الحقل {key} إلى {new_val}\n" +" (سابقا {old_val}) في {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" +"تم تغيير قيمة الحقل {key} إلى {new_val}\n" +" في {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" +"تم حذف الحقل {key} من\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "تم حذف الحقول التالية من {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" +"تم تغيير رخصة {pkg_link} إلى\n" +" {new_link} (سابقا {old_link})" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" +"تم تغيير رخصة {pkg_link} إلى\n" +" {new_link} (سابقا {old_title})" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" +"تم تغيير رخصة {pkg_link} إلى\n" +" {new_title} (سابقا {old_link})" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" +"تم تغيير رخصة {pkg_link} إلى\n" +" {new_title} (سابقا {old_title})" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"غيّر مسؤول تحديث {pkg_link} إلى {new_maintainer}\n" +" (سابقا {old_maintainer})" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" +"غيّر مسؤول تحديث {pkg_link} إلى\n" +" {new_maintainer}" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "تم حذف مسؤول التحديث من {pkg_link}" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" +"غيّر البريد الإلكتروني لمسؤول تحديث {pkg_link} إلى {new_email}\n" +" (سابقا {old_email})" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "غيّر البريد الإلكتروني لمسؤول تحديث {pkg_link} إلى {new_email}" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "تم حذف البريد الإلكتروني لمسؤول تحديث {pkg_link}" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "تم نقل {pkg_link} من {old_link} إلى {new_link}" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "تم تحميل ملف جديد للمورد {resource_link} في {pkg_link}" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "تم إضافة مورد {resource_link} إلى {pkg_link}" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"تم تحديث وصف {pkg_link} من
{old_notes}
إلى
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"تم تحديث وصف {pkg_link} ليصبح
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "تم حذف وصف {pkg_link}" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" +"تم نقل {pkg_link} من المؤسسة {old_org_link} إلى\n" +" المؤسسة {new_org_link}" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "تم حذف {pkg_link} من مؤسسة {old_org_link}" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "تم إضافة {pkg_link} إلى مؤسسة {new_org_link}" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "غيّر خاصية ظهور {pkg_link} إلى {visibility}" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"حدث وصف المورد {resource_link} في {pkg_link}\n" +" إلى
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" +"تم حذف وصف المورد {resource_link} في\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"تم تحديث وصف المورد {resource_link} في {pkg_link}\n" +" من
{old_desc}
\n" +" إلى
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"تمت إضافة {key} بقيمة {value}\n" +" للمورد {resource_link} في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "تم إضافة حقل {key} للمورد {resource_link} في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "تم إضافة الحقول التالية {resource_link} في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" +"تم حذف الحقل {key} من المورد {resource_link}\n" +" في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" +"تم حذف الحقول التالية من المورد {resource_link}\n" +" في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"تم تغيير قيمة الحقل {key} في المورد {resource_link} إلى\n" +" {new_val} (سابقا {old_val}) في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"تم تغيير قيمة الحقل {key} إلى {new_val} في المورد\n" +" {resource_link} في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" +"تم حذف قيمة الحقل {key} في المورد {resource_link}\n" +" في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" +"غيّر صيغة المورد {resource_link} إلى {format_link} في\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"غيّر صيغة المورد {resource_link} إلى {new_format_link}\n" +" (سابقا {old_format_link}) في {pkg_link}" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"تم إعادة تسمية {old_resource_link} باسم {new_resource_link}\n" +" في {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "تم حذف الوسم {tag_link} من {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "تم حذف الوسوم التالية من {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "{tag_link}" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "تم إضافة الوسم {tag_link} إلى {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "تم إضافة الوسوم التالية إلى {pkg_link}" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "تم تغيير العنوان إلى {title_link} (سابقا {old_title})" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "تم تغيير عنوان موقع المصدر {pkg_link} من {old_link} إلى {new_link}" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "تم حذف عنوان المصدر من {pkg_link}" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "تم تغيير عنوان موقع مصدر {pkg_link} إلى {new_link}" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" +"تم تغيير إصدار {pkg_link}\n" +" إلى {new_version} (سابقا {old_version})" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "تم حذف الإصدار من {pkg_link}" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" +"تم تغيير إصدار {pkg_link}\n" +" إلى {new_version}" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "وسوم البحث" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "إنشاء رمز أمان للواجهة البرمجية (API Token)" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "رموز أمان الواجهة البرمجية (API Tokens)" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "لم تقم بإنشاء أية رموز أمان للواجهة البرمجية (API Tokens)." + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 الآخرين معرفة من أنت وماذا تفعل." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "تفاصيل التغيير" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "الاسم الكامل" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "مثال: فلان الفلاني" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "مثال: joe@example.com " + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "بعض المعلومات عنك" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "اشترك في إشعارات البريد الإلكتروني" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "صورة الملف الشخصي" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "عنوان موقع صورة الملف الشخصي" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "تغيير كلمة المرور" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "كلمة مرور مدير النظام" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "كلمة المرور" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "تأكيد كلمة المرور" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "هل أنت متأكد أنك تريد حذف هذا المستخدم؟" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "هل أنت متأكد أنك تريد إعادة إنشاء مفتاح الـ API ؟" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "إعادة إنشاء مفتاح الـ API " + +#: ckan/templates/user/edit_user_form.html:59 +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 "أنت بالفعل مسجل الدخول باسم {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "تسجيل الخروج" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "تذكرني" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "أنت بالفعل مسجل الدخول" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "يجب تسجيل الخروج قبل أن تتمكن من تسجيل الدخول باستخدام حساب آخر." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "إنشاء حساب" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "إعادة ضبط كلمة مرورك" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "إعادة ضبط كلمة المرور" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "يمكنك أيضا تغيير اسم المستخدم، لكن لا يمكن تعديله لاحقا." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "تحديث كلمة المرور" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "كيف يعمل هذا؟" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "ما عليك سوى إدخال كلمة مرور جديدة وسنقوم بتحديث حسابك" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "لم ينشئ المستخدم أية مجموعات بيانات" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "لم توفر سيرة شخصية." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "هذا المستخدم ليس له سيرة شخصية." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "المعرّف المفتوح" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "هذا يعني أنك وحدك تستطيع رؤية هذا" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "عضو منذ" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "مفتاح API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "أعد تعيين كلمة مرورك" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "البريد الإلكتروني أو اسم المستخدم" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "طلب إعادة تعيين" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"يرجى إدخال البريد الإلكتروني أو اسم المستخدم في المربع وسنرسل لك رسالة " +"إلكترونية مع رابط لإدخال كلمة مرور جديدة." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "رمز الأمان (Token)" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "آخر تاريخ للوصول" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "الإجراءات" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "إبطال" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "البحث في المستخدمين" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "تمت الإزالة النهائية لكافة المحذوفات" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "نجاح" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "المدخل u\"{parameter_name}\" ليس عددا صحيحا" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "الفعالية (النشاط) غير موجودة" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "غير مخول بمشاهدة بيانات الأنشطة" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "تفاصيل الأنشطة المتعلقة بمجموعة البيانات هذه غير متوفرة" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "غير مخول بقراءة الحزمة" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "غير مخول بقراءة المعاونين {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "غير مخول بحذف معاونين {}" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "تم حذف المستخدم من قائمة المعاونين" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "غير مخول بتعديل معاونين {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "تم إضافة المستخدم للمعاونين" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "غير مخول بمشاهدة رموز الأمان للواجهة البرمجية (API tokens)." + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "غير مخول بإنشاء رموز الأمان للواجهة البرمجية (API tokens)." + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"تم إنشاء رمز الأمان للواجهة البرمجية (API token). {token} {copy}
تأكد من نسخه حيث لن تستطيع " +"مشاهدته لاحقا!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "غير مخول بإبطال رموز الأمان للواجهة البرمجية (API tokens)." + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "يجب أن تتكون كلمة المرور من 8 أحرف ورموز على الأقل." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "لا يسمح بإعادة التوجيه لموقع خارجي" diff --git a/ckan/i18n/bg/LC_MESSAGES/ckan.mo b/ckan/i18n/bg/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..644105b536a6f27cdcb61c535e76114537ea9fb3 GIT binary patch literal 80241 zcmce<34mQ?dH;WgO%_2`Srj+~LMD)zB1|MUHu&TyP~w(dc8K`uh)XSMa~U*Mh$SMPD1liLTwiox%OV*MWzCyMf1m zdx9r`{1=_cKdOH#iq7wXdx5*09!2|t2Y_m~9Ta^h zfqQ^6K+$s+sQ%9n*O!2MbG%E2|0jT=a~8M{cpiv|qPK#Q+btj>jGhBe0)Gx7x~P426dem*0v-e2 z07_1efK$L1!A@|`GyVQdQ0-g}s{Eax`1To4^!)@BJ--CS-#>yH-%fL)=qPX>Q2ad! z+z*@w9tK_viceR9(#yAl;=}tvjq85!P;e9Y2JlN@1^h9nc0PeJslP9SuqygGcmeqO zdEQ?E6hE&7CI1^i(RB+LgB!t}z^$O#`825hzYwm!0;=A>fTI6Q1tC^mdkZ- zP~&L_Mb~^#bYB9hzY%a3@On`7-vz3@y8}K1s@&6{>VH1m{|+d*{x>Ln_*1xlzU7loCv-I?gGB%Y}e<#K=pqxsQO2P>hDxg^)3J< zr^`X<#TroZeh{1iejMBt{4pqcehG>{J1%g0+6Pqmqd?Ks8Sq^2HC(R(Wv_#v#(NW} z_U-}?0Ur$ap97`WFMtPtJDlV8c@U`ayb)A;M}ngF*l>L^IGO9yLA6@|)lUiB8GJjq zFL)Cueb@-@4&D!{orge`e-hNVz8LUZ;9{=-BV3<+u8(sbsPc)G!u=0`lEb~A>Td>B|1+S!vmn``Y0%UeH2uCp90n17XoerC68}{D*w}P{aa8| z&|V9@{3KBIJ3+O75~%X0f*R+%aD5>td%6tV0el;%{;vT=_j^FmdpoFh?hp4r4658i z;rY{`^!Kx%+WRgz5&RPQ=v@eEoJ#{<3QE4c;N{?7gRcYs1Jt;F6Rvky;{J1AQ2y^^a4&Ev zsB&GP=;;U5&zf-k*Wvm)a1ZXk6I8w1!9Bqbh5L_zujTqVP;z-5ycYZ#D0yCdzPDcl z#g8jN&D-lijpxaLp9V$G^Pu?nO;G)O7gW1H0Y%5JL6vL6NsHdsf|I~~LDic9s@>V3 z%AE`D4PFR}&R$UM41p@Y0o)P10TdtJ3CeHX7M_0$+?VS|!u3CaYUiIp(eet!jOe18Ph|L)7Z-TlG+ zxIPk8y_3Oxz&xn&tOYfm+dZBsQK(0;IZJZLD6-@g-*{opvqkWivO#@ zqrhvxlfVyy2Y~+u%K!fgJQ>{QBA4?5a3a^sK=JV^Q1o37YP@%V(ua?NqVF+K{Q4v) zyRLw$|39F{bHJOO{u9A{xjsGM1)z-^RQa`FC%6$L{WpTgfHOh)(_T>hyaSZI-U`Ox--YK- zgzImC;_J)c6!73nU4CbQs(&$fAlLi<)q?ELcqzZ9N- z1(Y8D5L7!q57#@c@OJhBRsSGR{68GjxTb;{@2Q~ZI2)8cT>@%ceW2)F2de&i1AYLU z&h>qu>VE~4zP<<^2L1*V{ja|)irxgqp!oHcfU7{!y9QLdSA#KlBPjd%D5(2i1}B4G z2gOG%21VCypvG|!D89Fc>rPPhW`+CnK=pGjD0(ggWAHLie7ZW|dqLwjsP;Y%P69Uv z{0?{u*E@Il_-286erdq#K+*RQI01YdJQVyED0%$`l%4$nG`@6u|1qd~$ANDEPX#sp zi@+nm_25C^J)rvA0xkky4ELw@xIa7_Jc0ZD-~{k~@EGu)z@x#RfvSIC-u>+90at^^ zasPI38u*2PzXzvqJ!Pf)jf=q!u5Sbn2OkHI1-}kT?mP7Qcn=1p*C&H-11|t$@C8u) z{1Q|@N3U}Ixd=Rs>vw<}|7XFS!S4tB5h%UCTM z`uSXV{xeW??%nVGO$9~g1)%sg1d3nl!PkJ-g0k~>g1dlsfwHF$f_s9Gg0izug0BTD z;r@3(`M3W9RsPSQ%DryDuMY#&UMILacp|tbcm`;E4A=dj+F1umZa0JHg13R9`$bUv z+M(#{z~jM*Tn~WKquW5~`)9-TA3*VA>Y(fEMc`zvuMfBh)boD5wLg9n0lgBOC2gMHwhSF)x8 zuL6Guei0OZ|7pbQ{}Pn_?RAy+GaVFvmxGe;T2Oqs2UP!G2HU}xLFwC(>s&7ufbvgk zz*E6nLCNDw;OXEWLHX&^{@VMw5R@KV1-=Ws57fA)u6Oztg6D9(4iuk11B$ONfRf|C zfRe-aLGk(L;eOlSxV&};#gBu*{lV$r8^N=}^KMXntrVW$4vLeVg0i z5>R^314@6&py(L^CC{q^-WHyJ7?hnq1nvVq2CDvNz{A0>1^jimf4~NB=O|G6ax!=T zcs8i|Zw)vIYP{Eg;>)ez4&dFO^yfZMeEA1(H}GjtGN*a zdif48=6W%x_6NiLzXR3I7Vr%4Kfy!6$!~W$=Y!J6<=|o925=|v9#H&wAY4BduAdCo zpAXkx3fKPzN>9HJO5gUq&fC2dJd5iaLDBzZa2dGk_2D@veY!E=gW!%_e+rxreg@nL z-0KFXXFpKaM+R&U*a2>B!`Fct-_LJ!Ilb;3_$aOq%r{7D?1uTN{&rgDo5d8qe6r=w8 zyuTlV8s|?z>G>Y_yPh2e%D#>T_XFpECxRD&D)%n%4dA^XE+%>!JQ_UdgI?}ZQ1i-r zLFxNHg3`OMffK-g2WNw?VX*sy3&6?XTS3{yjiBn?4XT}wgNJ}Gf-(4eP<(sigI@1c za0=IXP|t4-_$WAw>#u@pf4>iT|EGbfe_6PG8`#11{Q)bW`ukJBgFoziIsrVA`{#oi z|1c=Iz6ZPl{5Y5ckN8LwtpKkD`@!#nZvoH$XcWB}{Cltq-1+~p_5oLc^6T3`m23YP zw1L-xz2LutE5Y;r-t+K}g1d6P%R}yWUkC2abvr0|9uJ-aE&-1Q?*ylVp90SUe+3=^ zp85}z1uq5F-h043!4H7*!H<9^gFgfRUmNXz+~xa~P2S&b4`ahT-#_5(X|0Q3j83b@qZ4KJbw&!f_pt4^aE76%Rt?~4pjNaK*{6l z;d<5+PWNTtiQK;eRC^x=mx5me4+IZ~N#f_ppycy5Fb3}e)$TK(^!&TvN#Nd3I?e|t zas4--^x{L{M6m5CVp?z#D7oDQ#^8gX=>80-e*O#G4czq;thK>?!6o2j-~r&npy>W= zz(0bfKTo?}ECG+>`P)J1>l0uHc*rw8|D6qrzl%Z1u?v(Oi=gDb0X!eP8C1EKz{9~` zh3ETkb$%TQs@{B1{CG2{aa;we|9e33%&3ub9%VG3_P9d5~zBQfTI6d zQ2l)q6u*81s=c;<^7i%yHI6rcF*p^J-Yx+pzbnC0!Hy%2m5Tn%0c?(;d9$4#L6xetuN3aGf_=iuew z5uf+_e+x?P4}mkl&x3hzr!TnwyBw5U?*|VCw}A4KFMy)&MQ~T}C*k^kLD9S87u^pX z3F`VxQ1o_z6TuCj>VF7C)X}4$^nA@fJAWSn_55jYBlvl664?8^^XFzzdiNNp{=W#S z-LHbXgD-;`@6KQH_D%#7heL6uts9synwa6Kq}y9ZReTflkXSHbDv zA=_L&=YhI^11Nqx4@y424!Fk)-tG|r=YZ0iJeUXj0=@vM{wZH^ybL^@>l?v2;OD>& z@U>rcoB_U>>s6rW|0F0nzXa|F{urD9{t4^^kNBF?u>_pYbqPEfd8yZPfp6me zKY%L#pWvb3pTXn6L%-|eSppu-^FIt`RuuLX_2pq@Vq?hXDo zI0XI?JRU5)yb2fq-me+ll(_3r=S^TDB@^yEZvA$SgWGk{ea?c$A3CM{t7&X>(!w6^mm}@eG{Anz6>4)PWX}6n+=MOgP`>FZQ=T3;I3Rh z1&Y2;gW}`YLGfXaAA9{yP;$K#JOI22RD1V=;_t^nm46XD2Hf$#T)v&);aqotqVF0| z`u+f@`Y(Wz(@Wr6!C!#V=kx#D>0AxAbA3Cg@jM5v1iuT4KWF{KaRsP;uLRZJ2SM@W zG4QXz{|)z-{?zH}0mc72K=JFLfL{Y&%k>{Y*~RYvJO{tnmy?(;Jr=jmWC*NXx^4nD^9VLx}f{t9>|*GK-s?O`RTe(nKhf?ERq8r+NP z<9_LUnGK5m%fYGOt)TqIr$F`p9Z=)n<5#Y?tH3k3{`-JG0sn^U&R;wK9sp%6MP0d==W}KUkBg9^^`w&e>Z?Jf&2maale>M0zu5STXgZF}6 z;A^9{=rXVfE&(f`=s%*Z&GOafgR{8a2+jci6`TnkxI>%yqh+A@^nUO(@Fh_69KK_l z&3jjXy8jSZ1pf;>8@yzvHXGLi0e=9V%l)Hw_V!Ak>OBRX4E`2;6F6;`w&-H;a&QIs zkD&TL>NRcVm-;}B<0xmw^+&>%eK?M?m?%Zv~8Y_v=ZZ^nDR{BzP$(d0Y*i0^SX(pKpMj;GaSD-?>Ly zbQd@WJPUjgybzr9+P3Iw@NYorXS8RV$!%f4O#%1YtIhHOYe3ceB&hNSz0UcX2hZX9 zVelgG51`5|+uQl}v4Fn=7jS?6J}$@ifR}Rp{ct^d-!_Y{-U}|}{_jAww{Sm~%Y)!0 zT>lxATrSz)+xZ}<^1lWpp9KfF-hBYfbNzcze9pbT&FtiQQ1xE|rH_*j^!gWrYX2cn zdb!&{ZP6O=Z14#1S@8AXOQ7WZTTphi+reJ{^`PW)IVk>*fRe{YK=oe%4+nn@O5O(? z;?GY3)!t>G+P?xk6uc3XU496Z-}qNhbRYJHHuI}1!8dUI0dNZVIH-Ex2i1Pt8(p7{ z0%cdr!Nb5?LFwnipvwO(y!Y<*~hoRcY~crwnb&|8Bq2${irruue}po$Mwsg>~PJ*Hp?&m1GtFm zV~=i&)`C}ovd>?DCxBBXxxdJP+qk|9)c6M4U49<}ALsftlbyd?L5=r^pzNjX7`KbV zKwTdXN^VQS{S~0}Vh9w!9stGvPlK|%osVs^{OV*-?fwn89DF}`1^7SUFqoU-^7#g+ z`RA9Q^yP>S@2?Y-o}C6tPyQN|A9*0)$3gY~RCxX^Q2Nu>>39Tq8rQSIgTc3flH>cs z^G^l*9w`0YVQQPL+m8Yz_me>R^<|*+?vj8dQ2o3Elpp#iD7q@3^z_@H{K|iWYPW5g z^WjKvGS{=fw}7j_#o(tw(YfDr=fnBn8C<^&lw6+!Rqtg`ay;s|Hd`mNyoxfASow$E4_&RV& zxV|i0=fm}IxV|b}-vnwNycxU!{2eI&cJ)bZ7T;%1EY9lad@DIe@pR%byp1MOC#$iL=(&L%!%b$ z!r^kh9FG)-OL4wGSLlm#Jw2s-xf~Z(>TW!c&-cVb#h82fAul(WE0@<6OFf;@w0LfA zD93|xG`(|LG;=WS?&INU6Y~9oLn9MrEn8J6$30#oUX?4y14X->63@)Vt4jHmr%jmH zK3wXXT%Is%?Wz$T52^pST$8%&Flro|79;2UGJs1$u%lJ^8-;P(GotJSB$6 zwfR2SP>%a^1G(OOTrBnG1`1c@h6=@jxIf?Dl`oa8qj=_E+R;23ES4I3vQDhGzy`YL z8XmHdZcqCQt>3!#*A((=V}@Tt;-qpsSSqZ^)r>0XQp_EoQbNqQ7-r=6mWsoJabW;G z>Ni%rVpcUBiiA?i_ZQbxWf89|75iiBw_GpRr3Hq!tT5D<&#=U_4TTd&hV(2huH=F{ zbIzT;2-?d-xqK}MVH;hKG|EjdsV(4Qj2jfrj?7=V4Lw3 z!-ekEarba}h`}=w3Seui3j@84q!<%&z43X)-eL>Gx< zU;ulLm(j_q(D5p~OVY1?r`^ivb29&K-9;{I3T2sfBM;`deC8}&T2Bw!mW#XkiU<+j zQlNqRGrNmD`B_Kz4V@|(9Njx~>ddKjD;`3YRLYwoh!>sl0{6me3*}WJ$n~Od71T+| z6B)(*#S%I=+}Ae(`S@xE(4WV>W!T+Q>@J5<(@_bPJ8i;>uD;yB>It(-5Q2tTqm&z_ z?vUwiQ(>G9cSK#2p=*}umPM$w9F8d8lV4dFU<&EWF`Eq8G$hjdi#@}AW^So!N@Z*w zl1yy$iPgJix?y7seLdgX@cwelBw$1r2lE3RWef__mS2kpi>0AlpA33P-YQk5q?sHB zDD%XHKvG9>Wd{^>bQP~;-dQ=cHU}%q#lB(l_hvf%xz&(rZRfgi66Hb{#;xgNxSZ3^ z?`?Q*+%>{*i)#wb$YQY%dW$g=Pd?Y*2MglC;V#_6DmXJGF0aBf=m*TP3f`EwX5F+G z2D~7kQ=}5OVkRP5pVOGtx8k=HNoLS0URp=|w zR3jlh#j;V-Rib`Ru6pU!=ME2PG)Qz&9->M(fS!yTg7MS_LfvAk%8A3>g+W-3UqmsO z%Zw>Yr@)vg@oc<`)FL+}KC3WbEvr_(ubf{?SG9UDqk;DB)wzLA^bEQKThlwDeP&lF zo;u5Qdl}|FN&`bYZqka~&NOvaJ~uQ>U>i&A6-Z=h$eh~Ke`bMqsH z%ZjV>13XuBA*ma7)T4U)dR(~12f`@&=j6<)8boA6nU0`e&3(3$=l@` zxs0VY`BkqiNXBvW%a@`p3nulW7=3-kwXmtS*o^9>Xs|VG_14hHAl>vZZq_q%-3ILU zS%p4q$bQb3CfP4vaM;g9tbHyBHeojwXBKyMBNtaIii>vB*qIS7D_*;=rBuRmyHRsN z1yg5xBKM*n1u+)~>a4E44l65)v1;{ySx=N~PRd>qkw&u#wU^7<>{rq+R|E09QVE4# z+}%A~!udqAF;1=I%eXrGp}AYCTD$g*JK}Yc`TEnxtYM?tj`F@}-i``c^WKhX2^Y4b zimg#h;$sin%8KXXEGn%*Q^r}^nKaJA$w)^jKA0~l`o+>TIhf^+QkoDjKafY&d}Ser zu{u98Y6azkYDTTO5(_TKYn4bSem1sRERA?sQ>hluvOWjVV3kZUmSpQ@ zu`raMl4PDV4Tn_&Tuvr;%OwPEmOI@E*o?L+r|d~#EWA|I0!soQOk={!b~^>* zCrtPClLc`^?|m#h`xIE`OcsT*IUeyep({CqtjKWt7Vr-?I z30+_T%X$9k8|Jl}IbmVR4;h6+sXxJZuB98(%OxR`n%=lTSyrxw`^eL2-eY-aX@Ln7 z%M3i}lt7*x-WL^!;qmLozNDI_zXmUGo8=+pJ_fwK(Vl`CFU&%T} z@sCW^RC3?O8JssNwV03uV3ueQv7Sa z`YR2++*Gv9VGjp~%Uaiv?Hw8}&xqIgkM*7QP&%v5<+`;a(UoVN5`0BkqOL*8mXk`h z=(V|xmJQceA2H_|&#HH9{$tmpCZb{aF=7Ni7+s_bE+wU4{w>ycEdNsPv>5gB?t1(5hFeWhtGl$~7VsSOuJnSbf z59a#Qi8{BYh@aBB%y@38!OSAH)7wiTA-^)8CmLuyc~bV0+(C|V5a9+vhesRp*wX2V zSd3}zWBIM0wk|727E1fS@x=DL0_zpZ)lLqN*n?u%po=MHhL-}Ay)_pU&AT$EJmZY` z98zJvx~|?^LLq$1yekPCt{JeN;?m9Co zMeZ`(ElgOqQtn~>1XB|whkFMKia3Z15+km}TPw>_g81YLo7^ zf8s@`xBt4R&_gm~!N4GEXFVsy$D{d+md9t6NJ_BsuI9Gm^9s1dGLMV=Cw3;xh~}4a zgRA^sXT|(dp@(a&DDB_4eKvB7r%w)-qAC1rbShpWEP`4+w&ixNk7=l9B+g4IOzS1w zE}T_pyt)?lM%Q9O>Ag-bRF2M8Ajo*|FsO5{OPcGvte9A{6rD}#$^MzTd_ZX^rai?k zR3-Or|H$?8W04UT{)Ixh#i`FEgqSR6Y~dqVzi>;`0aC~T@$<`KUa7Fl2@<78L98{)r* z2hmkM2v!x4xs@Q+vL3iKd@MSVyJ8z=(L#L4aDRX}>uy6x;J_ro8jxakS|VCl7#JSnvOt@-feW=3Os~*% zU13^yUr*GH&DMYwa@hct{g24mO9gBxLGr1T4S@|P@&XLyqP@5cPQ0Q-i_Ie z100zLgS4xGCZ@M=B(63;;>sU!Ggtw?Y670R>vFV6GmieT@Cof0=w(X6!AMVVS?Chk zy+Z$RzgDEp3fdCW3+Aq@DOe5gtzIUux9ikzkwEZ@1T+&1Ro4X(oQm;I)53|9n^TtE?;Bfc1;Czs=1kbmHZL z9Xi_QIeYzalHZLM730L1m)I_=iqI?z2qp*Hq(py0vco2%@Mt7#!K$<-Q^oQjo!oH8 zrljg2DLoGXv*ed@5kfO938F=m$@YAJi&qFA`yNbz7u!?>Fky~gWA zery^iNuNAP6XlVNCe8sUGOx0*=58h=Vye)F0#vfa&APOIiX0z)vg-6umTv9Wkwvof zW^y#GFl6;S8)(9yU}3PJR9H=jP^IDsb)-WV17@@2BMC$@6U8E?4bK9h@E5ai)D1u6 z6Mni$_=P9Ut}?}>Sb8b-x5&xze5Nt=kCR+2*__p}Po#Bisu69g8M`eu6D=l&Xpy-z zEnZT`RlSwye5O>wqQ%;%SCwW-kHp-f#!~4W1*S>4xP9^5uJa~0DZa!e8Dj5#<|Q&< zJz8KYVX9~#G3xdubLS?t7tDB4*4(ZOud~m}(PFHx#6qB&C}Q+}uQt7txjht%dFhRsiyA&nj+O*dOKgkj zj5*4}!t_}keM^#sJ|{iXMgIyZH)}sUm_~`;PG-6^`B57D|LcCu+vj z!n@&lxS!p>o^(0Om-3{BqM-}RlX1*&U?`Mel+gtwA1|@%aB+x?9PoJa;?a3r{mTqBb z`|4cw)44?uLbQ?muo-q?o7~h|?qbbliG@*3_iFMSx@S4h^as{F4Fj$-_N16c3{?k~-fwhy z>7yp4N&K;dVe(1~wdk*`5`(136*Tu0${e#3qt|e3A-aGqr)VkJ2m2>JT8llD!H$yn zEt9PO%z9J5!+hvs#nCO|y2R>6iZwv{<10D%RZ;P8`^vSd!Dm5XdGE?q^|BuT2+g)L~- ztt4GIv_f&+dM~q>t*$uurnvF3)&kK|owgt=WJwQCgA9h9BQv$N`AMX@vJRMqxwdww zN#X=XG0zUDo#cu$M&U~5q@$(Uxa|X2wGad8fCxfkHuZBk3Nyu23Y3Vu2I?bev#M&` zywug#A#~ zaayJvEz^z(|Mre+h1aB9lLcO(+Fr8U%JmJhKp@? zlxdT?;$RPZOF0sU>VG1V45>w>*jU7g6Pf+Pi5iuaOM@sc*u0!pn^qyygfJ-q7e*t4*@5r4^_`-9B*lKPE=kb2IAEWMIR$}QUY zEv5)f!!oe+AXGT4k-jouQ>Iq4aDa(T6uUVZ!$L^NX4Lxhf##HTg`V|rFWE?@M~iPm zZQD80iovF^V2#OY+V<69n2m^|hJ{{sGYY+{$Z!u%(Y}%n5wN<` z(e0d4E@Ysrtd`LH&rU}T3{eJuW?G_EZ&=Xkc&qwvR<>rYXj!G&D4yES#q{_Yye!Kz zeNZ9m{*esYYm9IqdDc8rVR)d-OslM;QnK#Q%&x5iNh=h#$lrE|BxqT*?Hi?oEhPbm z57>)mcG{|A%nqH#DVeB_f(^|JneEA%=Q>MLCK^%(EN_b-R)R@lSYn|q3zlSmI+LUD z$#1&_x9Wi69NF~4x!U3L6@;~Ck2tVwxxErE9CYh^4w}cYA#L!4+0E?B1kVPfW=K4N zN0NP=@kN^8wOeb4Yjj|=yEuqip)y536f%Ob>Gi5|5&Puj3%vy6g!gmS8!MI?CRyZU z3GW56?99F%hy60Ds@l*Sd$2Yph*w0t)(ksj705^wi+VT9c)O~=u_)e!8}SN>a4m@) zCWnxYL3dCw$)lf%e}Mdnb>Tc98K~ofW*{82?;!ug>nQSKw(5tsYRoeGIf5yzsI4}R zv6PIZt57sXbN1EV)r$N;$ufv#aY6TLPJ`vaVC>TYdn~K9pK1%IWo&oi2TCIrVx?&m zJZKH;(7l|SaI{QGaQzc6CP&1sT|QcVuIt-;WsU6R2G2U67wwDZv&7Oa5&xSJEg!J6 z5U^WuYm)2Y(ru5?_T;bZ%oZcb1B-me+#~4BQ@zz?7AH$f;%l^=;Gx=6h}v59;MLMf zHAy8A8P+M%M!-A_N}nw(c;W{Gr6}UEa}o~&l)9{7bLUvazB^o5VMU)37gRU)rHzCh0T^; z(BhN`2=ny9c9sQ~=U4a-5$^}AmYWsxkFRgc)oYK&1rBpG-DyTs7{x-2wI}g&IA(x4 z*h;|8`uh?&QiE(t+l*1`o6H8JyJM9|^XZnVNh*YtW{pM4D+W!`G;Ic!oh?FNt*W|1 z9j$|KptY>Us6yzfB}Pa2%sv zC?LH@?pv=DS(~h}wA67gqQtGgOsfc;Nn69xKS$@t*a(S?9q!>M^I_L)t~}bEujcv>)Z@LOYOhA*Hk{5U{!r zGREPG3w7*X|0J`JUud=D?6GI;P}xGjE)sTlNq-9~{LY%W@8t1-_s@CzcW5NK$Ujw( zpv0=xY;=)w2b!Jd+sTB}t2Y*BU4G_%m@&(lTlW5lU-M0o>bs=6#k+mVw=5q#J-Rpq z0!h-Vn#a;>ipf)Q1Ijxh$5ziFI9bi$cBFgmAv!Z{G?vNo2PLg`CvJx~3)L8504d?- zkD)VLb8V((?GV-`aSms$sx^i!gwhJt1F%lsgKqK0-9T<$^jlK~ruFlFm8wdmNeFO0$iLMhiO|!keBWR^ zm@jhNja4_air%m~AJN_&CxVifvT&pcIqAqPZ%PQt3)Rr9bq|d;2BFf#kWF?ywJ6=* zQ`RHPHmNBF#U~}`h>wa?vnffDdT*_LPk(>d=}|NFWojw5%?5?cIE?C9SCy%*O4VDk zDNzmd8CKBF5wWEwc|F8?ZdyK!G-b_rikcG`yP!FBv+t%o5A$NPyn%gL%6vhl$-raN z6#ueSwIRJBP5w?w*u`N$UB zwKJh%YZ1m;+D^C0?pZ=2?52wM+TpYACMiuFHa}7UX$(ytNcAnH;a-npHl^ZPX29xf z8eR+MO%jdI-RdaC) z$1(VhQQy!iUdc-{tX3?1y&{}l=_CU&)fA+&fAIJ?Zs$EE`}~lSXVn~--U*)Es(L|Z z`#Ucm#FoaYeR(l|My6+Lv45l^5lp^!Mm&w1GvGUDZ_F!+B0F892#!7QJ~m|RL_L8f zlV)VD$p0-zQacl)@kT<_9eo){P3Y3U43nY3z7iuHHAXgh4t?neBOHxq*li+-(zn9W zJX%CzhHr_iDj;PdCc3m6u4(y!Zu>?~ayRT7q~#PdFsmdASkEmzw!I|k^PW^T%Bs02 zN4EU2QwoX~t3Jfe;B`iPbwnRbid=7pLzYd3WdU~*_IqTkE3J}!cRyOkre~2zJ}g=A zGD)BuuS};v#%+8h=53{r7n=w1=P# zb&YUlXFbPefoPq@2RZ{#UFSEwSuN_h&$LjI3SF09KQCI>%c3)MFu!mn*X!p;>sD89 zo~xUy*RPJ&_2<))3w5)9{X+f}r5#enlZL1`SbW{>aPYiEaf|t@=Zxyx43%4za@p1O zYd0Hu%@iHAwK00E(S^E>v(Fm(&pw2J#_zYLL(i5RgBlJ}GF|)Zme$YQL=O^a*bG>6 zwy@j5RGlzT2 z9m|R{;&}^aFF5av*>mS!FmLJ7-Ipw0)-gwmQqnvfb6J+pAZ|KtTF11LJC2(kPoF;H zgyWCpdKv{gIN)es`KT*5?M?CY6K702`Pgav-|l)Ru7f>m%e(P4Sh&U4nfl^6@ys4> z4)>qY%Nh7SMM8YYjlQN+#b3Xh5qI^b7ahx3zs?|T?(5YDLC=_Xl_x8oh z>@&&Y)wXwNcs3f<=hs$f+f*IJGuv*41!4mOOFyI>H-1UEa+k)s?Pi#^m9a}4@R)zC zRYnT$w_PLB#0bAH**VX)CLicbKDS)C1zMhl@o+`l6}Ko2*D~J4x2 zrMjW=D8(S&xO_b%+?;;9G9BZ+85+ksGSSj(aH9_eF1v>O-;5-#eAv0rQaHx7Ct!-0 z<@N*THksi_#BN)#%q^oq9HTLo%9{{Z!x*dDEDI0DX$`gN#YBW|ryt{f1!~w#IH>Wq zw@Z1=kC-;NtExPTJ)l&TE&qS$+gL)%GHj}8`eq~ex+c~l+cKXO3@05(BM)zXe4%i7?(^z)p>f`Uz@oK`YV6m~k@$NVDR~Bi@8uRQ5ydmHT+SrSgd^{ddsF!_?IL zVJa=BLa%a&^36{LZpn*mwf4=L)pyWOWWcZR$Y@KMpkdogay>j!`+--FLOb&l8l>4z zUeCsei@KK41lxMpW`!r@2c8vy5Vcj!Ys}O$7irx=nOhV$fBQtT;CUQ_h+;*c4MctZATM6=R zC^Dw&->f*Lj+%Fk1y4yRF)YzMo6#fnEIs3cN#*(JoXV1`6Z6TZ&MOnNv}vi!C%-H(&-fz z1?5uo(Zc49rr5isj=J9zGSAIEr*6ZPu6ZmY z5I&&lnyvX~r4BG6o&M1Wq_9E#X|-W4TL!3wh=gpOsye%FyV|CV>SM*Fj5IZnloqA*#o`R^Suf%n#BSa8b`z3jEPS6umT<$UFvU|}5}b6GGB$J*JxR7sZNLf;!oF?#*?#dOu`4Nu zVhpLbO(3Rsnb|Y=Ot%-R)p4+9nHsl4WxB#~rsFuwh1fVXFQ74uCYb_FxiYJ#s*0h1 zTCbw6HksQ*j&(zTT!!W&1ZZu+_^J|eUn2D9!D=!@i5c=`l`WI4Zq*kco2!u%HYx7Z z4O2W-%Vu*-`^<>fWz^k+E9+D`Wo8u@52T}C?Pt@6X~hT3KMyE<%xzS{i{pXaH~J^ps~l5_t=;TWo>$FMqBl- zJMa;##y|Gp&1|FrTqlhw#(9R{kmn3^y_8l!wy*5uqY{_Q@{qgA(Ad3HcPzo9c(ZaJ zA=F1{>uv=GYMJ(B*Rn4}Bj1eb1%uc6;TG;F+)~`4!dd`5V81fNnVPygc~pv(XwIe@ zo6Njg9E7D5@Hqd1ghWrbQh`s%v5eB#IRBbN5DP>G4z#+Se)hsvt4t~v}2PH zi)(ZUB})T1@0%v-ynG@j^IFnixdx=A_s?Q6)~RK!urV3B`HL{wP(i)RiHZ=>gz{r9 z((7y(CXpEF8TXDh(2NU?cD7v;>Oj4jk596&$~=DBQ)fg9RSuo@n~pNXr^ME(DXNk@ z&nA7_V7qHKnW0IHj=Lqr>Q_gVd#h59ZQL*nr4Z+WoHZEyGAu!eBcOMp3$vM+|aGwBRPSZsjjj~ zWkb3l#NKu5U*h_^Yf~8C+i(~Bfpj@=3s_^FfUVr7OKD@}SuYgzyUyUT@ zZA7L_iBpC!1|l6}94+63HPfG@Z_ur0}9pY>tLH8*)kE#@{;UAa0Ds|B)J+6px_6}H_R zDYrl^?OC8>QRN z%ecoi#?Xn}#vF@m#&>=m^U)+3v1EB-YTRU!-QLo-z_zBFhO(i?M;1ghe}sL>GNa0^ z@+K&WCzxetE|C{BNswThXeUgux!E?PRTSGl9a*T34$X5{;dn^X5xckRJe~{H&*uA0HRwepHW;Nmeb_IvTXTBhH^6}e>(2`?GWCS?;T)EFC z4o^WTOv1Ah!^x#@rM3bon-W-5P*5JO_PdmP)XqED3zmzg0Eb zxf~H`ae#%Lif-$hK`7~JrddbK0kv^Rro4^X*7{mj*bk1z`QN>&++ow4&9Ta?nZPx# zY6MDC(Xj4~kt#rV+tW@uT{$(ZPc{&j_?lmYD~V{+I*MkKFQjMz5sr*0SxPY;ruGvw zmf5;#vXW6WOEIG#rfHrs3h9h6WDk6Gfpjw5C2e4FKP1;gABd3VwE4wILJb88c3{m@ zo!LY#)ioZPCvXcMz=>(X3`vG!j5+A5tx&{qr%rv_%GQ~dYEN(?P5C79)o*$(i{2II zwBQtfPl@9j#xM12~W^i!bH!*ad?d zLEkd{kQLEFPs>k=hpvL4TTw{UI2AQsc?ONtBKt{kD5QYcn$#3y;za!@N52`HL)whU zgjSOX2{eQwO39Y0F-+sjM5Hvi#a!Jz&M;eW7;pK5fcWOL-5pZFZ7FlI4VzfjYa6 zQksLwg-Y2Tix9O;$aWhnTjG56ZBu{RWTKNa zId&gXK2z=*J7WrbpLiJb&_2jAs;!_|vJ`JDs@!Y*wdIe0&1HKkZ=%d^N@ zq{7yLb_qB`qA4S+FSV%3RHMFCNKBbpxCBXD>fkbU^DtrH7=x_skJ_1}9}CP(Z9*lf zt<_uoJdnNhq=hO{H%g&AQaQ`7HPi|n$j&mUCZ!!hn^ZP8 z{-wXhG7R%R3s6K$IL_b_hGKa)yKh!4*R!>;%~pR^&{CapcV^18=KH>8F&IgRSD#>q zrJ5hvI$2Jp<2y<$PI#zM&3Djmf98cINr{FoLFRD__hnq)n0 z8WH?FnR!mckFS~;k53OtwNZvIZxC|mV{!tyKEi1{j*Ci%6i}dp*HPVlP?%AJpEfH- zAi*cuoB#_lK_cP{*(+OKRX!0_?l-@}Bv$>yi(;6}uqH`tB1Lz`Xt2H&8C6X?l}(wy z*jTwYGbw0<=A`)nN5v(dO6zE>os?bZbF>gboK~>Qjmay4#d-edda+BV9e3#Qk$L09G}_JWzZr_BbR`s zT=+UyL@B?$FCv}D+|rKF-8de_m##oOrJfqFy=J1-jS`YHL`UsBI<=Vv{m_hwo@oMh z=Vkd1DsPUHKex#P#W@~O*)gfmJ;V|3cs{@8mi5m01suzyuqHe#%7|aD~ed9qVQZs!Dflf$O5wT*d~i6NXKZLdzdKJ+>z|lOJ~D#szMkH zfYtOARo-hu4x1^N3%*WdUt&o9#Hueh5sU3{B81v_7&V4-jm@y-nTcCN`W=Ax@Jr`QD+;o}gI?^%9sCF?zYfl9BG0 znnybBgEU>Cks6}KQ_1?tm!Vm;XgKGRE?k0aQk#LU&5C3~WEOr%IJ|&qAK>OMjfk|E z|KOWqGC4Ynajh8hNAk{k`bT3?58SiPaim+jX(zGXBj!^xl?S9N(j{Yr%frb_bVg;o z0R(29r-S5*v3=h(bGEXov4buFsg=h~9!3M*l|Ax-8ufX~cY)g^+_eGNB^8LU|f z!=bdKxngmU7U}31efG13*;BvCkn(~g9+9;#q{Lj&^{EsraAQpQu*ysv%ZE)hSmxVcq0<{^T}vbI)Dzyb!B1pnR@BQ}p42dA zw5VTZEZ#v=jjI`RrX1mv2ak~Iw&Oa7bd!OjH1{)vn-QS(iqUIHBIo%8wH2c%_>OMgKPr2{XaTFYJDhZz6LNf$# zb=z#lDk*#RHR@&}){>wJE8w8t^*5yhvzrvOVTdSbczWBlK{c#)2WFwD<61;I3Y9b} zPQdRZf8QvX%tD4_f-?>I5X8uZ>2R{Er2KJATgf3uo4UjWv_L|XS0jYd*YPvOg1IOf zX(+0ZHE!TZavLNG+T*uH*rtcc<`*4FNOt1=Z`dJgAZ6+d%FZ~|eu zazCUqaddcM=6xnx+Z54!tgS+}dGE&B!ojxch0Ss`t8l2tv*0u;Pj;9F%c1GDq;wsl z*-{cR?uMDmyqsQ+q&h;&J~!TCYbH{TG}b;f0^|scX;m&q+4-_z4T(X?B{j>0ng4GQ zp-EAaIT)>ASoQDRL49!d!Q5pY^)D$DU&$ZGmM-8y)h*s1;_YAo!)7E|vh0S~X<=&( z8x*J9ie<|Qn_WAblSMOv3%;VdV4^qQ9Iy8&%uG5_CwWjHOF z+r}X>3iTN{)TA>~_{0sjOI=Z(`T&|1I_N4KsUEc)T5j`ylR_Mb#=vg%++tMuJEgUx zd@xfwCGwH3UcEs98S7^Lz@aS_Y_G~)ug%rsf#-A>SF$(gaiPuEmemgB(a$GnS1Yun znS(dRZr6EbEo);&e-bBZU)6ZVi)Mh8S( zp~Z2Nh6N5bOKnR33VMeGU`mO?xiIYXyxrEjNMR;dW3GUK#E~zMvWExit~!f^U08|f$qq#0r>^~6xGWYG35SR3-B=VM}B5oL0qDV7Z<5 zHa!bAeLeQa?V47UJF5EX)Te*MKh z3D*3dB6-EvX8tCIa3(i+Mw=IXh9fT_5%R#tX$KJOT5@4k(YhD*LMVW(2T{xGnq|H6 zUd&K52EsL3&+G|>#Z2OFWKdpC2H&!r@dk3The}|Q)RX|^X@2qO zsxy=aBIIXKROGh}feWUx;FvP+Y*@}zJ;5pG87(S!u?fW$rlntdW%Yb5Q2hd8CWMoE zYJ~nF9Ne+{X`2$f8f04J&&ZjbGAz(2lh|41O&`=)rcA~cjY9f%mTEd2$xUIj_{fX{ z9q`jc!OwKJMeA0xXH6(3b%~9sj)h4(e=(LnJSppN>Cj^8xHM^Kj;RKTCUZWUy@F3& zm-T(&%&^7PtWZ%}CEm16AllGPz3G!GQxo58&s!@=lN!eN?X1y~lQjbn7v&HXTf<6h zJkj*5L6SUB*kaL?cxo!;izQ}%u^oQay2sQlSs(<15;IWpQ9{svRSk841_?{wHqeXu z3$m8khLb^=`U*dkU>4IYcwji=ZX+>wCr}${tRWexx1Fhpk75y6b)UFXw&+Q{JIx3Iv&yfoC!XdG$oZKBKoJ|a`(T!_=g+_F; z+S=kD{*!50EkDL*Hz}BYMyuKfGSnGQR6~|&(+p!E{te&pl9df=mOV$=6Yjf zHUAgfmNB-T-i#+}+Kg#I5~wE)Z40rT5r>H7l^T))QcqW{hK5ZfiYE1@aH+_cJcQ)$JO3F)>5iWW{_25B-JEU zHCZN+zrqN+q3_B`AveeEOXki^I^<79bI-gyq;4_SV{?ay_Dr{#V>X+B>1a{ZbVodF z@6`E`7KNMMmhQNLLw3XFLyL~RQo4J9*_qx+&E%ZN=*X=*I|rhwW7SDJ!vr$3XY-n} z&D(6D^C+K!u8r3vfO zzfR(RH;Sd6wL`qxY}M+mgmsLP6D^X>=5lIgw}gUps>8`OU;LQQzk`;w;iGTUl9KSX zt(~<2O;f@7*KS<-H|t;_c8_z`%;3u)lta#i`Ov02Pc^0UCrs0V+7EbW zx=RjtE5tDOE3@ZIE~Ynrh6KZ|*3s-QHVD;aI(|3BgOh%Sm&U!ex_>k^D!$JC)pIlo{vwX=yqsS3(< zJ2DR+ps2Zs+tY6*EIpsODY!^;fnkKSmQ=Nqw0d161eNiLo&(9AoZwLBSdAESvvt@a z)|`XpsBykhjn-_5Ctc2-TY1uC^4J=$nOYhl*HMKWLt-;19;cLJMkL#nS0`&k6X8(1 zD1^mY+XaOTZYR@dbivZ4nv2qx@ZhdiG!3pNS)4R+do}@%*#H8A-J0jwuqErm$R`%e z@iHdUSOxNlx>{Mg44>oVS&Q>-7&pTlR~yO7nn_fwmeP>&Hsc5!a^*^2Jml>KH#AF6 zXkC-~e_MNKB`ptQ>Zie|Rg0>?Q@liuaLcVH(N8)CPTcHait%)tWF5XzhQDts$@!O zG!i^6ABn)nLWn&~_BoCE>J z0vJUf4JD9bW2a5ZQ7T<-HhFB#G!H~;dlidrF;DX>Ow);BlN?ma$1@-u+Dq5=aya@} zi=E_k?php?XsJ{vC`yxC@*H#(LKRzeID5J4A#l@5@V`bYZ-*viUF|Ap_*SST0m}eH zefoY-tKw2lU%}W1S*0>fy0?9v`{njgCpnAFQKjax-n=wM8Ie{rohtj-7vldJ!O*kHQ#_oexIyk4V?ZH+Y z2?0a0=>-e@hNa1*PU05fUyKAZZ&Q;qde-jP@j4|uXs^2Y>8S#Y+jAv|#zena-W=It z9?V&=TZwt?U7;7%C#jyM%A-`yx|O-^{Ll&|P}fJ5`)J{5g)CB)nn<#)VA5UFM&0|F zGq*^yE_Q}2OFFBUBKQI z)eWser14dQFp0xnI6)|-_}rWZvlhwnhso3{k&3N^?y<`i9=;hHc6>QHg zZ{x0NLqB37Hj~+0g@2jFNi6$;UAO}EtPdq(mJj1E><{9&nak`=gQOqujTMegF1#HU zQP?(7r4$||yQ?)bHm$%U)5%=19{xrL9b_ZCQ`NDenGnpd$D%xSM<(@@WF|cZ@~HNU zO*iSxq9lFEke#qJrjYd{2_*)iqe?V{wDl>IY7-*GrWWm{NVVj>Y_71O)K|O%K2Sl= z%x=>ygL|tzU}#LLvg+_O^WwOqQ%%1j212A-4moGD{n8s|^5xn&bJ(jX#M^Wu$xH;1?eIFF&(RQMq$-TLR1fhK)3=K1pmd$o5j~+I*kU(`=k~$I>uqn3!{V-jP z(nQl$$=J;?ql)4x1Ep^K<)mbWAv6Qu| z3yTm+AzTry90sZ_iUS8z*AR5yCZMpYG4Co7G|6y@z%c&o1T^Y!tZmrmD_c!}{>O1N zX16vxSvW%~<|XB8Tu9Ap7d|Tg;#8O}X-bFnl)4U?7lYAZs{LDwB%aEhf;AyU@h zGkzBhuNA*7)NGa^gn*I!w4)H3JS~fs<)kzKip;Mu9PCOV0LB%9RF<#mI834lhYLi4 zDawIrX==+VJ;-ppsm5iL$@9ZnvnK1Gtj)@RYv-e?wrM;NVDk*&rH#xcf%Nl(7Aqqs z4s%*E+nON$NUVuP;Xetk%0r_hdY6W2l6G%0ENB{L5TINH?TQFsOhHfx}{H*DGn zEJxCQuE19D*~u4yz-9hZ2&@HwFYOgCo5h zNH>#PFz#vv!uZ(l+Q`#ZOZjlXM+%JWQ4`DMNL=Ywg*V^@pjZXa6yHVB+B8fQ3=p1& zfZVb_JV`ekP&?q2*mmbHZ?otF-4L2BV8vR!PXo}Iu@<_zkc9(2FnL#wc zaxEg2y4y%U*%!YlCs!#)C>wKThRR5<=|R1~NR>r=G^`{P(}A4{ZR`TkAXj5^n!gE6 zG?_JFWYT@B4(_Oq(>Z2pQ!~qt&bn&459*sR#gtuxt5M+02;HGeQJj6!8!DMsO;^h{ zDdLF3hc1$Za~c6{vSo9t172#Y#w%L9=v}6>AitSSN0VmMX3 zos}{01_$>_h;L|QOdettVMj>PtmB{8hB&6x=F)7eoygN|CMa?$k?o;J-ct&ch-CZg zW@WNHwNp+s5sRX5bCK8v1lAo*V^?puoG-0laXCSjGn)FzvC5gHZ{#H7ZII$CYA8GS z|KkRbwQtsGQq{DOXiKA3k0}QEOfkZl!EE9)wI<-2^}BLvqp~;K4vmF{K&nmKQF}X7 zu!j1q1jZhBtCg-ZBAv#YsN@)mX44DNhDRLUoZ|VKoo|1rSumI^jDmh`ttem^jnkH2 zXwsPXv>olF^G=r1mKrc7Raj{nxz_}rnhz7ZLs>0L1F>OSsim*0Sqdne*5a5zUJ^;N zTef1dN91)(=619L8&`nN-^P=1RJoki3wNo>>N`1`C4%UL_UQ;dD64XBb(XONt&Xf) z&QM`u!wKo8H{+?Sz{0okLcf`E8d1x{Y?Cg6y0jEirs?|8SEu?>3MKQ&C`I7^2BLjm zw=0$k3)t4wW|VTYb}jU?g*+QwEnB1W%*_7*`cESxf2}pW47}2IaP?bFP0Lh+shalE zFfzEqTj@+6o4MI#_B6rjyDd)MU>_!dF8e@}M`0$|3~^F6!t2@&NXm@%p+9ZMHJP58 z+zdMqnUuTugqUj6czktP1}KfRW%wfs#x*)E=xvd~l^qE1y+}*!LAjzoAC@Lj?P+?P zExU#(wmEGiG^LoYD$p(ZXlX8qITNB9oi!7)8*<~ox3?KvOIV=l%MZQPiG|{J6X#p(9!w?)VphT zqN+KYW6K7PGGa9qq-yj2vyCyAM5^13FYvH?-n?6vZkiZq!ZSI(`^=Ox-y*t|A#I?p z#iyAISy9l#7DtVsj}Is^6n$NWvdYyp`9jM*rWtiFrG-m%;M0_Aa#-O?-@`ffJ782O z?E4zQGMcEJLL5rNQXXPH*0e1HlGS_-DHLn`60{od?&`K>)|on>irLY4AM1*x-rPXp zDl>e4^OKEKtVdg6@J<>N{DCSfE5$CK{1YDuFgHE7oIx^_=A-Z&3!`AmI(!~dPJ%ynhC^l}n?LM;@YGEG z;Q<*G15enNq^H>7=dd(d$1*_lHT#>2+Cx`uQws^pd$brY1UqsU;x3I?5-**s)uL5# zm1p~&#;|B_ETt*j+KO7-#n^NflIG;2IT<1wp=8pK6by3H?-j}d)phnG5gszt=o8z- zWU71|TYU&PJw#+)#_6f9uS|jY7EW%ku%fRpuzGSiZZGHa;Z9GnJKW_RSU)qvu;i?Q z>Qk;~xPLGdLLOmM86H~anQ=57@BhKbBu8S>u}9XFYUx@%+x+Ozdo3E`?S$5+95?{S ziCxo?)aOa^!4Q?SmT~`owOz|@97PoEPif66NO;CJfrS+!1VUMWB_yH<*hJ$=$8=`e zGmP5?r`1w6`2qG3QWmTc5|X7rzQLcwIp~%Eg)u11e*trb$?gg8Pjfo*`<1y}Vv43OuDFV1^JB z1gRb$yp>E4#qEybd0XthFmKZ0AN@&vJY??DfVi|eCn`~c#f%4i7W{)E*d8XP+O)*& zpW4$P)zH@|3|k2e+Dn3oA`<3M;6+<&{Hs4z9fU*6QANTsUX&`Jm5N3@RUaF4LgH#- z`1qXz9|KV|!=2eC5_#W;&k);W8U(QkDB~bXVKuhbi5)te$izF(c=j`a%4jy81v9jg z4zURyV8VQfwWM}P=q;@XGr3S1=2_W`meWt@U*KXBJG+p)?Iq`i01ZhGcr&_-|_5UK!A5DY!wz=)6<(Rq1i>Nj;A8ClYoFw z`-b-wPI1=of3>DJ$lsUpEEuE%*`*2Fm58F**emxLt}mvH6znY=#Zq*y%=BKEQbB^KZhj)3a%JngKusMZt*q>=t49zeoMu_;V z*!1k{3t0Nr+;*$!lO!Aaik(}fWQVMcB9H_ZC-b%nK@TyAmlWd(n)64RKV4$P&1ouL zqD8q?8t*{>!mp`DNWf3C@l?&DW|#`@k!e=JrU?yhA z3-F~or()BP`XY3(&1E@v@Hv*pc7ih<&&p2+m-&-yp5n>iKFE=jOX_&2GbqE-DCcg> zTa=Z!JBC&^XP{BQBUJuP?y2&0gOojYXVQj!6b;X@I1ZJuqWs*hPo*?Sl+wHE)6h6O zVMp4(g0|L@sbnQCHdZFyG9gw;(~b)q=UuRe<#4?yqyCxPT#y7kYP%d*rWw}G3gqjx_pHM-9fTMZ#6>g0($gnwGU0` zLSV;1jO$=IuPgOH7Q4n)^8-efFDVBK4AX=C!@JR+hx-SId;6d4?SC9Sbensz*ePM% z)fHsQ+*G5Xo4=y+Uwr%M!}Po3uL*LDQ~T&@V0rVqe5FZ}2o#`0J@UtJ16Jh6Jc+8; zDa1O67+|b{=O_!e>3mk8;qnR;m~TTRw5Rp7%7p0yo#WSJjMS9DMFE()gcDp5c_HN9F0bcWnN^<;bdNno?l)}hsENf6zEOV1YrjeoDc#d(pH-_@*}j8Efa1Fv{nMe zk2r4QI2|w1BTUD`XN%MK$TeuM0R8c2*)QW_G0WJ-ShIjP2I8KSy&*p6&`0ThQ}qb$ zjX#mSpzZBlCh%T91^k$;EsDv3Uh8Mo@Q$h>PKB`&aSo2crAiz+!vUuGvKW_`_6HgvbOQ8ll7;R@c=L3;~M(!m3P=46+zPQ@U z3*J@>lkv3FnsmcDEQBc-sxM$B+6@4&L8+&e>d^1lAREA~$}Wu(aU422m}0w_E~N2$ zLlcAsGyIMMydInR3mA$~%TdYSR8fx$Io-GFgz}(>Rwp3x0yt(UMz3%ivw9x0wCsq+ zDt`fc*M66#B(gHEQxi5ZaX>3qCgKweEbPN=FAcnX%XOp+wVb2a>^;;0zHBV0M?+wc zQ0NON5?i#OJov}BLW-gC|LB#az7Wf@G@jNa9O&G8K)a+GPs;fcYXQ*^tc4Y6K9SPHYl%V(|4DqTRX(C4Cp_7>ebRM z-Qy$9^sPzusPXKMX-1`ow-J;c;cIRdGA{XF1f=tz!5U)&6=TE070t(XSF{4hHpabF z%qxP}Pa=}M1Bfmo%Ri^nZ+0j6upo40R=sgJCMpaccERvacnZ;lh^}drJ|Ep$<#ai} zSVVT+T7gS+QTeb4{0^Sbs=LJ(T4itV4RQ4i{(uhSc43De!{3gmdo<7|YSIKe-2I(N zb#hf^=XI+8l4>%)I4kRPGM~-HCv%KX=gZ!Q=izCQ6(?C!$o|CZto|~oPV%Ni}UAe#M8=dYV*47D^uTVNo9^{9q+$1F~8`8)-p(Q{=hpsG^ zuhIM7Z+#8@Fu?~nf#WwnU1ZCvda${^w@_0ba;&Luseq!#eF~O&3Neu|7joQ)Apy~Y zpbd(8DsYj#Y2#Ls8z{I?=}+FtA}(MGkAWXj06fp?^ep>1MUIkR=H*rTbU825>O3#A p$7Np5a3NWzNS>Yd6, 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Daniel C , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Daniel C , 2021\n" +"Language-Team: Bulgarian (https://www.transifex.com/okfn/teams/11162/bg/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Звук" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "Адрес на звук" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"пример: http://primer.com/zvuk.mp3 (ако е празно, ползва адреса на ресурса)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Браузърът Ви не поддържа елемента за звук. Не се притеснявайте " +"- можете да госвалите." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ресурсът не е намерен" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Нямате право на достъп до тази странца" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завършен" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Изчакващ" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Предоставяне" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Грешка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Все още не е качено" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Качване в DataStore хранилище" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Грешка при качването:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Грешка:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Проследяване на грешка" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последно обновяване" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Никога" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Качване на лог-файл" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Детайли" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Край на лог-файла" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Ресурсът от DataStore хранилището не е намерен" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Данните са невалидни: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ресурс \"{0}\" не е намерен." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Потребител {0} няма право да обновява ресурс {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Достъп до ресурсни данни чрез уеб API със силна поддръжка на заявки." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Крайни точки" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Това Data API е достъпно само чрез следните действия от CKAN API за " +"действия." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Създаване" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Обновяване / Вмъкване" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Заявка" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Заявка (чрез SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Подаване на заявка" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Пример за заявка (първите 5 резултата)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Пример за заявка (резултати, съдържащи 'jones') " + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Пример за заявка (посредством SQL декларация)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Пример: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Обикновена заявка по технологията ajax (JSONP) към API на данните чрез " +"jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Пример: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Запазване" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Поле {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Промяна на вида" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Описание" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Речник на данните" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колона" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Тип" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Зареждане...." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Таблица" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Адаптивно изобразяване" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Покажи колони" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "Тестова конфигурация" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "Допълнително поле - низходящо" + +#: ckan/templates/group/read.html:17 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 "Популярни" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Тази група няма описание" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} набор от данни" +msgstr[1] "{num} набори от данни" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 набора от данни" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Последователи" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Секунда" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Минута" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Час" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Ден" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Изтича след" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Части" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Изтича на (в)" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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 "" +"пример: http://primer.com/kartinka.jpg (ако е празно, ползва адреса на " +"ресурса)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Изследване на данни" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Диаграма" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Карта" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "грешка при зареждането на изгледа" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Не можахме да заредим изгледа" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Решетка" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "напр.: 0" + +#: 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 "напр.: 100" + +#: 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 "Група (ос 1)" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Набори от данни с най-висока оценка" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Средно висока оценка" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Брой на оценки" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Без оценка" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Най-големи групи" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Брой набори от данни" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Няма групи" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Най-визоко класирани етикети" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Име на етикет" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Брой набори от данни" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Потребител" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Меню Статистика" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Най-често редактирани набори от данни" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Вашият браузър не поддържа iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Упълномощаващата функция не е открита: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Администратор" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Редактор" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Член" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Трябва да имате права на системен администратор" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Заглавие на страницата" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Стил" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Мото на сайта" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Лого на сайта" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "За портала" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Текст за страница „Относно“" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Въвеждащ текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Текст на начална страница" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Персонализиран CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Персонализиран CSS, вмъкнат в хедъра на страницата" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Начална страница" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Пакет %s не може да бъде прочистен, тъй като свързаната ревизия %s съдържа " +"пакети, които не са изтрити %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Проблем при прочистване на ревизия %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Прочистването е завършено" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Действието не е приложимо." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Достъп отказан" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Данните не бяха намерени" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Неправилна заявка" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Неизвестно име на действие: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Грешка: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Неправилни данни в заявка: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Групата не е намерена" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Организацията не е намерена" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Неправилен тип на групата" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Организации" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Групи" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Етикети" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Формати" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Лицензи" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Потребител %r няма право да редактира %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Нямате право да извършвате цялостно обновяване." + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Нямате право да създадавате група" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Грешка в целостта" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Потребител %r няма право да редактира права за %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Нямате право да изтривате група %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Организацията беше изтрита." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Групата беше изтрита." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Нямате право да добавяте член към група %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Нпмате право да изтривате членове на група %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Член на групата беше изтрит" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Изберете две ревизии, преди да направите сравнение." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "История на ревизии на CKAN група" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Последни промени в CKAN група" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Журнално съобщение: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Вече следвате {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Вече не следвате {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Нямате право да виждате тези последователи %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"В момента тази страница е недостъпна. Базата данни не е инициализирана." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Моля, обновете профила си и добавете своя имейл адрес." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s използвайte своя имейл адрес, ако имате нужда да възстановите паролата " +"си." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметърът \"{parameter_name}\" не е цяло число" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Наборът от данни не е намерен" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Невалиден формат на ревизия: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Нямате право да четете пакет %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "История на ревизии на CKAN набор от данни" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Последни промени в CKAN набор от данни:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Нямате право да създавате пакет" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Нямате право да редактирате ресурс" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Нямате право да обновявате набор от данни." + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Наборът от данни {id} не беше намерен." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Трябва да добавите поне един ресурс от данни." + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Нямате право да създавате ресурс" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Пакетът данни не може да бъде включен в индекса за търсене." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Индексът за търсене не може да бъде обновен." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Наборът от данни беше изтрит." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Нямате право да изтриете пакет %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ресурсът е изтрит." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Нямате право да изтриете ресурс %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Не е намерена информация за ресурса" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Не са налични файлове за сваляне" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Нямате право да четете набор от данни %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Нямате право да четете ресурс %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Нямате право да редактирате ресурс" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Изгледът не е намерен" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Не е дефиниран предварителен изглед." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Потребителят не е намерен" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Нямате право да се регистрирате като потребител." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Нямате право да създавате потребител" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Нямате право да изтривате потребител с идентификатор \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Не е посочен потребител" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Нямате право да обработвате потребител %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Профилът е обновен" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Нямате право да създавате потребител %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Неправилна Captcha. Моля, опитайте отново." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Потребител \"%s\" вече е регистриран, но Вие все още сте в системата с " +"предишния акаунт \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Нямате право да редактирате потребител" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "грешна парола" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Вход неуспешен. Грешно потребителско име или парола." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Нямате право да заявявате възстановяване на парола." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Нямате право да възстановявате парола." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Невалиден код за възстановяване. Моля, опитайте отново." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Вашата парола беше възстановена." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Паролата трябва да е с дължина най-малко 4 символа." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Въведените пароли не съвпадат." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Трябва да предоставите парола" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Елементът за следене не е намерен" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} не е намерен" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Всичко" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Преглед" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Току-що" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Непознат" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Ресурс без име" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Създаден е нов набор от данни" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Редактирани ресурси." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Редактирани настройки." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} преглеждане" +msgstr[1] "{number} преглеждания" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} скорошно преглеждане" +msgstr[1] "{number} последни преглеждания" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Имейл адрес на получателя не е наличен!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "организация" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Липсваща стойност" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Полето за въвеждане '%(name)s' не беше очаквано." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Моля, въведете целочислена стойност" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Невалиден/ни ресурс/и към пакет" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Допълнителни" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Речников етикет \"%s\" не съществува" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Набор данни" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Не може да бъде разчетен като валиден JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Организацията не съществува" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Не можете да добавите набор данни към тази организация" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Невалидна целочислена стойност" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Трябва да бъде естествено число" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Трябва да бъде положително цяло число" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Невалиден формат на дата" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Не се допускат връзки в log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ресурси" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Това име или идентификатор на група не съществува." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Тип дейност" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Името трябва да бъде низ." + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Това име не може да бъде използвано" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Името може да е най-много %i символа" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Този URL вече е в употреба." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Името \"%s\" е по-кратко от минимално допустимите %s символа" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Името \"%s\" е по-дълго от максимално допустимите %s символа" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Версията не може да бъде по-дълга от %i символа" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Дублиращ се ключ \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Вече съществува група с това име" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Етикет \"%s\" е по-кратък от минимално допустимите %s символа" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Етикет \"%s\" е по-дълъг от максимално допустимите %i символа" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Етикет \"%s\" трябва да съдържа само малки букви на латиница, цифри и " +"символите за тире и долна черта: -_" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Етикет \"%s\" не трябва да съдържа главни букви" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Потребителското име трябва да бъде низ" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Това потребителско име не е налично." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Моля, въведете двете пароли:" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Паролата трябва да е низ" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Въведените пароли не съвпадат" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Редакцията не е приета, тъй като прилича на спам. Моля, избягвайте връзки " +"(URL адреси) в описанието." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Името трябва да е най-малко %s символа" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Това име на речник вече се използва" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Стойността на ключа не може да бъде променена от %s на %s. Ключът може само " +"да се чете, без да се променя." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Етикет за речник не беше намерен." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Таг %s не принадлежи на речник %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Няма име на етикет" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Таг %s вече е бил добавен към речник %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Моля, въведете валиден URL адрес" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "ролята не съществува" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Набори от данни без организация не могат да са частни." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Не е списък" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Не е низ" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Този родител ще създаде цикъл в йерархията" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Липсваща стойност" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Опит за създаване на организация като група." + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" +"Трябва да се зададе идентификатор или име на пакет (параметър \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Трябва да посочите оценка (параметър \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Оценката трябва да бъде цяло число." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Оценката трябва да е между %i и %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Трябва да сте влезли в системата, за да следвате потребители" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Не можете да следвате себе си" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Вече следвате {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Трябва да сте влезли в системата, за да следвате набор от данни." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Потребител {username} вече съществува." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Трябва да сте регистрирани, за да следвате група." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "Идентификаторът липсва в данните" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Речник \"%s\" не може да бъде намерен" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Етикет \"%s\" не може да бъде намерен" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Трябва да сте влезли в системата, за да престанете да следвате нещо." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Не следвате {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Ресурсът не беше намерен." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не посочвайте, ако използвате \"query\" параметър" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Трябва да е двойка :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Полето \"{field}\" не е разпознато в resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Пакетът не беше намерен." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus не беше намерен." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Организацията не беше намерена" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Потребител %s няма право да създава пакети" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Потребител %s няма право да редактира тези групи" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Потребител %s няма право да добавя набори от данни към тази организация" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Не е намерен пакет за този ресурс, автентичността не може да бъде проверена." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Потребител %s няма право да редактира тези пакети" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Потребител %s няма право да създава групи" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Потребител %s няма право да създава организации" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Потребител {user} няма право да създава потребители посредством API." + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Нямате право да създавате потребители" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Групата не беше намерена." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Потребител %s няма право да добавя членове" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Потребител %s няма право да редактира група %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Потребител %s няма право да изтрие ресурс %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Потребител %s няма право да изтрие връзка %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Потребител %s няма право да изтрива групи" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Потребител %s няма право да изтрие група %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Потребител %s няма право да изтрива организации" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Потребител %s няма право да изтрие организация %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Потребител %s няма право да изтрие task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Недостатъчни права" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Потребител %s няма право да чете тези пакети." + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Потребител %s няма право да чете този пакет %s." + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Потребител %s няма право да чете този ресурс %s." + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Потребител %s няма право да чете група %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Трябва да влезете в профила си, за да получите достъп до потребителския " +"панел." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Потребител %s няма право да редактира пакет %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Потребител %s няма право да редактира ресурс %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Потребител %s няма право да променя статуса на пакет %s." + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Потребител %s няма право да редактира организация %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Потребител %s няма право да променя статуса на група %s." + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Потребител %s няма право да редактира правата на група %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Трябва да влезете в профила си, за да редактирате потребител" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Потребител %s няма право да редактира потребител %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Потребител {0} няма право да обновява потребител {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Потребител %s няма право да променя статуса на ревизия" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Потребител %s няма право да обновява таблицата task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Потребител %s няма право да обновява таблицата term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "заглавие" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Не са зададени лицензни права" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" +"Open Data Commons Лиценз за Предоставяне на Обществено Достояние (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Лиценз за Отворени Бази Данни (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Лиценз за Признание" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Признание" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Признание, Споделяне на споделеното" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Лиценз за свободна документация" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Друг (отворен лиценз)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Друг (Обществено Достояние)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Друг (Признание)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "Отворен Правителствен Лиценз на Обединеното Кралство (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Некомерсиален лиценз (Всичко)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Друг (некомерсиален лиценз)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Друг (не отворен лиценз)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "зависи от %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "е зависимост на %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "произхожда от %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "има производен %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "има връзка към %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "има връзка откъм %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "е подчинен спрямо на %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "е главен спрямо %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "е равностоен спрямо %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Няма информация в API за този ресурс" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Неуспешно зареждане на информация за API на данните" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Започнете да пишете..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Няма намерени съвпадения" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Има незапазени промени в този формуляр" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Моля, потвърдете действието" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Сигурни ли сте, че искате да извършите това действие?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Потвърждаване" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Отказ" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Прекратяване на следването" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Следване" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Връзка" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Посочване на връзка към URL адрес в интернет (можете също така да посочите " +"връзка към API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Качване" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Премахване" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Качване файл от Вашия компютър" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL адрес" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Файл" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Запазване на подредбата" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Запазване..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Качване на файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Възникна грешка" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Неуспешно качване на файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Неуспешна проверката за автентичност на качения файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ресурсът е качен" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Неуспешно зареждане на информацията за качения файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Добави филтър " + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Редакция" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Показване на още" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Скриване" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Грешка %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Относно {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Задвижван от CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Администраторски настройки" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Показване на профил" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Табло (%(num)d нов елемент)" +msgstr[1] "Потребителски панел (%(num)d нови елемента)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Потребителски панел" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Изход" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Вход" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Регистрация" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Набори от данни" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Търсене на набори от данни" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Търсене" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Кошче" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Сигурни ли сте, че искате да изтриете тази конфигурация?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Пренастройка" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Обнови конфигурация" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN настройки за конфигурация" + +#: ckan/templates/admin/config.html:52 +#, 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. То се появява на различни места в CKAN.

" +"

Стил: Изберете от списък от прости разновидности на " +"главната цветова гама, за да получите бързо персонализирана работеща тема. " +"

Лого на сайта: Това е логото, което се появява в " +"заглавната част на всички примерни шаблони в CKAN.

" +"

Относно: Този текст ще се появи на следните места в CKAN" +" Относно.

Уводен " +"Текст: Този текст ще се появи на следното място в CKAN Начална страница като приветствие към " +"посетителите.

Custom CSS: Това е CSS код, който се " +"появява при етикета <head> на всяка страница. Ако желаете" +" по-пълно персонализиране на шаблоните, препоръчваме да прочетете документацията.

" +"

Начална страница: Оттук можете да изберете " +"предварително зададена подредба за модулите, които се появяват на Вашата " +"начална страница.

" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Потвърждаване на изтриването" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Натиснете тук за повече информация" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Не е определен ползвател на данни тип: %(type)s." + +#: 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/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 "Markdown-синтаксис" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Добавяне на група" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Формуляр за Група" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете тази група - {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 "Сигурни ли сте, че искате да изтриете този член - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Добавяне на член" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Съществуващ потребител" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Ако желаете да добавите съществуващ потребител, потърсете потребителското му" +" име по-долу." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "или" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Нов потребител" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ако желаете да поканите потребител, въведете неговия имейл адрес." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Роля" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Сигурни ли сте, че искате да изтриете този член?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Изтриване" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Какво представляват ролите?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Търсене на набори от данни..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Набори от данни в група: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Име" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моята група" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Малко информация за моята група..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Сигурни ли сте, че искате да изтриете тази група?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Запазване на група" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Разглеждане на {name}" + +#: 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 Групи за създаване и управляване на колекции от " +"данни. Това би могло да включва каталогизиране на данни за определен проект " +"или екип, както и по определена тема, и представлява много лесен начин да " +"улесните потребителите в намирането и търсенето на данните, които Вие сте " +"публикували." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Изтрит" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 е водещата световна платформа-портал за отворени данни с отворен " +"код.

CKAN е напълно готово за употреба софтуерно решение, което прави" +" данните достъпни и използваеми – чрез предоставянето на инструменти за " +"улесняване на публикуването, споделянето, откриването и използването на " +"данни (включително съхраняването на данни и осигуряването на основни данни " +"за APIs). CKAN е предназначен за всички, които публикуват данни (органи на " +"централно и местно управление, търговски дружества и неправителствени " +"организации) и които искат публикуваните от тях данни да станат отворени и " +"достъпни.

CKAN се използва от правителствения сектор и от групи от " +"потребители по целия свят и задвижва различни официални и общностни портали " +"за данни, включително портали за управление на местно, национално и " +"международно равнище, като правителствения портал на Великобритания data.gov.uk, на Европейския съюз publicdata.eu, на Бразилия dados.gov.br, на Нидерландия, както и " +"сайтове на градове и общини в САЩ, Обединеното кралство, Аржентина, " +"Финландия и други места.

CKAN: http://ckan.org/
CKAN обиколка: http://ckan.org/tour/
Преглед на " +"особености: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Добре дошли в 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 "" +"Това е въвеждащ текст за CKAN или най-общо за сайта. Все още нямаме по-" +"подробно описание, но скоро ще имаме." + +#: 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 "{0} статистически данни" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "набор от данни" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "набори от данни" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "организации" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "групи" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Това поле е задължително" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Стойност" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Персонализиран" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Формулярът съдържа невалидни записи:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Задължително поле" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL адрес на изображението" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Изчистете Прикачването" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "открито за \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Съжаляваме, не са намерени набори от данни за \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Направете публичен" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Направете частен" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Чернова" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Частен" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Сигурни ли сте, че искате да изтриете тази организация - {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 "Редактиране на организация" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Потребителско име" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Обновяване на член" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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 Организациите се използват за създаване, управление и публикуване на " +"колекции набори от данни. Потребителите могат да имат различни роли в дадена" +" Организация в зависимост от техните права за създаване, редактиране и " +"публикуване." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Запазване на организация" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Преглед на {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 набор от данни представлява колекция ресурси от данни (като файлове), " +"наред с описание и друга информация, достъпни на определен URL адрес. " +"Наборите от данни са онова, което потребителите виждат, когато търсят данни." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Промени" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете този набор от данни - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Сигурни ли сте, че искате да изтриете ресурс - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Преглед на набор от данни" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Редактиране на метаданни" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Преглед" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Добавяне" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Редактирай ресурс" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Свръзка" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Иди на ресурс" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Изтегляне" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL адрес:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Източник: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Допълнителна информация" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "неизвестен" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Създаден" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Формат" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Лиценз" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Добавяне на нов ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

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

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API документация" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "пълен пренос във {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 "" +"Може също така да получите достъп до този регистър, като използвате връзките" +" %(api_link)s (see %(api_doc_link)s) или свалите %(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 "" +"Можете да получите също така достъп до този регистър, като използвате " +"връзката %(api_link)s (see %(api_doc_link)s)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Статус" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Описание и допълнителна информация за лиценза можете да намерите на opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Организация" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Няма организация" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Видимост" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Публичен" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "Следва: Добавяне на данни" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Марта Иванова" + +#: 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 "marta@example.com" + +#: 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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "напр. Цените на златото за януари 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Някои полезни пояснения за данните " + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "напр. CSV, XML или JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "напр. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Размер на файл" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "напр. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "напр. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Сигурни ли сте, че искате да изтриете този ресурс?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Предишен" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Запазване и добавяне на друг" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Разучаване" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Още информация" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Внедряване" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Изходен код" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Данни и ресурси" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Добавяне на набор от данни" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Статус на потребителя, въвеждащ данни: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Проследяване на URL адрес" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Показване на още {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Само популярни {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Няма {facet_type}, отговарящ на търсенето" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Начало" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Език" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Напред" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Не е избран лиценз" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Този набор от данни отговаря на дефиницията за Отворени данни." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Подреждане по" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Филтриране на резултати" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

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

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} намерен набор от данни за \"{query}\"" +msgstr[1] "{number} намерени набори от данни за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Не са намерени набори от данни за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} намерен набор от данни" +msgstr[1] "{number} намерени набори от данни" + +#: 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] "{number} намерена група за \"{query}\"" +msgstr[1] "{number} намерени групи за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Не са намерени групи за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} намерена група" +msgstr[1] "{number} намерени групи" + +#: 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] "{number} организация намерена за \"{query}\"" +msgstr[1] "{number} организации намерени за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Не са намерени организации за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} намерена организация" +msgstr[1] "\"{number}\" намерени организации" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Имейл" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} добави таг {tag} към набора от данни {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} обнови групата {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} обнови организацията {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} обнови набора от данни {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} обнови ресурса {resource} в набора от данни {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} обнови своя профил" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} изтри групата {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} изтри организацията {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} изтри набора от данни {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} изтри ресурса {resource} от набора от данни {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} започна да следва {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} започна да следва {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} започна да следва {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} създаде групата {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} създаде организацията {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} създаде набора от данни {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} добави ресурс {resource} към набора от данни {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} се регистрира" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} премахна етикет {tag} от етикет от данни {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Етикети за търсене" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "Създай тоукън за API" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "Тоукъни за API" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "Не сте сърдал(а) тоукън за API" + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 потребители да се запознаят с Вас и " +"това, с което се занимавате. " + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Промяна на детайли" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Пълно име" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "напр. Марта Иванова" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "напр. marta@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Малко информация за Вас" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Абониране за имейл известия " + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Снимка за профил" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "Адрес (URL) на снимка за профил" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Променяна на паролата" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Парола за системен администратор" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Парола" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Потвърждаване на парола" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Сигурни ли сте, че искате да изтриете този потребител?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Сигурна(ен) ли сте, че желаете на пресъздадете ключа за API" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Пресъздаване на ключ за API" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Вие вече сте влезли като {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Изход" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запомнете ме" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Вие вече сте влезли в системата" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Трябва да излезете от системата, за може да влезете с друг акаунт." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Създаване на акаунт" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Възстановете Вашата парола" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Възстановяване на парола" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Обновяване на парола" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Как работи това?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Просто въведете нова парола и ние ще обновим акаунта Ви." + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Потребителят не е създал никакви набори от данни." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Не сте предоставили биография." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Този потребител няма биография" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID идентификатор" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Това означава, че само Вие можете да го виждате" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Член от" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API ключ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Възстановете паролата си" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Изчистване на заявка" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Тоукън" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Последен достъп" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "Действия" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "Оттегли" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Търсене на потребители" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "Масивното прочистване завърши" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "успех" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Не е намерено действие" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "Нямате право да виждате данни за активности" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "Подробностите за тази активност относно данни не са налични " + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "Нямате право да четете този пакет" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Добавен е сътрудник" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Пренасочването към външен сайт не е позволено." diff --git a/ckan/i18n/ca/LC_MESSAGES/ckan.po b/ckan/i18n/ca/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..e1c3cbb6291 --- /dev/null +++ b/ckan/i18n/ca/LC_MESSAGES/ckan.po @@ -0,0 +1,5216 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Catalan (https://www.transifex.com/okfn/teams/11162/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Audio" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "URL de l'arxiu audio" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"p.ex. http://example.com/audio.mp3 (si es deixa en blanc s'usa la URL del " +"recurs)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"El vostre navegador no suporta l'element audio. Però no us " +"preocupeu, podeu descarregar-" +"lo." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Recurs no trobat" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "No esteu autoritzats a editar aquesta pàgina" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complet" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendent" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviant" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Encara no pujat" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Pujar a DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Error en la pujada:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Traça de l'error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estat" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualització" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Mai" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Registre de pujada" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalls" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fi del registre" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Recurs de la DataStore no trobat" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"S'ha desat el diccionari de dades. Qualsevol nou canvi de tipus de camp " +"tindrà efecte el proper cop que el recurs es pugi a la DataStore" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Les dades són invalides: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "No s'ha trobat el recurs \"{0}\"." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "L'usuari {0} no té prou permisos per a modificar el recurs {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "API de dades de CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Accediu a les dades del recurs a través d'una API web amb suport per a " +"consultes avançades" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Més informació a la documentació de la DataStore i API de dades .

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Punts d'accés" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Es pot accedir a la API de dades a través de les següents accions de la API " +"de CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Crea" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Actualizar / Inserir" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Consulta (amb SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Exemple de consulta (primers 5 resultats)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Exemple de consulta (resultats que contenen 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Exemple de consulta (amb SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Exemple: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Una crida ajax simple (JSONP) a la API de dades usant jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Exemple: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Desar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Camp {num}" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Substitució de tipus de camp" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiqueta" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descripció" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Diccionari de dades" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Columna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipus" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Carregant..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API de dades" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Taula" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Disseny responsiu" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar columnes" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Mostrar/Amagar columnes" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Rellevància" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nom Ascendent" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nom Descendent" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificació" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Camp personalitzat ascendent" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Camp personalitzat descendent" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Text personalitzat" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "text personalitzat" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Codi de país" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "Text personalitzat" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Aquest grup no té descripció" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Conjunt de dades" +msgstr[1] "{num} Conjunts de dades" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Conjunts de dades" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"Les eines de visualització de dades de CKAN tenen moltes característiques " +"útils" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidors" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Segon" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Minut" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Hora" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Dia" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Caduca en" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Unitats" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Caduca a" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imatge" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL de la imatge" + +#: ckanext/imageview/theme/templates/image_form.html:3 +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:113 +msgid "Data Explorer" +msgstr "Explorador de dades" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Gràfic" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Error carregant la vista" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "No s'ha pogut carregar la vista" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore ha retornat un error" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy ha retornat un error" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Taula" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtres" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Òfset de files" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "p.e.x: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Nombre de files" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "p.ex: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipus de gràfic" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grup (Eix 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sèrie (Eix 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipus de camp" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Camp de latitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Camp de longitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Camp GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zoom autòmatic" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Agregar marcadors" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "URL invàlida." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Conjunts de dades més ben valorats" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Valoració mitjana" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Nombre de valoracions" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Sense valoracions" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grups més grans" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grup" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Nombre de conjunts de dades" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "No hi ha grups" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Etiquetes més freqüents" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nom de l'etiqueta" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Nombre de conjunts de dades" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Usuaris que han creat més conjunts de dades" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Usuari" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menu d'estadístiques" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Conjunts de dades més editats" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Text" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" +"S'ha produit un error durant la sol·licitud AJAX. No s'ha pogut carregar la " +"vista." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Vídeo" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "URL del fitxer de vídeo" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"p.ex. http://example.com/video.mpeg (si es deixa en blanc s'usa la URL del " +"recurs)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "URL del poster" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "p.ex. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Ho sentim, el vostre navegador no suporta videos incrustats, però no us " +"preocupeu, podeudescarregar-vos el" +" fitxer i veure'l amb el vostre reproductor favorit." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Lloc web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL del lloc web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"p.ex. http://example.com (si es deixa en blanc s'usa la URL del recurs)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "El vostre navegador no suporta iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funció d'autorització no trobada: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administració" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Contribuïdor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Membre" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Heu de ser administradors del sistema per administrar" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Nom del lloc" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Estil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Titular del lloc" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logotip del lloc" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Quant a" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Text de presentació" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Text introductori" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text de la pàgina d'inici" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS personalitzat" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +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:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Pàgina d'inici" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema al purgar la revisió %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purga completa" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Acció no implementada." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Accés denegat" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "No trobat" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Mala sol·licitud" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Acció desconeguda: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Error JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Dades de la sol·licitud incorrectes: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grup no trobat" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organització no trobada" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipus de grup incorrecte" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organitzacions" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grups" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiquetes" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formats" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Llicències" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "L'usuari %r no està autoritzat a editar %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "No autoritzat a actualitzar per lots" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "No autoritzat a crear un grup" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Error d'integritat" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "No teniu autorització per a esborrar el grup %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Heu esborrat l'organització" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Heu esborrat el grup" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sigut esborrat." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Usuari %r no autoritzat per a editar els membres de %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "No autoritzat a crear membres per al grup %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "No teniu autorització per a esborrar membres del grup %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Heu esborrat el membre del grup. " + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Seleccioneu dues revisions abans de fer la comparació." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Historial de revisions del grup de CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Canvis recents al grup de CKAN" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Missatge de registre: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "No esteu seguint {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "No seguiràs {0} a partir d'ara" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "No teniu autorització per a veure els seguidors %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Cerca incorrecta: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "El paràmetre \"{parameter_name}\" no és un número enter" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Conjunt de dades no trobat" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format de revisió invàlid: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Visualitzar conjunts de dades de tipus \"{package_type}\" no està suportat " +"({file_lr})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "No autoritzat a llegir el paquet %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisions dels conjunts de dades de CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Canvis recents als conjunt de dades de CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "No autoritzat a crear un paquet" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "No teniu autorització per a modificar aquest recurs" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "No teniu autorització per a modificar aquest conjunt de dades" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "No s'ha trobat el conjunt de dades {id}." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Afegiu almenys un recurs de dades" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "No teniu autorització per a crear un recurs" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +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:953 ckan/views/dataset.py:614 +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:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "No s'ha pogut actualitzar l'índex de cerca." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Heu esborrat el conjunt de dades. " + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "No teniu autorització per a esborrar el paquet %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Heu esborrat el recurs." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "No teniu autorització per a esborrar el recurs %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Vista del recurs no trobada" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Dades del recurs no trobades" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "No hi ha descàrregues disponibles" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "No teniu autorització per a llegir el conjunt de dades %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "No autoritzat a llegir el recurs %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "No teniu autorització per a editar el recurs" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Vista no trobada" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tipus de vista no trobat" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Dades de la vista de recurs incorrectes" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "No s'ha proporcionat la vista de recurs" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "No hi ha cap previsualització definida." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Usuari no trobat" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "No autoritzat a crear un usuari." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "No autoritzat a crear un usuari" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "No autoritzat a eliminar l'usuari amb id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "No s'ha especificat cap usuari" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "No autoritzat a editar l'usuari %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Perfil actualitzat" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "No autoritzat a crear l'usuari %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha incorrecte. Si us plau, torneu-ho a provar." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"L'usuari \"%s\" ha estat registrat, pero encara teniu la sessió iniciada com" +" a \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "No autoritzat a editar un usuari." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "La contrasenya introuduïda és incorrecta" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Contrasenya antiga" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Contrasenya incorrecta" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "No s'ha pogut iniciar sessió. Nom d'usuari o contrasenya incorrectes." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "No autoritzat a actualitzar la contrasenya." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "L'adreça de correu electrònic és obligatoria" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Error enviant el correu. Proveu d'aquí una estona o contacteu amb un " +"administrador per a més ajuda." + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Se us ha enviat un enllaç de reinici (si el compte especificat existeix)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "No autoritzat a actualitzar la contrasenya." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Clau de reinici invàlida. Si us plau, torneu-ho a intentar" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "La vostra contrasenya s'ha actualitzat" + +#: ckan/controllers/user.py:565 +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:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Les contrasenyes que heu introduït no coincideiexen." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Cal que faciliteu una contrasenya" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "L'element de seguiment no es troba" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} no es troba" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Tot" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Veure" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nova activitat a {site_title}" +msgstr[1] "{n} noves activitats a {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Ara mateix" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Desconegut" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Recurs sense nom" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nou conjunt de dades creat" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Recursos editats." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Preferències editades." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "vista {number}" +msgstr[1] "vista {number}" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vistes recents" +msgstr[1] "{number} vistes recents" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "No hi ha cap adreça de correu disponible!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organització" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grup" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Falta el valor" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "El camp %(name)s no s'esperava." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Si us plau entreu un valor enter" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Ha de ser una cadena de text Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Recurs(os) invàlid(s)" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extres" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "El vocabulari d'etiquetes \"%s\" no existeix" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Conjunt de dades" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "No s'ha pogut interpretar com a JSON vàlid" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Cal proporcionar una organització" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "No podeu moure aquest conjunt de dades a una altra organització" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "L'organització no existeix" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "No podeu afegir un conjunt de dades a aquesta organització" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Valor enter invàlid" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Ha de ser un nombre natural" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Ha de ser un valor enter positiu" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Format de la data incorrecte" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "No es permeten enllaços al missatge de registre" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "L'identificador del conjunt de dades ja existeix" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Recurs" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Aquest nom o identificador de grup no existeix." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipus d'activitat" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Els noms han de ser cadenes de text" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Aquest nom no es pot fer servir" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Ha de tenir al menys %s caràcters" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +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:385 +msgid "That URL is already in use." +msgstr "Aquesta URL ja està en ús." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Clau duplicada \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Aquest nom de grup ja existeix a la base de dades" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "L'etiqueta \"%s\" ha d'estar en minúscules" + +#: 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:583 +msgid "That login name is not available." +msgstr "Aquest nom de registre no es troba disponible." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "No es pot modificar el nom d'usuari." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Si us plau, introduïu les dues contrasenyes" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Les contrasenyes han de ser cadenes de text" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "La vostra contrasenya ha de tenir 8 o més caràcters" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Les contrasenyes introduïdes no coincideixen" + +#: ckan/logic/validators.py:639 +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:648 +#, 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:656 +msgid "That vocabulary name is already in use." +msgstr "Aquest nom de vocabulari ja existeix." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Vocabulari d'etiquetes no trobat." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "L'etiqueta %s no pertany al vocabulari %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Falta el nom de l'etiqueta" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "L'etiqueta %s ja pertany al vocabulari %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Si us plau, proporcioneu una URL vàlida" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Aquest rol no existeix" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Els conjunts de dades sense organització no poden ser privats." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "No és una llista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "No és text" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Aquest progenitor crearia un bucle en la jerarquia" + +#: ckan/logic/validators.py:821 +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:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" és requerit quan s;usa \"filter_values\"" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" és requerit quan s'usa \"filter_fields\"" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Hi ha un altre camp amb el mateix nom" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "El correu electrònic {email} no té un format vàlid" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Ha de ser un diccionari (dict)" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "L'adreça de correu {email} pertany a un usuari registrat." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "El valor ha d'estar entre {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "El valor ha de ser un objecte JSON vàlid" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "No s'ha pogut interpretar el valor com a JSON vàlid" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "No s'ha pogut interpretar el camp extra '{name}' com a JSON vàlid" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Falta el valor" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "El rol ha de ser un d'aquests valors: \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "No autoritzat a afegir col·laboradors" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Col·laboradors dels conjunts de dades no activats" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Esteu intentant crear una organizació com a grup" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Heu de proporcionar una valoració (paràmetre \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "La valoració ha de ser un valor enter." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "Error enviant el correu amb la invitació, l'usuari no s'ha creat: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Cal que us identifiqueu per a seguir usuaris" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "No us podeu seguir a vosaltres mateixos" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Ja esteu seguint {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "L'usuari {username} no existeix." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Conjunt de dades no trobat" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "No es pot eliminar l'organització si encara té conjunts de dades" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id no present a les dades" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "No s'ha trobat el vocabulari \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "No s'ha trobat l'etiqueta \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Cal que us identifiqueu per a seguir qualsevol cosa." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "No esteu seguint {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "El rol ha de ser un d'aquests valors: \"{}\"" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "No autoritzat a llegir els col·laboradors" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Recurs no trobat" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "El paràmetre no és un booleà" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "No ho especifiqueu si feu servir el paràmetre \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Ha de ser parelles de tipus :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Camp \"{field}\" no reconegut en resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "No s'ha trobat el paquet." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "No s'ha trobat l'estat de tasques" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "No s'ha trobat l'organització." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "L'usuari %s no està autoritzat a crear conjunts de dades" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "L'usuari %s no està autoritzat a editar aquests grups" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"L'usuari %s no té autorització per a afegir un conjunt de dades a aquesta " +"organització" + +#: ckan/logic/auth/create.py:61 +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:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +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ó." + +#: ckan/logic/auth/create.py:76 +#, python-format +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:108 +#, 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:119 +#, 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:129 +#, 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:145 +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:148 +msgid "Not authorized to create users" +msgstr "No autoritzat a crear usuaris" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "No s'ha trobat el grup." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"Usuari %s no autoritzat a afegir col·laboradors a aquest conjunt de dades" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +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:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, 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:107 +#, 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:120 +#, 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/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" +"Usuari %s no autoritzat a eliminar col·laboradors d'aquest conjunt de dades" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "No teniu autorització" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "L'usuari %s no està autoritzat a llegir aquests conjunts de dades" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "L'usuari %s no està autoritzat a llegir el conjunt de dades %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "L'usuari %s no està autoritzat a llegir el recurs %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Usuari %s no autoritzat a llegir el grup %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Cal que us identifiqueu per a accedir al vostre panell." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" +"Usuari %s no autoritzat a llegir els col·laboradors d'aquest conjunt de " +"dades" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "L'usuari %s no està autoritzat a editar el conjunt de dades %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "L'usuari %s no té autorització per a modificar el recurs %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"L'usuari %s no està autoritzat a canviar l'estat del conjunt de dades %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "L'usuari %s no té autorització per a modificar l'organització %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "L'usuari %s no està autoritzat a canviar l'estat del grup %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "L'usuari %s no està autoritzat a editar els permisos del grup %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Cal haver iniciat sessió per editar l'usuari" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "L'usuari %s no està autoritzat a editar l'usuari %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Usuari {0} no autoritzat a actualitzar l'usuari {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "L'usuari %s no està autoritzat a canviar l'estat de la revisió" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"L'usuari %s no està autoritzat a actualitzar la taula de l'estat de tasques" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"L'usuari %s no està autoritzat a actualitzar la taula term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "títol" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "No s'ha especificat la llicència" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Altres (Oberta)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Altres (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Altres (Atribució)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Altres (No comercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Altres (No oberta)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depens de %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "és una dependència de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "té la derivació %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "enllaça amb %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "és enllaçat des de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "és un fill de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "és un progenitor de %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "té el germà %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "No hi ha dades de l'API per a carregar-les en aquest recurs" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Ha fallat la càrrega d'informació de l'API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Comenceu a escriure..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "No s'ha trobat coincidències" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "L'entrada de dades és massa curta, almenys ha de tenir un caràcter" +msgstr[1] "" +"L'entrada de dades és massa curta, almenys ha de tenir %(num)d caràcters" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Aquest formulari conté modificacions no desades" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Acció de confirmació" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Teniu tota la seguretat per a dur a terme aquesta acció?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirma" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancel·lar" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Deixar de seguir" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Seguir" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Enllaç" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Enllaçar a una URL a l'Internet (també podeu enllaçar a una API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Carregar" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Si us plau seleccioneu una altra vegada l'arxiu a pujar" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Esborra" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Pujar un arxiu des del vostre ordinador" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Arxiu" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Reordenar recursos" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Podeu re-ordernar els recursos arrossegant-los amb la icona de la fletxa. " +"Arrossegueu els recursos a la dreta i col·loqueu-lo a la posició desitjada. " +"Quan estigueu llestos, feu clic en el botó \"Desar ordre\"" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Desar ordre" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Desant..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Carregar un arxiu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ha tingut lloc un error" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "No es pot carregar l'arxiu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "No es pot autenticar la càrrega" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "El recurs s'ha carregat" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "No es pot obtenir les dades per a l'arxiu carregat" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Esteu pujant un arxiu. Esteu segurs que voleu marxar de la pàgina i aturar " +"la pujada?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Afegir filtre" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Selecciona un camp" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editar" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mostra més" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Oculta" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Sobre {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Suportat per CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Paràmetres sysadmin" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Vegeu el perfil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Panell (%(num)d nou element)" +msgstr[1] "Panell (%(num)d nous items)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Panell de control" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Configuració del perfil" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Tancar sessió" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Compte" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Identificació" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrar-se" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Conjunts de dades" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Cerca conjunts de dades" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Cerca" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Cercar conjunts de dades" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Enviar" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Saltar al contingut" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Molla de pà" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Carrega menys" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Carrega més" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "No hi ha activitats dins d'aquest flux d'activitat" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administració" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmins" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuració" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Paperera" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logotip del lloc" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Segur que voleu reiniciar la configuració?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reinicia" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Actualitzar configuració" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opcions de configuració de CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Títol del lloc: Aquest és el títol d'aquesta instància " +"de CKAN. Apareix en diversos llocs de CKAN.

Estil: " +"Escolliu d'una llista de variacions simples dels principals esquemes de " +"colors per a obtenir un tema operatiu ràpidament.

Titular del" +" Logo del site: Aquest és el log que apareix a la capçalera de " +"totes les plantilles de la instància de CKAN.

Sobre:" +" Aquest text apareixerà en aquestes instàncies de CKAN Pàgiona sobre....

Text " +"introductori: Aquest text apareixerà on aquestes instàncies de CKAN" +" Inici com a benvinguda als visitants.

" +"

CSS personalitzat: Aquest és un bloc de CSS que apareix " +"al tag <head> de totes les pàgines. Si desitgeu " +"personalitzar les plantilles de forma més complerta, us recomanem que llegiu la documentació.

" +"

Pàgina d'inici: Permet escollir una distribució " +"predefinida per als mòduls que apareixen a la vostra pàgina d'inici.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmeu el reinici" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar CKAN" + +#: 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 "" +"

Com a administrador del sistema teniu control absolut sobre aquest lloc." +" Aneu amb compte!

Per a més informació sobre les funcionalitats dels " +"administradors de sistema, vegeu la guia d'administració del sistema

de CKAN " + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "Esteu segur que voleu purgar-ho tot?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Purgar tot" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"Purgar conjunts de dades, organitzacions i grups esborrats per sempre i " +"irreversiblement." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirmeu l'esborrat" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Conjunts de dades esborrats" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Organitzacions esborrades" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Grups esborrats" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purgar" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Aquest recurs no es pot previsualitzar en aquest moment." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Cliqueu aquí per a obtenir més informació" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Descarregueu el recurs" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Previsualització no disponible." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Més detalls..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "No hi ha un gestor per al tipus de dada: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estàndard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrada Estàndard" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mitjà" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Entrada de llargada mitja" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Complerta" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Entrada de llargada complerta" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Llarga" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Entrada llarga" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Afegir abans" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Entrada d'afegir abans" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Camp personalitzat (buit)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Camp personalitzat" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Desplegable" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flux d'activitat" + +#: 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 "Administradors" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Afegir un grup" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulari de grup" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Segur que voleu esborrar el grup - {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 "Segur que voleu esborrar el membre - {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:15 +#: 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 "Gestiona" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Modifiqueu el grup" + +#: 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 "Membres" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Afegeix grup" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Cercar grups..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Ara mateix no hi ha grups en aquest lloc" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "En voleu crear un?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Torneu a la llista de membres" + +#: 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 "Modifiqueu membre" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Afegeix un membre" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Usuari existent" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "Si voleu afegir un usuari existent, cerqueu el seu nom d'usuari." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "o" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Usuari nou" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Si voleu convidar un nou usuari, introduïu el seu correu electrònic. " + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rol" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Segur que voleu eliminar aquest membre?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Esborrar" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Què són els rols?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: Pot editer informació del grup, així com " +"gestionar els membres del grup

Membre: Pot afegir i " +"treure conjunts de dades del grup

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Crea un grup" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Modifica grup" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crea grup" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Cercar conjunts de dades..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Conjunts de dades del grup: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nom" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "El meu grup" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Una mica d'informació sobre el meu grup..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Segur que voleu eliminar aquest Grup?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Desa grup" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Vegeu {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Esborrar conjunt de dades del grup" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Què són els grups?" + +#: 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 "" +"Podeu usar els grups de CKAN per crear i gestinar col·leccions de conjunts " +"de dades. Per exemple per agrupar conjunts de dades per a un projecte o " +"equip en particular, per a un temàtica en particular, o per ajudar a la gent" +" a cercar i trobar els vostres propis conjunts de dades." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Esborrat" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "llegiu més" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Benvinguts" + +#: 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 és la plataforma líder mundial en programari lliure per a " +"dades.

CKAN és una solució completa i a punt per a ser usada, que fa " +"les dades accessibles i usables - proporcionant eines per a la publicació " +"continuada, compartició, llocalització i ús de les dades (incloent " +"l'emmagatzematge de dades i la provisió de robustes APIs). CKAN es dirigeix " +"als publicadors de dades (governs regionals i nacionals, companyies i " +"organitzacions) que volen fer que les seves dades estiguin obertes i " +"disponibles.

CKAN l'usen governs i grups d'usuaris arreu del món i " +"potencia una varietat de portals de dades oficials i comunitaris, incloent " +"portals per a governs locals, nacionals i internacionals, tals com el " +"d'Anglaterra suchdata.gov.uk i el de la " +"Unió Europea publicdata.eu, el " +"brasileny dados.gov.br, El govern " +"holandès, com també de ciutats d'Anglaterra, Estats Units, Argentina, " +"Finlàndia i d'altres llocs.

CKAN: http://ckan.org/
Volta per CKAN: http://ckan.org/tour/
Resum de " +"funcinalitats: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Benvinguts 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 "" +"Aquest és un fantàstic paràgraf introductori sobre CKAN o el lloc en " +"general. No tenim cap còpia per a venir aquí encara, però aviat la tindrem." + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Aquesta és una secció destacada" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "p.ex. medi ambient" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Cercar dades" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetes freqüents" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadístiques" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunt de dades" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjunts de dades" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organitzacions" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grups" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Aquest camp és requerit" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Podeu usar el format Markdown" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Clau" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Personalitzat" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "El formulari conté camps incorrectes:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Camp requerit" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL de la imatge" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Esborrar pujada" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Afegir una organització" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulari de l'organització" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Modificar conjunts de dades" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "trobats per \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sentim no haber trobat cap conjunt de dades per \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Fer públic" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Fer privat" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Esborrany" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Aquesta organització no té conjunts de dades associats" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Segur que voleu eliminar l'organització - {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 "Edita l'organització" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Afegiu organització" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Cercar organitzacions..." + +#: ckan/templates/organization/index.html:29 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nom d'usuari" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Adreça de correu electrònic" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Actualitzar membre" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Admin: Pot crear/modificar i esborrar conjunts de " +"dades, i gestionar membres de les organitzacions.

" +"

Editor: Pot afegir i editar conjunts de dades, però no " +"pot gestionar membres de les organitzacions.

Member:" +" Pot veure els conjunts de dades privats de l'organització, però no pot " +"afegir-ne de nous.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} membre" +msgstr[1] "{count} membres" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Creeu una organització" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Afegiu una organització" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Creeu una organització" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Conjunts de dades a l'organització: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Què són les organitzacions?" + +#: 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 "" +"

Les organitzacions actuen com a entitats publicadores dels conjunts de " +"dades (per exemple, Departament de Salut). Això significa que els conjunts " +"de dades poden ser publicats i són mantinguts per tot el departament en " +"comptes d'un usuari individual.

Dins d'una organització, els " +"administradors poden assignar rols i autoritzat membres, donant permís a " +"usuaris individuals per publicar conjunts de dades en aquella organització " +"en particular. (p.ex Oficina Nacional d'Estadística).

" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +"CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending " +"on their level of authorisation to create, edit and publish." +msgstr "" +"Les organitzacions de CKAN s'uses per crear, gestionar i publicar " +"col·leccions de conjunts de dades. Els usuaris poden tenir diferents rols " +"dins de la organització, depenent del seu nivell d'autorització per crear, " +"editar i publicar conjunts de dades." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "La meva organització" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Una mica d'informació sobre la meva organització..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Esteu segurs que voleu esborrar aquesta organització? Atenció: no es pot " +"eliminar un organització mentre contingui conjunts de dades, públics o " +"privats." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Desa l'organització" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Veure {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Creeu un conjunt de dades" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Què són els conjunts de dades?" + +#: 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 "" +" Un conjunt de dades de CKAN és una col·lecció de recursos de dades (com per" +" exemple arxius), junt amb una descripció i altra informació, en una URL " +"concreta. Els conjunts de dades són el que els usuaris veuen quan cerquen " +"dades." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Canvis" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Segur que voleu esborrar el conjunt de dades - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Segur que voleu esborrar el recurs - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Mostra conjunt de dades" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Editar metadades" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +msgstr "Col·laboradors" + +#: 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 "Editar vista" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Previsualització" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualitza" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associar aquest grup amb aquest dataset" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Afegeix al grup" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "No hi ha grups associats amb aquest dataset" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Modifica el conjunt de dades" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Afegeix dades al conjunt de dades" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Afegeix un nou recurs" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Afegir recurs" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Recurs nou" + +#: 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 "Afegir vista" + +#: 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 "" +"L'explorador de dades pot ser lent i poc fiable si la extensió de la " +"DataStore no està habilitada. Per a més informació, si us plau consulteu la " +"documentació de l'explorador de dades. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Afegir" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"Esteu veient una versió antiga d'aquest conjunt de dades. Per veure la " +"versió actual, feu clic aquí." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Tots els recursos" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Mostra recurs" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Editar recurs" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistes" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Punt final de la API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Anar al recurs" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Descarregar" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Descripció del conjunt de dades:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Font: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "No s'han creat vistes per a aquest recurs" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "No veieu les vistes esperades?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"Aquestes són algunes possibles raons per les quals no es mostren les vistes:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "No s'ha creat un vista adequada per a aquest recurs" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Els administradors del lloc no han habilitat els connectors rellevants" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Si la vista requeriex que les dades estiguin a la DataStore, el connector de" +" la DataStore pot no estar habilitat, o les dades no s'han incorporat a la " +"DataStore o la DataStore encara no ha acabat de processar les dades" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Informació addicional" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Camp" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Última actualització de les dades" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "desconegut" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Última actualització de les metadades" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creat" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Llicència" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nova vista" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Aquest recurs no té vistes" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Afegir nou recurs" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "bolcat complert en {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 "" +"Podeu accedir també a aquest registre usant l'API %(api_link)s (vegeu " +"%(api_doc_link)s) o descarrega-ho a %(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 "" +"També podeu accedir a aquest registre usant l'API %(api_link)s (vegeu " +"%(api_doc_link)s)." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Totes les vistes" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Veure vista" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Previsualitzar vista" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Editar col·laborador" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Afegir col·laborador" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Tornar a tots els col·laboradors" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "Esteu segur de que voleu eliminar aquest col·laborador?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Actualitzar col·laborador" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "Quins són els rols disponibles?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Administrador: A part de gestionar el conjunt de dades, " +"els administradors poden afegir col·laboradors al conjunt de dades.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Editor: Els editors poden editar el conjunt de dades i " +"els seus recursos, així com accedir al conjunt de dades si és privat.

" +"

Membre: Els membres poden accedir al conjunt de dades si" +" és privat, però no editar-lo.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Afegir col·laboradors" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} col·laborador" +msgstr[1] "{count} col·laboradors" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informació addicional" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Font" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Mantenidor" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versió" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Estat" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última actualització" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Abans de crear un conjunt de dades heu de crear una organització" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crear una nova organització" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"No hi ha organitzacions a les que pugueu assignar aquest conjunt de dades" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Demaneu a un administrador que creï una organització abans de continuar" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "A %(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Títol" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ex. Un títol descriptiu" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ex. el-meu-conjunt-de-dades" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "ex. Algunes notes útils sobre les dades" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ex. economia, salut mental, govern" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organització" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Cap organització" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibilitat" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Públic" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Actiu" + +#: 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 "" +"La llicència de dades que seleccioneu al camp superior només s'aplica" +" als continguts de qualsevol recurs que afegiu a aquest conjunt de dades. " +"Enviant aquest formulari. accepteu publicar les metadades introduïdes" +" en el formulari sota la Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Segur que voleu esborrar aquest conjunt de dades?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Següent: Afegeix Dades" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email de l'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 "joan@exemple.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email del mantenidor" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Modifica el recurs" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dades" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ex. Preu de l'or el Gener de 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Algunes notes útils sobre les dades" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ex. CSV, XML o JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Es detectarà automàticament. Podeu deixar-ho en blanc." + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ex. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Mida de l'arxiu" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ex. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "Tipus MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ex. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Segur que voleu eliminar aquest recurs?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Anterior" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Desa i afegeix-ne un altre" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Finalitzar" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Què és un recurs?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Un recurs pot ser qualsevol arxiu o enllaç a un arxiu que conté dades útils." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explora" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Més informació" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Pantalla sencera" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Incrustar" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "La vista del recurs no està disponible en aquest moment." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Incrustar vista del recurs" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Podeu copiar i enganxar el codi d'incrustació en un CMS o blog que suporti " +"codi HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Amplada" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Altura" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Codi" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Previsualització del recurs" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Dada i recursos" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Aquest conjunt de dades no té dades" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crea conjunt de dades" + +#: 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 "Afegiu dades" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "p.ex. Vista" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "p.ex. Informació sobre la vista" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Eliminar filtre" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Què és una vista?" + +#: ckan/templates/package/snippets/view_help.html:4 +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Afegir conjunt de dades" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estat del DataPusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de trackback" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mostra més {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Mostra només {facet_type} populars" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Inici" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Vés" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "No s'ha indicat la llicència" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Aquest conjunt de dades satisfà la Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "No hi ha cap descripció per a aquesta organització" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Aquest conjunt de dades no té descripció" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrar resultats" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Prova una altra cerca.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Hi ha hagut un error mentre es " +"cercava. Si us plau proveu-ho de nou.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} conjunt trobat per \"{query}\"" +msgstr[1] "{number} conjunts de dades trobats per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "No s'ha trobat cap conjunt de dades per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} conjunt de dades trobat" +msgstr[1] "{number} conjunts de dades trobats" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "No s'ha trobat cap conjunt de dades" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} grup trobat per \"{query}\"" +msgstr[1] "{number} grups trobats per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "No s'ha trobat cap grup per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "S'ha trobat {number} grup" +msgstr[1] "S'ha trobat {number} grups" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "No s'ha trobat cap grup" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "S'ha trobat {number} per \"{query}\"" +msgstr[1] "S'ha trobat {number} organizacions per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "No s'ha trobat cap organització per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organització trobada" +msgstr[1] "{number} organitzacions trobades" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "No s'ha trobat cap organització" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscriure" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Correu electrònic" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha afegit l'etiqueta {tag} al conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ha modificat el grup {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ha modificat l'organització {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ha modificat el conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} ha actualitzat el recurs {resource} del conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} ha actualitzat el seu perfil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ha esborrat el grup {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ha esborrat l'organització {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ha esborrat el conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"{actor} ha esborrat el recurs {resource} del conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} ha començat a seguir {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} ha començat a seguir {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} ha començat a seguir {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} ha creat el grup {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} ha creat l'organització {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} ha creat el conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} ha afegit el recurs {resource} al conjunt de dades {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} s'ha registrat" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ha esborrat el tag {tag} del conjunt de dades {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etiquetes de la cerca" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Font de notícies" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Els meus conjunts de dades" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Les meves organitzacions" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "El meus grups" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activitat dels elements que segueixo" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "No has creat conjunts de dades." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Vos crear-ne un ara?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "No sóu membre de cap grup." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "No sóu membre de cap organització." + +#: 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 "Usuaris" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informació del compte" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"El teu perfil permet a d'altres usuaris de CKAN que sàpigan qui ets i què " +"fas." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Canviar detalls" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nom complet" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ex. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Una mica d'informació sobre tu" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Canviar contrasenya" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Contrasenya d'administrador" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Contrasenya" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirma la contrasenya" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Esteu segurs que voleu eliminar aquest usuari?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Esteu segurs de que voleu regenerar la clau de la API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Regenerar clau de la API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Actualitza el perfil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Tots els usuaris" + +#: 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 "Iniciar sessió" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Necessites un compte?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Registra't, només t'ocuparà un minut." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crea un compte." + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Heu oblidat la contrasenya?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Cap problema, usa el teu formulari de recuperació de contrasenya per a " +"reiniciar-la." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Heu oblidat la contrasenya?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Desconnectat" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Us heu desconnectat." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ja estàs identificat com a {user}" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Tancar sessió" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Recorda'm" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Ja estàs identificat" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Necessites desconnectar-te abans de connectar-te amb un nou compte." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Desconnecta'm ara" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registre" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registra'm amb un Compte" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Per què registrar-me?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crea conjunts de dades, grups i altres coses excitants" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "usuari" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nom complet" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Crea compte" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Reinicia la teva contrasenya" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Reinicia la contrasenya" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Podeu canviar el nom d'usuari. No es pot modificar més endavant." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Modifica la contrasenya" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Com funciona això?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Simplement introdueix una nova contrasenya i modificarem el teu compte" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "L'usuari no ha creat encara conjunts de dades." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "No has proporcionat una biografia." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Aquest usuari no té biografia." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Significa que només tu pots veure'l" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Membre des de" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Clau API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Reinicieu la vostra contrasenya" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Activitat des de:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Llista de resultats..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "No esteu seguint res" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Cap seguidor" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Cercar usuaris" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "La vostra contrasenya ha de tenir 8 o més caràcters." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "No està permès redireccionar a un lloc extern" diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..3bb787688992bbf1b756a0c15266f4f3a533ef84 GIT binary patch literal 92824 zcmc${37lM2nZJL-zV8CEUK&EWA>EyXJ!Bz!0@=vMs9hgH5dj5s zaD)Neq5}>hprYs~Aeh9389`-qR2W83#6cZgaKUl;J>U17d+SzrbrP8QfBt?XPoI0w zJ?nek^Pcydd+XUlc6(pI|6bWO2#$dd9j{RRf0xe;g2M>D3G)A-%s*4%r#*iG_axkU zo{KjL&LBJw?gQTrNji8pTm#<=JK;-kEj(&g5KI~u1RLR9gzuRh1jBH}oFMoPd;w;<=WkL9id!zq~96GVn?G&v5ecAUGNR47S5VE)0Sb z;dyWc%tDe3J_pZ*e}XFa+1w<%U_IOm4nw8?cBp#(9lQbF235b4R|diEa56j)o(1=Y z3*i3nLa21tLOuUMsPyiFZ-fuPBj7ju{TJXKgnt2*-YZb`*lkr18~{&+hrp>&=`VpQ z?`7~HxE3A^OK@NKHmGvm1XZrveE6eK@$d8e5>)(e!b9ORQ1$;MRQXhW^1KhKeh)*n%U6B)J5cTMpHOo9D;UCw7t?2O3G9Sd!AbCbcqaTIoC1%y zgf@rg!@q}v@D#Z3rSATjQ1X?7s^6`!18()#e*+c&gv(s|i=o1s;1c*xQ1$*DRQ-;n z(NvEU;U2IZN?uNfC&5|p4X_8Q{%?hnqjy2|+nw+@_|H)N`8{|T{4rEJz6$5SgWlxi zVii>Xt%d5}KB)E^g2%#Z;nDC;_)Yj2R6aMq*|pPMQ04p&h$;wv3>g~1Neu2|;CiTX z{ykKGeiSZ%55R@+e>~^DB?uM~z7a}}{vE3Qk77`ZOQ728YN-Bs0$v4o?+Su$cn#!I z@LzBqynu_U=ifn%yYE1?>R#-WsU%dp!rC%6$#AcK6rs zg6j9rLdo}&Q2qOyzyAj)`QEd~)$<&v@-KpthYO+lrw3~M{Vi1aKLN+Xt#A+c5|sY< z6;wI?1oiyhy)M7wpq@JeO5T>h4tNQa9A5{g!kgi4@EcI=`faH8e;TfXKZ9z=HGM&F z{5bS8JcRJubFO~3LdoIXQ0Z=iD*u!I`p*L`GupO$r%b?mT>v<(qyZr-H zc|H!0f)7AF_k_RyODO%YOTQa;Q{b+I7eckqVyOI9LiOKeQ2m#O8mGfh{rz`vU-)IH z_)ow#_+6;{gS;!x-f(wxXmT60R?W)8YG}>h}Yv{C@_O&aa`;{WFxD99(qeIRWZ^r{`3t_M8Xx{1T}0 zt%AyT1C;)_66(26!TsPvQ0@73sPaAm4}jl;O7BIe^j`M-9aMk*87lsvB^N#x9!dB# zsQ8Pa$pcjSmqEpU3p@y}^WkBr@>~P&g71OS8)seN#{t}ha2Bduy-@WTgnI6+Q0ZUm zuipR_?`D60GqmvxmF`wJ9{va(2=^|#{&*u)xjUfb{tO?!2%by$%~1K=4%HtY^5F-d z_X<>h?>a~xa9{Wa_-?3t?}Tc<`=HwM0jPSv?D;BGId@&}`r!bm zeBS_-?uk(4Iu$D3Sy1Jl4JW{bQ2keeYOnQB>0b*K|L@>I@cmHrxECtDFF-x_6{vRk z22^>!1rLWm@b`ZO4SKY za6W8>%RDzg<+B+o{wLu?_^7}C3#j@XKJ3z&2-^uyhw6uZsCK&os(m;5@U>9ocn?(i zw?mDKyP=+c7@h)u1`mdZztz>h6{@}q;Y^r;N_R6|DJ`5X-4e?vWgAV!+%e+E1b&V{<(4UdP{L)GhUsPaDmC2!Aoz6_P`E?2vB4ui_) zM0h-$1eM-$*Z~LOba*F}eEtZke|`q_+$&J&jr$vCmmCU@CcG4?eCwdv>w16v!%*`4 z5LEv??(aVfRsY{YrMt)5Tzei0m3|vky5~ZrcM(+i3Q+y~0oVy2geu=ppxWtWsB-)T zO5Tq}si+=j!G&-pRKHyZkA)wE%I6_?6#O1M8U6<9`J>+MoVl% z8D0+;!cRh#?^USyCtvUGUkEQGya6iR$Kh%4zu_X-@=hmDd8qPT3DurAz}?{;Q2nvl z^RsX-!e57yk8eZu(=VagVcff%oV*dLolb|6*9B1bFM+4RE1=}*1OEEw;ogM53H96$ z;2!W7a5wl0lw7|G_koAp;I1DF6~6`Q`WaC9o#(?VpwfL4RC>Koa#4W$!Yko^@SQ$< zD>ONTO7{V%`h5keUH%=a9zTIf?=POa-{|h|2Pbp=XsC3Sz|-NI;3{}CY=tkv+3=v7 zoc*#A_7T1f>iJ#X&0GRchm+t{a4GyGoCyC4_k$DP%C;hsXRKwhEjL?LKVNeJD8?f3vH12UI%Kq2y+X53huJ zuG?Q<=ffqaa;%3c$J<~CZ-58Gdp*D8?|%y_-KXIM_?+k7@5QG^crsM|*FoLC-t$vX z<@`R>xOpB*Zg>BCCqE}b>9JO*a?JME7ekffLa67vq4Z!Ls$H&wC&Bxm^vP3D^7&h+ z{112^x^NtGAymIrZgKa&4E5a8@N^j5>iX#nsPYxzDez`^GJF^+y&uE*aKC?W;g#@I z!o!{)gHs4U1t-BhZgYOIv*2XH8=$U#97=wkhRSEJ+ugiz8f+)r1&@U9fzq3IL*?^z zsCnkMQ0=$h9d7)d0W8g2Ki}zXIz1P4Ia58GrrXeE3%|RK9DV;$I0{;0K|~`4|l05B>FVA9dwB398-aL-ortxF=i<4}x!kd%yye9;m@X z;WbeGbQ?SXehf-)J?O7*fr|GnsOMgQiuYR|-t8ZQ;7f!LgPY*L!8_p!{^^2$fXer> zyPQ7hg350Isy@R$d^=P={{*MQhv07TkMIKcS9k)v;A5`+2cX8u2jRK!U*J@@=Rdjj zo((exCoX1hdsXm z75|U01Ge1b(!CI#Nq88Z0zVB;h5rFHp7;KQli#!848m`QO6LQx4Q_*a?q#U>N8Ri6 z#zLt2T@TNK4?&I3SD@PIp!?i7o&wchOQ7WGa@Yai3YG3X{`z;J%K1CE7i_=Z$tQFn3QF$ohkL`%LiOL5p!#(y+z);a9spnP;a5DzebULr0Z@AV z7^rkQ;J)x|D7`lqE`V=>%I{9N54;B|{Rg4SwZ-#a;DLmnf(OALL6!d%cnI9@Q||up zPiQC>a=ryB-6B+eZ-t8YHmLUeFgy`H3e}!JhLY<8KkeGT1HO^)BB*@3;Tkv$ z^YGhnIh^@`ljHZmiwXZLd>oGd3}XWR621y=`>d0L_de*-e+){#pMfp#;Lo}8oDL-i z7emR@M%W2I0#(j$!&dlbI3Aw-c_+_{q2y=?YFxb!cEE4JnNXW+M}qU9>U{|ugqz^W z@D+F?Jo*c+o$iM1gueYDB^*f;Y`IAun_YjmEZiV~9Z$S0q)BgI; zp!(+(cm&+_A(zh4Q2jFrN^X}z#p{Pketx(Ukne1YoVUM0!ogqhAP*GeR!L{ z{{mEcuRzJ~o?mkF-jPu0bae&T%fdwe}y#lHouY?*`H$c_@7N~OH10~-N z`0zhNwf|#K&pi%R-tWN~@I|QhI{8s2KbJwZ)89bJ*+-$|>M5w}uR>iv`Y~r$UjWZ0 zd=peXz6vEz--jo_Kf@3n|7DlXc~IATpwhVxo(De{KuKUBRpL&^2W{QXD${crm4cYOE-*g?FP;Q8>4TU|a`IG^ylq3ZQrxC$P) z&EJQ|=)UJC;I4$f4i~_0z}?^*zT))RQBdU^4|V+v g>;rLz9hwxPHult(oms{X$ z!r$>c^6RdDFN1I7dN*7FH$kQUO{jAG5SHMN;bgcP<VsA!j%;8@h5ne>&HEXExS8u{u^rm?!Wc>PX6Bfw6h2LAyI-SU0w=*ko^|D&16BS7P-wZ)LcN0|m-vw3wFTmOGYfy5q?+b1mwZSt9cfm8@ZBTmW zNjMGe_7i6Z&4RZPuEJJ$z>BWDXF-*>$A@o)=Mesi4+lSWa?uHu&r&!ZUIR5w?tyy# zFK{>5`CqQzPKUb_z5uG87s6KfW+*wk7OH>mf-Uf2sQ&*U)cAT8s((&>$;sCYsOQ(h z>F_$Je*6mD3qAwYPA@>U=WpPNaJQei{%?i9Av_OC4$t|yYrmCnPr^6AMey(8Metd8 z5sRudd20Jg_8dwJRaT%r@(um#?24mGWZ9m zaxMI=8}}>V{)7uq{r^@dIlKibz0dmlPr(kt&q2x6LBC_o4&MmX&UZq!=f|Oy8x9cu zst=#>d(NPYqd%eYyY3IJU2lQP_Y+X%`U;!~zv-|48LAvdyz0iw8L*x3Y$CwEG|3xM_tK5?%z4gm=JQ;b)-a>hn7E+5~%VN;6nH~R6ig3SJ$2=K*>ofRC(K>gc?UT`|BTolL+4rmCg_0dGH0O`kfq%v-ac4ZL>Ny)Ky_NoYFI2x2 zpq|?Rr8oWts-Aa3mFF{_{{q!N&qKw3398<|foi8$q55TyaV~r`R6Di8$Kko~INjgH z-5(ECz9~@sbPiN~Rzj8QV$Uw9eDhH9P=!kO?NHC%3Xg%Gg01igD7pGQlpGznt9!l` zoFU;@=66hxhsWPe9fGdrb1y#Ox!v*jbI3GR>_5An)T=~v|%5Nc@2#ZkVeLvK^@MU-& zd;zLGPCn4(GZ9K|ra{$nIaIr6pyrhlR6aLDmH!{%x$w(S>Hh^vo=-Z+wZ~;}72zA8 z+VeT6bbkj`jy(?^Xa2}j;3C2iR66%V_3w9}%JVXm-rDt$aW>yffGY@Rp{{=pD!r%S z68IOW=N2D2&eoZ4fy)0j7{dGDh44wJ@|f%Zr_1w&ljP_>F=QQ+OCJYdWW!s@O(HO)}Y4a15ok5 z2$j#*pycr>sCfV7!xN5h=}m`6as5)L@lu0&?gl7%xD~3LTcPUvYtMs@9A|#84k$gj z2C5$lP~+!1DE+z_D*dP7WcWKMIcj~QlcNqOeKrHCe=hamE8!}_w?mcdWjF!uagFZe_k|yU>aY8t>hmQiz4JI!e}50Ey?zcA{}m|x5FG8&+XpJ%nNamQ zA8LGNq55S#RQz{%zQf z34Q^pe*Xzo|9y{j`sy?&`C19p4%b1|^G>MeKIy~Xfhy+@q00Y~5C0jez4koLrFR6> zb7w*I$K~)0xWR|-gR==g4psjBIaI20p9wXOUk=;gFq{kTgr~rlpycNbq0=*S;Q55t zL6!Tna1#7BRD11uf|H+>Q2m#OYR^qj^>`Olx!>on-|6`Pl$<;U)j!{ZYOfceF z=hgoHd!Xv`QK<3x8MqgG3~IbT4pq-*pyci)D7pL#RC)I~$(197x_^e}BB*-52`arR zR5>?6<#P>GzuXL!{zLFA_&C(~+GV_}_eF3P;kUtga4U@9J|~Z}^->8gB>YjR{`xt* z03JJGoUQY6Q1!bFs=YrB)&5_D%J-L0@&5u9@BCI*kISIisp!L3LAA$wq3UrbR6pGd z&xGHH-+~9VxpDP8lsx_vs=W?A#XWy4RKIjW_1A2ud=~idMV^;K<&%MGuN;*A8ibwj z-B5D+C8&Bm16BS%LOr+dsjggyLdntjumrD$YWH73jjN+4I(az{s+<|9aWepw?hR1o z{5Vv9-w)NV+x+!sp!Dc-Q1$o|)bsnbyZ$&8N`5bgnisBx8lMk(J_FZ{qrW@G1#jW{ zK&R8&Pe9FAKY`QXUX#X|Uw%H+^Y4I4?-NjZ;c2M$_&t<8aoA*6&�Zi)*0t(x;*1 z>_sR&cl;DL-(Con&xhbt_#aTu9eJ8-?|E=B;TqID{bi`~y#Upod!Fv(VKP)Zy$R}m z1**N?2M6FMUFZbC09R#vRe*2%k}qi zxI5vCVF=$0HQuj+(mS_7_2WN5&1d&Q>GN+v_4{{V2%q!UcRAa|-vdtJ`o2(dHv?+? z6g+Q%(o2s(wdYe%<=g!nr&l|m!mFX$^GYbY;~prv_%YOT2TpbOXF-jt0#v)+4ky8_ zQ0e>@svO6i>-u>qR66g2O8-%)=YHX@A2H2cpAD665$gFnp!(-upwj&XoC6P^KF-c% zT?*R?-vrfO4?)?ZKZHtW&lxU!8dSVXq0+q$9t=MZ_kxdmJ_RM8&%piQt59;W$4ocQ zj)l^n=R&pTGI$`&LiJ-6N^jf*rMEUi_3QmmW!O)j3f5DGxP1KLTgMe}|HbBj&s7i=f8sm7WhmwfBERjgR9N zxN=+qmCie%;(rM$|KCH^r(>bZcOBIA4?vac-=N~}zsT7E^WbTO-{ZLzo=5l(P~|=6 zd^c|tp~mkQq2%X}Q1Ue60{48c=N<3}u0ILYelJ3m^Weo^uR)FbcfgC_qfl~itginK#x4H0e zxC%-h`#rDn_umVZ&PU-=_$XBR2QG8vJPNAZCqt!sF4Q051`Q~h>ad;6_J6r=*j|ZX3@eQc_p7qy%4X+@) z_l3@1Fbvi1d#-SLWi8ARz6<^k9<*|toxl4Pl!Ct^P$T5HaH%B z1WG@B4N5=#2F``yMNV!asDA%PDEWLAO8$?!*p>HEDETTt_5Zza349K!ew~-Nde4Vf z6RyGu@VD?LclP?^|97ZzJqOhfzkt%;`>%E5X0qowQ1Unn>iG+y z;zv;VT;szZ_xB%%D*v-k?eI&e_WG+2ANCd}k0(NKQ?`W6ASx zpyc{yDEs~nsQP>aTE9TG>tj&QJq;xnKZk0^Q!`G!-V7yo?}DB1Q&9c=oWH(rm%Bb0 zO3pG+`foE-`aghbhgYEb^RRB$e^a3PXBkv`ZiE_dAB2+Ie}#H(udM5rRwy|-4`$&~ zsQey)YLDMQwbLJbc(2ImvHhX+!J$z1Cql)a=EJjm_(E9W`WpB-_&AK<+j_>*XVyzrT1DRYt%w)6Ws8R`YJ-QkeB1%^+QqoFP zb@57>N@abq%;S^7xtVH)8Eduu>d|W=`wO%$U|$nvqU+L$#b~nXx<{k!e^h z577rjnzkrH!Q7X_GWpmU7`EV^Aw?SoMNXF}rIN&MVwFxOXb{PrW&Pc6=$i=EAUWUn4M}cD}HaeSSy9O0z+=Vn&Ndg zRnw}dQ_9gmkzpB^E$k^52SUrY;^ii3?veev$htLWUBqCpmPJ&oaeR7|SHe&UyPXVJ z&-g66i}`$}t60v^hm2|En~BRYs)0TrPNRdp{c_7LF8 zoC{_xMH(vAOrbjp7crPhB?c&JsSplk%DG|Y{;<1N zsnV^~ga~NIey2%FGt#5jHA1F0TwLrej?oTzZjnr;p~`BYz9^GL(^1w8`a@S58>x!Y z%`+@VE00-SG|tHEs?mmOxSr|7H*JXa8Qt_u9(7HP2-m7>y}q_USVDtIQIBf%MFsS2 zxQa~v4>Im!K8W+x-$}MoqZujGZe68c26GiD%F%5w$Mw&gl`BV<2WiWMUHKxNNZS%& zRO?UcE@q<{C+Dl@st-=?t)4rr(=LTo`jUqt69lzIN4Ut%o9lCxJ{8ExMQ$UdlaR-K z6b=-bhI(rG{1C-w^iqL=hzTRr+}UDx#n+mQ%81JRBLF%iOlG((QTOQY{Mq$C<_zqxK3`gIc3EF&u5>%`nC$T zo$H8VDJrx(6>PdWEEUVuOkPT=syQtgAaODo+CVA?wMa9!7kk=i<@T=P2CSc+>UwI- zANiV_a-`7LuYPaXHAEK{2Xjt1ip4zTEr!@LQDz`d zw}z!!7b>rh-ll>2(02NR4z~wfVv+>QrZrdS&e!Y?%B^h1N{=rA*;+;wSuG5Ka|E)kv5})Le1W zhDfCiGpTBvumKQaR8A&8F>GjrT!9rv za;07}I;+;*Cv~T>xcUNE}XXXn+*v<)`O>H^K( zG#%@rZc8Alb+*iC2rIFPR*Ko>%*I?kM^d8;k}X!OBwb~m&t~dD_xRjeRkfi%ZpvdJw=+O3;rEK98|klXHRn9ngz>PmnGN-0yW+F&!GRIh767q&`7qYWA9 zDA(U}lcuJi`LzyaV z9+XBxjn(L7O&`hNy@>gM4sTEdjixsyZ*Kv8q{&LzWop&FVmXJ&Cp&q-EwCnry(CX5 zM&#qhS2@?)S5*OhL)mDyI+@jI)l{?Px@-9iCYiNz#gtjt8g=w`gv+EA%$!{s>$sJg zpesCsZgg|X6*GqWqoGaHI(`virDCkD>Z?kImtR-+p^4hfa+6TD_Y{k$i*}ie zEq*;cLS|cLXugq11hbsb&h^W2Gkdf!iMnl$q1n~<^@T*(8mk(SN;-7*=K$(kE60wG9Ysq^%noA9rl~~v9x`@r4`$B(y7$EVBvc6bkcXtTR-k#D z;4m@cII4z~Qq-Np7lQ+!h#1PR5pAIJ+gy^Qk8t?$ktqzx%_Bzu^&}%3711`sGSyU1merdj85~OP9A%Ryv=~-LWTlbeE z?7d2CI%?!45BA~X3NvzgkYZgb0ut1J;arSU`(s`qTPiYbS>S?b$hfN5&-B}k)q$G{ zeI{!eD};sE^cJ~}+Pk>bKh^$iXE}3j%Z%Zwo?$RJ%X+xGSYl{&m1iu`%wEByQ^jM!^#_>)M%|Z4TSSxXl$@iR?YewVahKVJh5!$kvamZE1^R={w9n zzEPS+K?@~P=vo>1e2pzDjnpiW(FJOVNXaa(QPJubRFw3r5Dp_gYq?VIS@ZZ|g1F(E z#R=<{C<=Q&B?5rk&;5&rXLi(#n}qTC@kly|cOsa@5_q*HKKme08C(m`b zth>8b#v;%a=dUj6il&yDR&U{~^JiTg>wXqpw*R1!oiAccDKXSYqrrp)jZ&9sW=ln- zjds;sW@=V{Xl14LY4l%*?X(fvYtzgfK4AmxHNpn zQ6XXsJ5Q2keJu9vK0qs&6@~5AlT+H2eryKZO3cn~ivTTQI{_MB&P39JC*7rVH-h1Y zq^v~Qfw@90qN^*FBHjio4|R2;%(T4K-FHJU3$G3KhW-ul*YcOvKpx>dZS?s-yz$gi zE7WZeGYXtxQlpR?i}Gw2!+41q%)&t=8|7wkIv`o5a*xyqVd&)jNXOJe2J& z*9N)*bJNM#b$|F~mnydlbG1}TZY!jIUlGawj6-Z8eOxRLxwxh}#<-VO6^Jf0vR6CU>i0$qB{_0+r5oq88z} zo~4^8I`b_)v^*|tyt6FD{p#7KvAV=g3~i%Ft3JO*?r@cLVjmW5RamiW>=>$uC^ecV zl0`~7_BsXK8sCW)7 z;#8$fEyJ7;nBxkXjaaqiiR*&#ez_0RyI3lD+ye!C5yk(d$U49!++F}AwcBp5E{ zv(7GQ``@Qydu^LuOG566@PA*Tu@Y)lB=1hgaWJBpY`If!5s78J*&3Q>%p}Hs1l<-p zwVU*ezq_d+mz{fLbnC^5rFz14K~*?w5N}+MYW9(>l?;t0OBp0AQI{i^GGwG>kL+HO zaLbN#X1XcCi*L4#So}B%$IR667j;sT{Qv*T15Gz(y&IQsueTPjI~8j#*V@g}KyxrH zmc!L0+3*Ck!EEPNr(v`Lsse#bHycJ( z(jO6I$HYuRDxCOZqYcbgHtEXPMLJv+HE-d6n(4!cnO$!W?bHz+?>2e{2l6L+le3*g zSFKwo1G4Q|s%yLL_DAGvJ0U(~F~J?Om@q??2;;`UlRxs9g=-&;H1wkR^egTXhalC! zB#&=Jsc@QM!w`Ky{yJKL1#Ye!yH{^``>WnlreJjrwH|GZBucf4wq-aiRjpN~hQscU zO&#{2G`7m11xmx}%rv;~kt9ZHPiJa!arD8_I6*XZCXX7(4!I2u*8s|@vGiO?ZrP5l zsVRzT+!W_zx6*pCNemYIHUR6-*!q{FrRfK?3UV6*@o6{3mn%_zJK6a~ylTt>b2AJu zI}htYbGzfQ@zRlk`wLFDCc$)m^+?G`8)aYbi);p-r>)7TFqq>gthN~V zQJkFn2mM|*7wock#VbbWo%r_mvecHcik@69VnQr8gKmTzYZix{$`U{YC2Wor;Ue6=Y8Hp1*+m!}&ez zU!BtB3Ce7To^93Wj$->O=qFa<9K{%j{FUKIQE~sf{k+(sZ~{e~F2=h3n-s+~X21rS zEMqol^{4HXk*&^o$R{!K*mWx3`h25PK~giE6f+IamR;5y8d4-y0UH9DWdBgxM`es2 z?T5t6PufKeW%qA5zST6)TJ5&AQ6BR(D_v(PFo7st7S=jsEzb<+!IUQDlQ#+{o3xmn z?@IhxvQF7IEHz0jhtMI3mZ&>Tpw_i>*b$Knbr%53r6Kd! z1@qjwgsI{A9Pe?XsD5oZk?_;Z(}t^RBhM$H5(n+Ei;#E!CtiE6+#%Ujg85V#!C{s+ z3squlJAEl@J8(vaGb~z$dt_j2YOz79Lwvmj4jRZ(NQ7XmKbr0yvA(`!Ga?HmpH`AC0J0-l=|Git}7Q{coEiir~MnY&O+|O$!$KUHuZmwo<-dg ze(Phb+iK_$ldR-R!r8^7?h~&|flE|xI3(9PT%<~{(B4Za%78;3^*TwVe&)>6hzu4+ zI{N}}MamtiS23u5rXu5CJ43Snl(1~TDAM?fHgMWO_OaA)WoobxQ`G+HTwTzC70oRy zKFOW5>>t_B{81x2S&`b9cPc>1u`row*X`(pxwUnkdM3Ysrez#?P#)9O+U%wy<1Y87 zl;R-PWUZHmN)^}}I}@eF^r#K+_`bPJ?e!Qlr%VluNZ&t}K8SFPS^Dpzqu`)xz)CmHITn`aH#%{q_S z0MXg0N8*)H@>qrEs!?xQ#~R!OMc5x5=a%yZ=nm_D$Q+4jTv#VDMu!BYv&S9`FA4ldx> z%i;{Z#J`2!ni_hs4s5%BL#H+E3J=)$tZ<9JmlW~Q>$r)9R{Ir$1vpA1`^5f^mlBIv zi&txmD4TYISZR4;E=drzGV~t+-iW_}7Qa$VFY&|JE3yC2qZ*_%p zhokS>>9V*CQVq%Jr?`Yv1G~=tkv7dp0R3Krj2xt#4s4ZnQQ0#23KMXA5(+TZVFsD&+@5+g2a18PB^kszay%!OV-?A|hm)_#({yme){a(3 zro8K!0ZV~a!vnch~F>i5SQ8IqiE$qm#7v;o#EqPe6w6|2d1Lqo*6>&>1^ zx!f$A%qYo&tdz#*(si~LYmB^|rd33IRK6SW`Jf*tv)&}3bl$Z((_KIl$%q+aXFguq z(A!J(eh>eycS{NVkr;#u*fNwqIMz=_MC7HXaF#zE7c4D?v2w%>#F=JAK?%CEeD-Do zBhBy4nz`d|4dKwi@)}TVSt^?4SR%)Vc6c`;-X4wEAJ9f^M=Gk`F_7=5{;LbmPLc5Cc(K)0)~OxSDv#9$Fw z=kP9Hs*Tb*NGYYmV?-OXJxhM4+0C%do}+1FnHj6&{Qh{o3#_E^)ztEUSzd=jDJ8Oi zKXqWD<}9YT`g}!Z-Fl6NjdB(sehDM_soHby;D&Vu5p$&+hU19$zY{??K^f_^U%~VQ z2TCwYQ*%6b%_vU_=oj;}yBuwt?XKlms^A|U)e@v!^}AdQ&`U6sbwO^7O8loA!tT2F zBgukba5eZcM@GQa${RZ9>K`w`J3mh)dz zb6e*qm3Sy(8@V-;WYU&Pwx+TH=9W?DE7X(CGV&TF6KnmFR|OO=iIsF`{YsHDgv;3b zNVf2n6*N?M6$|I^K&g$LB3`}s3yd~aZOin+l(K8K)e~#5Cb5#|v>1)!g{{lxb}epe z5`DSZJ*>X5i^va~1{bA#1)AGpJ=wZ^?%eq4MRS8?Wxe>?HN+qFSLGW5;e0K#)3;;g zh=z}kakxWvxFDIa@n}e1leTPlwDHV-W3q{q`&2s`Zx@ozZb)&&YCL_9ZbBH!_zmhi zYc!m@*0>**x?By_?#YFQKtmI^1a3!*a=colHeC z>a1&XYy|OlCD)bb{TO>q#{C<%>V=P$7ov*nDxNNT9gcV7a%C1jXJ|^7mv+>Bf8Dvt zv7Kq03G48dR3?my>a(!TJH8!I;2j~$jAw!s>~*g|J@R;L($)u=lckQ45xS!4dVS*s zD_Sabe2y3q-5(#Lvm!xZ^MCy1U8Af|_#1o1Bb@JEHE|bXE$+?) zngwkZrH_o|Z&SRtZ$|FIxipeUW8F^ei@JPbXP$IR`<_fV`j zuQ98!l4+8oCSm8Z*g@;0B97HUG7(cRgp3(YYRlFI5+}dHcs`p&4k9~Y|bezD_! zBQB2=V&2(9TgH(pq>Z-}6}ZA?V}nn5>Lnen$4r7_-q;Rh-1Uu zH+u`afGx@1pxMsSEBO@Gz3FN$ zNi~V97X$P1^d`4PSXl9OwQZ$@3s+vHY_7rwB&0zHc{?&#!As5dPcj|I1J5$SP9Lve zFNLoWsO?v>&tw0DC)-*nLp3lm-6d1&?$5L#>aJKv>rY0f+X?nBmwnFd?TKXM~3Ukd*49nf>wa3U|P&8?mD~BSyGfKuB6G1O!`@EHd-wp2@2i@fu0dv{aX2*)cwuNP_K)X-xRv_a!0mbJFivgvg_ zH2O?%Lz)dG*3j@Hl;Z(6@*In5@1l7f(x@z6Ln;N%9XF(u zK6`9F-t^s(hmVy}YF={tUCryB>Y>;4#OTIyDY>>vCDlCJdIZ-$^{^Vai9ppOY#N<) z>ZZ$IqTR(8IM_KGom~AUdH10j;$2t^m^Xj8ha(o%wep|&ILmlzBJ`^SI(g)6IrxH= zdPAAxUQLden8mq1n!xHhy_RAtOGj;ak|Q9f4A%Jtr4xtve1Q+?^t<~LhaDIDb0zc2 zaN>mgf|YvrDG%^f~-eS*cfyJj# z5?5=2Jljy;@)Vn2~^xBN{7^ELXwXtj&JqKwvA8P z@y!RmIZ?>!Y-;?6U(yjQvw|Edp$wnD`YzpOJ4pZP%uIJBToM&(7G}9;A5aTc*185b zEasr4fd16cn=T%V|59hsBkXB7tl{~rHv&EYe*Au1B5Ttc<&(>S!Al4dt(cBT`^syMzJSC&lMvQMs zJ}hQ?;G-kOzN6#|PA;=Jfw(6)aOG~K8q4A|Eo~G|%h|_~@G_fMWLjr#hIwJV!vtM| z<)!z>^kqD3HtS3279D&;4cSX~dT%Y6A?4K|mRf@0YZey+!B(PvJhHRQc8(1pw~W^N zYMR{KS1dBUI+DaQYzW#BXk|w^<2@EDqpdbl**Fc%0?r*uS85!=mYr@-$KUPqhpvk9 z>|{8&=MM5WZtEAbUHQ(*?UUHwZ|cvLGEx7y(>8V{&YvQ1#}rIKW}HhZS(0fROGgoy zn^Yk4Ik;;|z$K>=dEcG+xj25Y$@1~-77pjKn`rp>g_HQ)f`8gh&AJR|&-j^S|7@fH zS<22%z@JC=Rd|`i&FB*t)Y@va&er!%oXdiW$w}_Avlf;RuxggK(Rt?R1{sf2E%BTV z$T>3<|GK2Gtv>GJgHkTFl2?W9Se11qxni5+e7 zho7u3Bxd+ns&41T9h5><&`WMf>px>mYsdaaI|bukoFQI;FVN^KOZK6pT4|!DFB>v? z`2Z!M9b--ySkbf_$A9)2gF=;I#l&n1!$tt*p_^2C<=-rBgYj>!qh^oP6Qy0D7>+^3|{&!;Oy0$Sd&zwb`3){B-X2F`wscp`07QFS!N zfKC6dN^Y@LZ--jJ-u2MO7n3>Ft0Njs^5`o>h?mUuc~ZX!a>hiJ9<@(UOA_l*DY<-e zHu$Ku9d;!#*A;Q$8=^P3ui}{L<|8&`h)1B7-ejU+^Bbw7?+p*?BU%+!aZ+=U?QyV2 z6rXBRQ>xnbQV)OlV}R2Bgxnky=R7h4BG5AKQ)@aJ?%eeDpxxp$h#lf6^O?(Ty}OM| zo_E}J+|yf^roXJ}w5bLgbD48>a!mRntt@3Y+ECNvU|%YtaeIsI)jdSPjK@lmIo2QK zb_G}dOs1$2zM-a5)|Af$QmzjM3WEV>Ri)`!^$BKc`o0{m_;Va_$UP7XMS9{cX>rYqHuz56Zo~j~dBFspDkV?& z97%|nrm=|n!bf%N(4_wJKOz{`=*#}KKhjG3>=##*acoB<$YS8?@QQ`mue6kRX=EFIlu{mtGaMlib!oG4rz>By{obv6DZx<2h1tg@wwdq;2; z&4!zvhvy>jYW6^vocYD!$bKDTx806aoHFOx@{l=?zo8QuJsBs@!73ds(?8)d ze1m$+D_DJj8yE|;!Ef(zu%N<}L4aGAEnu@k$2<9NYOvZ~w~}3Gl=->HfpYS?^NA-%_614rjY zbmEA#8=`r6l?JnKhH>;`j3{v+SrM*GxX=c&l18rcLsUYy;I?vGge;A~vIm^D^gYKqk|k#rdRu`N2fLw0;$4s5eJ#u~F;arovK)gv}nY;Vk4 zgv9h$GR@O)n@{+vU7NTdQTaM3|JpbCpbVz^)=9A1j%Is=ow!jD&T1USwZqm>DLPDtBx()Vrs$3``~w(}wa?}JR?2Q=&x=~vY7x4CaZC=2{`y-8vnHziZ$p=zNI$R>>Elvzvfsy^&CXOYZkwHo%(AL~tt5^8 z2sap;b*By2oe)Edm#*LT%V5!WN>p9Us63z-YrOAsXUns5?O{2vNaL*S4y8L4cPB*F zVkh?Om|~}$`4KwFbm>lNC9_I*qDe+sw__G)w4J;CsIKvLqCv{;_o5p0?`x@R&5TA) zSthc}-`d(5TY}?95TUiPKL|leKgXQF%!x*CD40tVUyGbju|raRC_e>gk*s!+T|4?z zthUr1Y_d+wb+g7^hO>W19Ezm*>AsJ zj$pR(O@w^3_Js1Lwhl|D!oTr3h2SE-oxYqm9<2=snBV^*_xnxUOn%2n&eq@}xyQA2 zu)tm&npwZFEVW3gq^`&1Obb(han*1vP_9eGgW-}$YdYSdRO;=4FwwXeho80$WDjNM+yj>fFh>>a5zM#o9_8iTu@orJ}I z`CW-22JF>0zfC#QPp(fr*;s}3dVxw7G_SzcpQxE>FFA1w13pPba}3ceqrM|u$PDIs zWs+sq^ZfuFOy=Vbob8Z@#U(S-%9y-H601ZUdgl6SvkpdK9GnknV%_)#0jw&V|Y zSNKSizuKmq=;XLXhWpvtK*`^9b@)HbY(#?I&XppP+TmBhP|A3DHI(r+$6Ma+n=18Z zZO=fBgQJDEQbp|m3hI}azHO(M*K?MvRMl8__tt+Z%65|cAjD^tSsyN3wPbP9q-eS_ zy9!3_S>iAFpXK8>M)d{U?uerkDERjHchpM7lDy~s zs^8exuaU+HuGJ@Mt2thj@^SPrvFR;*L@a9ICn?;k+Kd;SmeV9+r+Ku0*-%j1GjiI? zW^Bzki~)Lhz+U{edDZPj*XX)4aXY!$O$y802pq!bN#C-c>@+pu^HB-? zan{l4+3uTCq$PB8N`**m_(+BnWu%QHx1w$3ctzSQPGdFg43Skbei>OOaTO;ST~>?u ztWn(oq2jw=8nL#_#-9&#&DS)()93Z}+?l90h3q(@nMz}qw8qDLtZVcc7@J8_N%}UX zT(Muco{$}PM$vQ2eRUa+J|ZV&$iYT-R!NR2vBlqR!B$Y`SoM=<^+E`WDIMQkilfKh z^Oh>q2OdUzHeHu-ak_6~Ar*Sf&YwlJ>?Wip@1%oNj;1#>UTjao&6$c*-;I=!U=txb zd2FeAvuotZ6o$3?ff}hf|8N{P)_|#Vgq#@EFC$B9geUn#qyI_)2FAu0D#;$ z3u>&`XE%*KM$*kA$4UFQ(fFwbw3P{rsc;)6_Io}4Fu?jg_v24y|Dhu7r>usM;B2uY z@V^BcPqXfahWthQ(IKx(f>@^n?hEW>$$MKBLcCzdD$Q12grnY$aPp)nr`sP>CQY8w zKIzQ%NoQDaR^8dpq-m3&U7xdZ&BXBHC46S3?7pR|L>8sK&E<~F4h-2D7JKA;K0Tq2 z^^(KnaDl{_7ybAMjk{U@?2S_5BNAGS*sUEN$JGONl+Kv~o$EMrZ%^`$dZ9SL8C*#o zFO>1~s{E!L->^+~wk?`J!RFt->%h?*hOK-W(e299H}zdQtt;Bbc&O9lyE_~@ITLyA=Iv*e7XPJ#@9N3iM{;dQWrzVHadP53zMej%|2?gD6PNvFW-(JoX2k1;38RFSy%B7AcoqaN`NP z&rZh2SN*9MEzm6h={_Y(;Foo7iByqyv?}Tu^p6UhBzGP78iV&%Wj4 zMrY0MF-oVHPa^h=INysxa&)?b*ugM6nnj!)-s^+zPSi@WOR`Bek<_}^C*iRFV^fpI ztC;e7O>ZY2irq-tPdXjTL@4>FYh3npjC8~CLRxAaUoWilSlg#=wo|2atmgTqW2AH1 znS7hIviJRMubpG3nVPKL(mU~>j#DCwd`2*CHH5&vI$dAQkM7ncajYroZP_G-1g{>! zIqY`S*y&i!8#^6iXBs;lzgc7Zb7*6WbSeS9l@~k0;?@)GxAOe!EyG>qG_H_R`6Vx589X8PZ z{q<)q&@=s;`h($tC`o9EE)Hy366iajd~^yejSfV=vhLG|eMVl^dC+Fp-DO)W*1!5Q z#=~R9a$P`WFrC=GAFW1+a2Gikci zMZ_fTB%56uLhk0K*l0kc}LgUtT8Hzj>wu?X^d3bv^=Q4 zgw3CId0HiTs%}~p3=eI(BpBYf=~8`bLH>gFMcMW>&aXW+)c4iHDIMo@OzN7n&x%OD zX4$@^(wob+&#v`W+E*2)hVz!pTD17QS##&En74A}KFgP_YIm-5KHfhU|Hf1-$SITB zC!N(kWpX%q^3>B$JC*PxBDV7$tNlRIhTV(_VKj!UkGGm+SsoyGp1LZ|#FmCnhNC!aZ`)6(s1 z+h=)R--2tOkMoBwuoXByPp~rm^mFyeQU09XS_r344=0BwpB!S)^9P|xZQ;ytQaF`g zJr8G052v`B)24@~kB&CkV(GyXcretHQ+V>Uee|`#dRI;En6%Fv_fAT?b`fYPOsr1c z7RwdRwKWmiVtTFG(|&e6p4t_kSo=J_`YCg8YIt^6uDZ_x|2t=N^Uzd2gUH(uNWod; z5b&voXk&yQdtIiVBkx-tuJDoMs9!1U8Q$gTjV#L7eb0#Xake|l-Hozcd1mI>o4 zruMjk%W+`q9lQlFu;pHTiYHoE(6VXE-TD67sK?jwLc-9tM>5&s;Fislpg&6}w5z3j zVe1`S8j*gIM4aE4NyHDvMI9XSNe1I9;k5A;-k$5P@q!$#V>wFmoUb3qY@`^O4#g-H zYug^#axdiy*JQSB&bb$bi-S}qqgP96;b2(WcH5SFOPTD}J0^zP9^s3Q#p<@(qORIH zoFDuONdX@fC&nXwOQ9o}B=t@;A4W&N$Prr`XYAA3^YV# z%e{CKH}>;Qy(nClD{Oh#^}72J>yR?$veR4KdEa(hX>eGK1MF;i%veqaVISf`vu(MT zW5;x7rGKbOV{){-D?=JSW_YQ~fa+09*9hbLk#xkB-PhrWn z`>l~xsV$oaGkmeORx0x*C4VA_bRKk#e7Bld?x_Ly46U<;Yf0>_H}Vxk)(+l0?XLf5 zd|b16eE9Nzmpi{&&RU@m`69fQ%(vb^@kZCYlH;fPy2_c2NEIik`q{XpRt+_-*Jwoc z4Y5ovtO=7&-s$GAH@W{5LtXaa#SlU-LiROgxYMUVH_A_a;_A$}9NZ{%Xj4W+ zzkHF!TuE$9g(OSc9QdKwRRqw%&`Kd3T8Kjf?Gus|vRt>jp=EzAAW!BhO zHVRU0uq-J`IvbmAWK^h0_4c1qrfE}7YV#xd*WG9MA;0xT)Amx)bc}6{HS4gEW!Q52 zV3A4eUNd7}V=?sBa$JgRkzJ#TY4jZw!E6|fVCsd$DQ^U9aNFkU);nz6Zo7X}&#cK~ zpIS`m6&sfkJ+B|8N|)KoD{b#AC2mg)`>~CfKU0l4=zZ}g=d0)9{>+}-TRk^+$>Tt% zCH-gYkv+E%nX7kse}n*WBUSpbTdz(?Tm!~hyPQ$eNg?pNrkQHFfGc;) zy(h$tfQ@8QQ_NB^en+>zTh>dGA0;jovsj9el4u+}+iPqnRR!rM?%xsXclDuWZo>c^+`NVUCf5KJ<)GD#_U5V6bEciaw-9%ocJ? zK3F)3N!n(;AR)n)Mqg2H*REIudW$*Tyj^siTG6#~qSE3bTARCe2nSW|%m7~x^ahju zPKMF8`zcGvZ}V=s8xfbRnN3GE89H?-8z>a}C@Y@<$uW;pG0Kx+v<=jF&Bg^O9zvzr z+0TLM%7JKO&M8TxGs9wu%K6)DR7KKvQnhg_X_DvIe-UX=CKDwVyuho5#0dcT3EE^OW^7Lm%J^3|JUQ@Oyj9O1zHb=7AD&D`NkEL)5-70_8-8drni>Xox5h9la7cALfLH}xarG9l-qBT-7& zo_c|_L7Gw@rSU~iey@*>Y`0~UTv5^WzEI~3b{dO)c^O!oZ<39+opeysYJ-u9+2wSK z2#c9ogEn8A%HB?@@lQ`TNjbS?se8q{EE$KIlDhjC*it+uUe>k!Od1lzVwUB8q7Fm{|M{c)UqFUEYX=A`^y;GRAZo4*8#bt$5%6?7^HQj zM19?ICH{K8Ez-4$(FCD}u*JCTl4a~w>vC?RU2-e#j?mT`(vL131Pm{Jwx$7&rfEpU z7H1mgzSgLFDLt=MXqs@Njv#5CPqbzZ_nRB{TW^RMtk`1lUYi12zOe1KOqRna`r%`K zQO16wH;C8#Ycw@EHCgvMU_tr!<@8%e?Pe@X!rOa_y#7^gmzCZU_Hhtxdi?uW@c?MC z>0442tVyN|X$Tgs5$d&ApqXo4IHjR^b{< zfME7e9wT=%&Z10(iHo1ZYv(g*SbN$gjWpewF;+yeY@{Vx-RgHE!$y9rEnm=V&&aT^ zDPbMA1((`F8u4?EAsbZr9G?Wj+bn5uePS*JOH|_LE+%c7IOUL78i^Km7LBUv9CRJQ z`Sn#Ks#qRQtlxh5FZcq4G9p7fsY~Ks+2rf0> zk4znz9em2UEVnIR{ILy7RJ%`*#!@A7flkKHO)PtNQhvGST-ga4Mqw8=tzun(ZpL-k zZvi_gXQdh(sty*>vjr5Z|1p&z9m3?(Xxa8IcE$Ur+Q035OX1v>8N>GKFJnq^XN2sx zm4-IyjnNrPqm3CXsc74En8?^KxEqTltY1?NGB9!Fnd5gIomE32uw08yPz6wp{kZCa zWo8lvt8A@mt3G7%`Kv!zU)Mf=_4|pXbInN|ks5iS`BIIp;Zv-Y$e;I=t%1}6W~XTo zpn2GFSl05?GddE_|v@NM3k8sY`I-R7A#7Mxa7eML758! zCWh5ou++IWGW~Q|!MYLm#b&lHIDfDTy%whK*nv%*nz39m9l<*F0sR zk9CRPU!btIrs_{@cX{z^NI@J|V$AN0+)1(o_@GhpEaEQzx8DfhlP*K0u$E+@rbD!> z38B+Lb=OyBtQ$kY8Ye$YLUX0J{j`|G*Ioi2D|g9z%~4CjHe=Ki$61WPIuU=^bzl-T zrB235Et$`A$y20NPhJ7!-=&WllT$y5xxKubmx#|id3R)zh;!qp-`ypoN9!H@N9oB3 z*@~Tg$@vfe8P37f%iKFkqW-$@c4Jof8XWE}Y%42-+q$0CdBu$Xi(+gy@g@ay^&a)T zZ5pIWWR`0MEHLcJ`gW)a-83r0%#8*o`qt>Lv7H$m%@b*oAz#31jO&WZinwX{(iaiI zx-f_K5n94d0MO;7yjuWk0LPQ1e$?A$|J0SnJ(OT&vhg9~J4o&_b<_jeZeb_}YuN1S z?kl7gg8?GbhN z@!?ahruKxq@(J5%RV?jIGq?9(F^l&hgYg?{rPunHQ(imwlrLpNzrThOHYlK-%duX) zs$61DQ`Khjb1tk)*mY=ZK8sT?-Ao*mHgWZ5PMI36bbF?BO0v_%{$3ZIj?Jl0scJU@ zxp)5IBo%ySe)(Tt^)u6Ij%u>4g$Oh+8EYEKpG>#>u;_@0TJ@-gGMiIVmY0m}%7E_{ zeGxL*l5KpTnXLH?UH>;mA0eEnPKdLxDb7aLcAunyF;ZC7ThCxMl>&xe;7CSnCfs z931M8I3F|SYr!mp-2XbbTa#worQAlphBv3KjIstZ$P6<*Yo80l+}v2y#sj6ocz2I* z!Up4U>m6k+a%?K)91#=zr6oLPil%-ry*WYxhnhrjOXOe<8|PXfc;7Y2h5cI|$f6;~ z*g;R8h;?k#&u`SpS*K*`7gZh_F=O>|xwz#@N_ofnoz*aTf4wBgoMV1TtvhDfmmJaSHZRSUkx079?S-gxzLTuQ z&R`DLnJ=9`Lg5}t;_yy}qIk2*-HeyrsFixL@@lP8%vN{NK_gIW%c=@aP)E{KPw^G|7O#%&G;OR-AiR5wQzCW^VwkO)3M+EHu` zyDpa$9)14XOF;Z0g4Ug|4gzLF>j+CiNl{?uOGu5)`BR%K9Wsl5=9c+ z_hvBLndwb)sfFQv16rx{fA#PC&WX5jGjEcV%TqvE$$KN>#`8SCbE51A56Y91YFd9o zlxh2;^(?FDD+*uG*)_GNwD0{U4N*C@P|z@_pr6%`=nbJfexnz+AT8ajaL>BbyTQ-u z5S0Dgwr}`z{cREH7hF~rTz z_^O1#D|YZvGQ}{*Q`{({=T=y82EN{1f`$AZrjBOT3Z`4L(Gz^=2h%Ot?dJPP#EXue z!#E$$7srPn)8fZp{x?mhkVn^KSkQYv4r12*ZP6_W_`X~jNROF-zyB1LWMqWXXw_GV zC^*22LpJtjvZSRAtH>ELS7veIaE>e|VXQlxkb>I^*Qe<`Nx8)3V|(JOGY6PpfI10x zfsN0lX#rDq77^yASp)3FQgqg(?iXGTtc8+Yn`dDKZXUFfWb-)Hpyo;C-e|?uly%Kw zYhN8~tk;#_z0_UBk|TD7OiH1ok7-0c378uq05T;$X~4Ci|HH6PwX%DN2;$y&Z;@D# z4y_BPvHD#nsC``qh2y>agso%jLRxA&c4rj$Zw~D@kzIcL^myuRrfj;0ldIm}em;>0 z&8k4K#Mye4Z@zgxJ)EyUe>e?c&9&w1$7+Bn8Gs2xvajU*1>)IEFf4Hsw6$-(iRAxV z82q0~WI~LZQ;+lAAM!C35lyaIEasl6iidd;nd2o zvUy@$-C0qUER_9$xCUka%fB)rM_HY(l<2g{Sy$vS9x8mC(U+nbBmD;9KxSy?B%MR3 z;!>=3r_zFDowKDz%2Z`ipbD!&&*s)*nY-YEaZZS}R8~?BTWGGn&*-N6BN+racxe}$ z$KPtYovrR^awaV#c+zL07T~Yx`geIph4qOz@}aHngS~??%6u@81VJbkEW60}X(Up@b2M zyp+cbwJ{DGy7dP10n&~e8lT10Fg^@GqZnmwYkao3ua~3eNELhB*C>IOdR!M~(Y6~@ zA&uBwrd#6NLh{&+Ssm>dDdsxw>F>jH5mr$NS^;RV%oXSitf9oh8vRg4(fl)xpiWZ`G%hvc9 z7UP5YDQ63?zkA!-dNoKaNI99Z_W6Tu8<1penij-KvDa}L1h%lm8r%~QC3KxYda%x7(8dJGMzerY9CVP_f+97pV7mL7 zOYR;^(A0m3u5*YQSE72<#z!+b&=wrT@}x}n=$J&lqHe~P`|vXu96a@sR-z?Go^soz z?cO6mezP5o3epYGXgT_W{O#VoCij0~cqgjvF9HP@mI>Tf`@bH*OR(uBk;e@|T4GcB4S<$DHPVU-an^hAep*0{-p8r{h29?y&pwtw88I*_!Q(zVMy> z^X+tQW%?OM4CS1&AdH9I55W=&LH_n|@}qYQ7o_~S96ivXk;YI0ATVw@IWP&|X*rf3RpyKiNho6a6K^Vi#@YezyC$6V6vMdLoXM|TJSLHzMQcf+YIHZQY|gt0kF$7nU2LS{MwQIT2F z^D2`yCUp|R2`i8LjtC?4TI}(!K(X;Rs=+P-X9<=Nw@enO7?8S?;O@IiUCLLV1dNGJ zCjx1506OaZJFM>7_;uE;WZ^Dqlq>ctuiFPD3I+UDl8;?L^p1%O3P_u{@@&p;!&x-> zyef-sPzGG8U8=$&8J9+BxMO|aaB>|YlSVVt*TmTld=5q0|FJt}V!@uFkmMDn!TDEuE$F!Gp#8{|{G5g_Sv7=N-Mlje* z1QkX6`|vLeZyT!>a>LF?S1mRGRmL`H!`$^h+}37a{*~4Lk?Rv*0k79)6qBBSjcX#l z*xq5$dn+ue)QIw@t&6+!`s5w+%W`pm)l^8-tq4*?(TE^!sugWSzCgm|KRL9Npye@S z4>2O79@3~Ck?iR_WfPH4dquzNvS2-yhJ%@BfuSq$kx9ikji)E9l;R2Aa@%jxDNtSafNLwMeFqT~@>P-icOg3u}cT|2Bpq7xh@A83gp^ zxojvjCW11DWQ1ifY;Zi5LwE%{G!Eq z&Ul6F!ok7%S|ot_+A`0arxm;WnfCiVVU-_u3;|^a@4S{@SEjupR)OvmW>J4dVASa0 ziKkc6&fJA?_{*A*&FL?Rlf6HsP3=!lw)@hYQn_hETQC&IH&}6~w9b z$x>vy4V-P^WTb2oPCqRG7{g&dgyIu=4u7g&nm6ct(eE)KFnZA~?LGN<6QN_Rnudb0 zjvnA?8z0es7vvsobD;mzs!-ldbNh$G5s!T5yRuRIX%zIYg1sCmn7 z(i)IS;YX4eV)Q46Fs|G=Y(e;4-t3G~@b-(*1BJ}9z0K3TV15!p zD4SQW;}6b?{^*uw?e7p^N8j0g5Le7l0mM@f`+ZDlx)XJ#KnCsogD}g*kTAv(rXrh$ zf&btXR@xzxnR!MuqeSx`(F`I`^-4s;SpSM6qI@ZB-IhBreZmKX5c`CT5;5s1pf@YL zjmSz6ys}t?l+vw`d*54Uc{DuDbw}A*sm+N%3UO?Ow-T5Eat!qgW*&w*Ot^y)NcZws0$XSdX-BRW)DAaqeuqWC)|ke|x?(xLGY(jdU1(z{1a1_fyD8 z^ad|Ln*Ft2u;v`H%>%xsGxl&tTQLqz-fV}`4XxNl6eb057$onEvKOp5!cp2}%0s%A zYF(X(Qxe!hZknkmMTTa<9G0F0i&a0Q5!XfPRW*SK0sfPli1E788Agi&Yazy?HKMy> zr>u^&nhqR9qQZ-mE6W_Fk(ER<5^7K=9#&64>B|Lh0J>QQe$mpPI`-9(H*^Z~$LbEa zV(d+2&0OGH!yyx+&P`W(NR&_kYsn`d@enhZQwZAq`4KQVrZ+sI^I+~V-A7Z%I(J74`y5Y_K))MT0shG9KGDh~%9GIbU1(6WlR5j>?HthdDK zvHqsT4CJ-aAq8D4gi2V`!HQ|c3G{nJlW7fe=SvaI7_^3Al*O@Sv)X@lg?|oSe?JHb z$O~kR@-UfD|DolvKniDFPbBh$4-&bNDLF{!Wb%>mnL{38EMb%y(&-J8ly)nhYcJzi#R}>AScJ>dIxU`5p(3Y z?t#LhS4bO)Ut!nQuumqxHvRN;a?CkJJ}K&P`}Wadddb`Vg56eX7V9lA-}$WuciW@& zZ1}LnBylMuA8S{K)a}(kV~#BUhXhK}(bMDUo^KDz)cLr8aUJKjr>$b=tlmsW({sE-Zhf$0Bt0Cd`B{a^hrdW zme)&Y#ft?;s#XzvyV$eSYD`#Ay*OzdPg7C|s@} z_(VXsusHp}r{zv89+0Yyo9|sc#$>v?fszA{0PjX~y>{9%|xxJCRBPZwJmkTe0> za_{v1DrU35qQ^UsVmQ&{#6kv#qH6#a0esH#D1Z1Di)E~iLjwd3w*il`OuD&bm}t{@ z%e=&MxkIb*_Mt_E;B78|+t&YOEfn>L?E6 zyro#5H4+{h8iRTYqwKR|QhF%~%>MKk#S(G_qD2WfvTLjY}sOw(%(U%Sq2NC z%h8{nJP9*^xm%0E?~#Bz8w#Z*A@an0q8v4!5Jd9Oo=;IRTTpRE{m*);E-CDUa zv-w_I?+6>L6;5@Ula1breUaaRm%$qyL@7o0ITlp1R6?eQ0;C{2x|Eh_n3kWBM@pIc zB+(F186+XmpuO_DQ|#N+#A`aiscc~ynN`r%y2ZL*x|)}0=|^NhZ1Nw1p=tx6h?Dnw z85%NELLf9L*PvxwNP?^0MB{Rxc5N|h4Sfv}Q||6wwDU(cKiI_3x60^? zrE|j=FMkc)Uym^!oJfvr-+bVae&pabG%_^2jS}=Trk5n?0XrW4Q%`yqXn*s z*Du?E-S7B}mF}>0*>%@7mPUX`SWtnlJJVU3QKc>(h%%ER!4ybG*@n@Tg6jZP~2 z$fulnPYM=Ct8_3d@Ed`Xe=MVr2#(gV6E3=6DWN}VbNtFoZO-Fnv-dXuu2>2R5ffsT zaaVDwREKR==o!o@o{KZ|QZn?~Uh%FM++z{mdV*TNSIm=LyDcy_xzozGkyE3~(uOQZ zmA_k^D0(|+!V2$;nd_!6Y?C*S{g6}D>o(yMfjC971ATQG-UXSYcBgM@K-!g)AZ?JqvC%OE%`G;aM;LLay0P;R*?dSbY;b1g~$@=(sn)yL?pk)99%|+~Bk9 zQ?OrJV4?h>MV=^UZTG~YQhi?)-zf+IkZ*?cO}f%KjmEF`p1Rfcn?ZO~J_6J*8W?jZvE4P``3)g3`B^fj8-$P|2KNn<~6^GFi+4M<%^bkKOnXtlZ z4PwGczXHR!he&M#ggPS%C=F}PWNp%axzpl1eC9&F65g?xN6Kkb59R>XuEur1HZl4$ z2%(^kMV{e57u@TyJq76uKNDY_JJqZ3U^X^|fUcxeoj!jPF(9)IQ)}_t8)^ZB(&6rn zuawKv*zi>C<-V}&UUZ}*Y|hp)>FP_quRmO05{oeh01+@Go596@o5Y1Rqdyng2EVv< zWcUQ8!Ts&YA$WF{=XQ-yx6R0f7>9~@zF6*Z^O@#w)6AejtH=qY3vjfYBzElmOQ z0BhHaV}$-E)Ila_Wh@gTh^$OQFUqwDjyQ|FAY%DxWEsx;(9bz@D7-8zfKD3q-G57e zMn6nmE_VUw{g45RLg`)UdF{NF_jUJ#GN-?)e%lJtvBNcWJ+^PTfN6(i=Y4 zS>f#RJ+t}nd?SN`hnynB%_cj*pP1&)($$TngtICa>j{}zq`&VfXOXhHz0jZAi$i=; zKP`4J&D9U0gX5+R)!ZLE7SgEumP;}`0oF6jYN_D(eguk|;~@tk6Rim2(G-^;THO~< z@`WY|(4&GEs9DXaE3a1sHNJF0pN@9eaD?GdF(pOd$yl!$f~;t`j51@$l*h!s=|AH9 z>)E{hN@6{8pa8q@V+j1i!h4imD91jKzbA@Kc+Ynj)8kt$r-H zvqhrqFeOOjw8mx$yFx2-l7U||!_wcLIStb&ks_RNwjwg47$DUjFe#Xx?ef_hGnRDx z#-}}!P&aGBIv5@9r}FuxUHSgD(-O{vS2CTUb92GXCged3Kgb-i9AE&5aB{i|FdvnESl?2=Meo?#nOAPWnb zm}w5Aq7B|(+#8>j056=t5}40s+vjYVzT)?|LX`;3sJ=BP{R@W5_xd4i&4$cK7NLy(9YD29s6((1+n_W3~>p{Vptc`z`nCN1h6S- ztq3;3Sk0&K#)<)H<3jP+3&H?g_KqZoE%<}I+JKo&!;#QX;B8m4k0!v+gpeX~G{}!X zrkMjbE61EJ7-dq-;%&4!$65V5o#Y(Jx+hz_&YS?*$Wfgi{ePXAY;TDb2B*$n}h6t;A-qBVMQ@(<1} z(@}?F!qzUz*kaB@7>W^n5&7zc9jqiy39R{~{WP_o@^3F}Ga8R+?W`$jBwxFQ$y5{K z3{?fG=I7a(lN+ zejv?lL9s*~mEZv`Oe&}?X#w2{k>QBX5XW}JTA=>OceTaFh6{we&i7chmxrebpN2$~ zuR%$f>lE@^V8aibc99x77%AFl#41wJ@Yo>1BA@Z?7*e>XR-$phD?ens}z_s^rT z4t!vc&Hh}@s=k*_1&WX<+`t>dGm(zbphDl1Oe+uS_aw5!P8R4DyIu=zB?t~_Fimkw z1zts}DIrx4FerW>=knWn8FrvHP#JDM`W6SDTIc_Sp*NIL;sgv;iTVFrHh}ghTe3Lq zr#s?B96&gm!!R^QEMmm#t1x1BV&AnMRAso9dKJ7VQy!EDqqIs%Cg6J^DK69MD3p-K z?_T6CESMWAVmuDsqUOrxS$E??i1J z1{M<86{x?yH_&t*I4qCRq#!<*7OOzFs|p4I$fI>tVH^D{gTzs~##cPZMTcnJ1Y;`m zk<$lktev|{$6Ak@eCG_IH_?H-VTD)WU6NS`Co%oq-CRej16}A!M#94@`|M0_&F;QN z%f0p4SUwwWX5xsu4s}upPhqDLyeUkJP**Py&2MbjW+gnJT`v{w&1j_VgD$SjC>yw$ z(qf7DDF6sMODW`Cy4SiM#18Y08(ycbXfy1!4KU?6($vRn05HU*PRxEPC6~0F2LX`L z;FdBN;5zG`1ubKUyeV+SQ->xrF)UsA3FS_jZQct?GHGYNYnpP`8QQS$ih7@f?a%RQ zi9y{^+C?}Y(t0pj^!EokhH@-=%C9DD-6DE?DU`1?*|7LkTG`u~4d-`4M0TW7(Wizv zyfjgV!60&k{gb_djf=%b91>(vA+H%oZd*37k2K}H!Ez`nXQW)Wu$R@O?!T+XYxq+8 z$M|lTbb;XX9pF`uzQ$@Vm)gC zR84>y{SNl1QS%DvCuH{`a;^G>S~n2O ziEMzFX|}kBp?NGz+x6yv&;7c0!%*RX%A&}e=|5wb*Km*OhG#yNN zX~mCp{RJ5M&_fGtaR_{p=sHoW_a}Qt@knSM@;qeFYY2j<4Ahe#{{ANn zIav)U>^?GJq+E)Jj+EiB#>iwfFhwPZ?J~&4Q;F{ru0$KvUtwJqg5&+aACV{d!-aIh zYGSccK%l{FOQBX$B(`m0L6|l2TJ9J0R`p)~2+_ zHn$T!i@{v^<(yxs|E*wm)rZ<@RV-MU>cJki6$5;5)u*ZwQPhHyD+kq7sgpPTm|A5> zYoC&c)$9b8=y-l8?5+eX|Z!?K6t`h!yRa*z2AR9#tt{18B$ofi^gmOVl-xCJ|D>?3Bqt5j#rWs}JuNhDClhG5sLk3YA(V%Uub#r6@I+tsN88E7VH>;ihZ z^6`eNwoR9iKUvHoZDQV&xo59RoyaCHMmJ27MbrYy-inJxVG?4i{uei#0ak@A$O%rc zUU~$}ze8wJtTfMrX&yZ?DBObykaN2DH-^?f6Lx6i|2iJ#c^89@O}JIl`&%Q*6&6-> z)~?0WLu>W&W0FCNMpShy41sI zy6_{o#c~;Q-1pHdTN(-dDPCd!sRMLc1d@)uJkgASG{Q$+^&JwHeLec{Z=}WgzaXMS z3GBg?vBilNiv4Bx=51g`p)sW)#yJ%6YbaNZrTHnDd{LhKTW+W7a7`8_Bh@uZcXP!u zg$s`p%kJzt^|1S`UeK`9=F|ewwGF9sq@N-Y?^`!zT?H;NaOKYUJB@{y8ANDbTs3e9 zSTDwxf@DnRNI~c_;h``?UE7eTuhSoeBZT~GujJLDi2Os4Bi&+-!*z`^eR6YhFf(|U zyqq~*Vqyn37NXd>~LpP9d6Bio&o4}O>PBnI{OO~|HmI5;0c2x8oqB+Mb(eiMv%$eVEZJRF#gkb zQ3ZmBtW(M$aWOlPxA3vb2+V2RWH3zvHQ7qaBd~;^EBOpNOyE#t=4$Vix6p5K%yB|x zjUh$qW9UQV!86tCZhxTaV%N#10QxE6@M_=yDTfvBz)>$-BYlsH4(#+ddzovARFboW zZecCSm&X6R#QTZ)`bSVH1eDznnVQ@#2`90b$-|gWx5(UphvT<5KDk*Me6b(^cQGTz zJj*Dz_-}8JQ+#^kD*-L!3JD9*xO~%y)Vy7(cDhKuweu?;JG74C9o}@GQtT(~F=KM} zC#>Tg0Bms-`;27C6#(4jF83q{GJNblW8^d3<1TcnzW<4o#xf$&U|i4SW(x&|^`F3! zYcn*4E19Kyl5Vs(_;rAFV0I4x3;Xc%7Q!oE?+y<5poxG*fRblplClA^WbYU@{S34L zDM#}PZ>)uVpR@f2bps4pa5zINCLB8kOPykIN2K990x^t!kc-^IP5FTX*bPUf`eokJ z2Om*~I$|z!JwUCJm@I;tB?1<2JV_F&q--`(`G-9iC*he*j^F}~Y^_V^oUOs;e}P*d zCV7<@3uo&Ucx@f}k{>ZwKaPIM_bGbnsb&$d2fiiE9oG(K1UBOnAYxPIPXJ{d;K}^5 z&R{!bzo2@Y1omKwk%5hCREeOzGT8si80o@-pnpzATc#&Wb%n z2GT&ZLQy$ImX8O~vGPi(GWtdo3YpH8%?%WT1{Ss?Q>;*bz)yigg+g2w(J=c_84&=& zTv5)Kb$>NkZqMfBGVYL=V0yp1Gzg;Y+;w9h=ng3A%=V1bO3nrQI`QxIU->YIaUy?} zqy4vmj=#F#-@Bl4UbkNxYO*W&IDxya0h=&VmqkUdAQ4p|n_?5>szJJQW{j>82IUe!ZtWo6wu#jrv;%&8L9^7Svu%kL)p-9sK+F$BwY>&&Do$a9*-+6QJ>hiv}AG@qMu&GGaYVVSv0F9i^8Oqcj z-7uCJpWHl>H_TP<#D)7sDjJ={BgFwzYv1n-=SmPAAak|?6q+KVn2 zx%Y~3q}T>QbItijy>GuMn!J*`v)7i&cHOv6=?_2GUj3TIle3n#F*}!8j5l2;SKpK> z%_K#YffqTS_D*k{mMo+%Zl1f9PyA|S>j4)x%Z!0_D%M|~bhA-kTFPJDH`jdIef822 z)z)hH%V(>WZ~At<4_vnb_k*C~Sm+89jr8Dda<2K>=kBul8w+sZt_(x{um19fm3Vjv z^{-fN|JhNAu1N10v}_-bD9?z?45+OFF3vDz;1QE~w=40slt2j^E}?;EE5D@3!TICS g8GJi(kMOgjn?HzdF3x`#ot>Qj&(YcG`Sa0#0J+wl82|tP literal 0 HcmV?d00001 diff --git a/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..7a03d6aced7 --- /dev/null +++ b/ckan/i18n/cs_CZ/LC_MESSAGES/ckan.po @@ -0,0 +1,5256 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# trendspotter , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: trendspotter , 2020\n" +"Language-Team: Czech (Czech Republic) (https://www.transifex.com/okfn/teams/11162/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Zvuk" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "url Zvukového souboru" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"např. http://example.com/audio.mp3 (pokud je prázdné, používá adresu URL " +"zdroje)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Váš prohlížeč nepodporuje audio soubory. Ale nebojte se, můžete" +" si je stáhnout." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Datový zdroj nebyl nalezen" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nemáte oprávnění vidět tuto stránku" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Dokončit" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Čekající na zpracování" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Nahrávání" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Chyba" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Dosud nenahráno" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Nahrát do DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Chyba při náhrávání:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Chyba:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Výpis chyby:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Stav" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Naposledy aktualizováno" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikdy" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Záznam nahrávání" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Podrobnosti" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Konec záznamu" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Požadovaný zdroj z DataStore nebyl nalezen" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Datový slovník uložen. Veškeré změny typů budou uplatněny při dalším nahrání" +" zdroje do DataStore" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Data byla neplatná: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Zdroj \"{0}\" nenalezen." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Uživatel {0} nemá oprávnění upravovat zdroj {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "Datové CKAN API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Přistupte ke zdrojovým datům přes webové API s pokročilými možnostmi " +"dotazování" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Další informace naleznete v dokumentaci pro hlavní CKAN Data API a v dokumentaci DataStore .

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Přístupové body" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Datové API můžete využít pomocí následujících akcí CKAN API pro provádění " +"operací." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Vytvořit" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Aktualizovat / vložit" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Dotaz" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Dotaz (pomocí SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Zpracování dotazu" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Příklad dotazu (5 prvních výsledků)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Příklad dotazu (výsledky obsahující 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Příklad dotazu (pomocí jazyka SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Příklad: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Jednoduchý požadavek odeslaný na datové API s využitím ajax (JSONP) a " +"jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Příklad: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Uložit" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Pole {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Změna typu" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Název" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Popis" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Datový slovník" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Sloupec" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Typ" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Nahrávám..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Datové API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabulka" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responzivní displej" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Zobrazit sloupce" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Skrýt/Zobrazit sloupce" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevance" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Jména vzestupně" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Jména sestupně" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Naposledy změněné" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Vzestupně dle vlastního pole" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Sestupně dle vlastního pole" + +#: ckan/templates/group/read.html:17 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 "Populární" + +#: 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 "Vlastní text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "vlastní text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kód země" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Tato skupina nemá žádný popis" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} dataset" +msgstr[1] "{num} datasety" +msgstr[2] "{num} datových sad" +msgstr[3] "{num} datových sad" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 datových sad" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Nástroj pro náhled dat CKAN má mnoho mocných funkcí" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Následovníci" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Zdroje" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Vteřina" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Minuta" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Hodina" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Den" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Platnost vyprší v" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Jednotky" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Platnost vyprší" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Obrázek" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Url obrázku" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"např. http://example.com/image.jpg (používá url zdroje pokud je prázdné)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Prohlížeč dat" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graf" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Chyba při načítání pohledu" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Nelze načíst pohled" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "Nastala chyba v DataStore" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Nastala chyba v DataProxy" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Mřížka" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtry" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Posunutí řádků" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "např.: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Počet řádek" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "např.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Typ grafu" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Skupina (Osa 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Řada (Osa 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Typ pole" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Pole zeměpisné šířky" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Pole zeměpisné délky" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Pole GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automaticky zoomovat na funkce" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Značky shluku" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Neplatné URL." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Nejlépe hodnocené datové sady" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Průměrné hodnocení" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Počet hodnocení" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Žádná hodnocení" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Největší skupiny" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Skupina" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Počet datových sad" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Žádné skupiny" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Nejpoužívanější tagy" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Název tagu" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Počet Datových sad" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Uživatelé, kteří tvoří nejvíce datových sad" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Uživatel" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menu statistiky" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Nejčastěji upravované datové sady" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Text" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "Během požadavku AJAX došlo k chybě. Zobrazení nelze načíst." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Video" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Video url" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"např. http://example.com/video.mpeg (pokud je prázdné, použije adresu URL " +"zdroje)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "Poster url" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "např. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Je nám líto, ale váš prohlížeč nepodporuje vložená videa, ale nebojte se, " +"můžete si jej stáhnout a " +"sledovat pomocí svého oblíbeného videopřehrávače!" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Webová stránka" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL webové stránky" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "např. http://example.com (používá url zdroje pokud zůstane prázdné)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Váš prohlížeč nepodporuje iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Autorizační funkce nebyla nalezena: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrátor" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaktor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Člen" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +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:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Název portálu" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Styl" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Popisek portálu" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Malé logo portálu" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "O nás" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Text stránky „O portálu“" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Úvodní text" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text na domovské stránce" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Vlastní nebo upravené CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Upravené CSS vkládané do záhlaví stránky" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Hlavní stránka" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problém při odstraňování revize %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Vymazat celé" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Tato akce není implementována." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Přístup zamítnut" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nenalezeno" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Chybný požadavek" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Název akce není znám: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Chyba JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Neplatný požadavek na data: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Skupina nebyla nalezena" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizace nebyla nalezena" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Špatný typ skupiny" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizace" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Skupiny" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tagy" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formáty" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licence" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, 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:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nemáte oprávnění k provedení hromádné aktualizace" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nemáte oprávnění vytvořit skupinu" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritní chyba" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nemáte oprávnění odstranit skupinu %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizace byla odstraněna." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Skupina byla odstraněna." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "Skupina %s byla smazána." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Uživatel %r nemá oprávnění měnit členy %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Nemáte oprávnění vytvářet členy skupiny %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nemáte oprávnění odstranit členy skupiny %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Člen skupiny byl odstraněn" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Pro porovnání musíte vybrat dvě verze" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Historie verzí skupiny CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nedávné změny skupiny CKAN: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Zpráva logu: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Nyní sledujete {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Přestal(-a) jste sledovat {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nemáte oprávnění zobrazit následovníky %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Chybný dotaz: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametr s názvem \"{parameter_name}\" není celé číslo" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Datová sada nenalezena" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neplatný formát verze: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Zobrazení datových sad typu \"{package_type}\" není podporováno ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nemáte oprávnění číst balíček %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historie revizí datových sad CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedávné změny v datové sadě CKAN: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nemáte oprávnění vytvořit balíček" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nemáte oprávnění upravovat tento zdroj" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nemáte oprávnění upravovat datovou sadu" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Datová sada {id} nebyla nalezena" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Musíte přidat alespoň jeden datový zdroj" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nemáte oprávnění vytvořit datový zdroj" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +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:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Do vyhledávacího indexu nelze přidat balíček." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Vyhledávací index nelze aktualizovat." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Datová sada byla smazána." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nemáte oprávnění smazat balíček %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Datový zdroj byl odstraněn." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nemáte oprávnění odstranit datový zdroj %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Zobrazení datového zdroje nebylo nalezeno" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Data z datového zdroje nebyla nalezena" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Žádné soubory ke stažení nejsou k dispozici" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nemáte oprávnění ke čtení datové sady %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemáte oprávnění číst nebo přistupovat k datovému zdroji %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Nemáte povolení upravovat datový zdroj" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Zobrazení nebylo nalezeno" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Typ zobrazení nebyl nalezen" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Chybná data zobrazení datového zdroje" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Zobrazení datového zdroje nebylo dodáno" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Žádný náhled nebyl definován." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Uživatel nebyl nalezen" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Nemáte oprávnění se registrovat jako uživatel." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Nemáte oprávnění vytvářet uživatele" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nemáte oprávnění smazat uživatele s identifikátorem \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nebyl vybrán žádný uživatel" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Nemáte oprávnění upravovat uživatele %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil upraven" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Nemáte oprávnění vytvořit uživatele %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Chybný kontrolní kód. Zkuste to prosím znovu." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Uživatel \"%s\" byl úspěšně zaregistrován, nicméně od minula jste stále " +"přihlášeni jako \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Nemáte oprávnění upravovat uživatele." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Heslo bylo zadáno špatně" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Staré heslo" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "nesprávné heslo" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +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:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nemáte oprávnění požadovat obnovu hesla." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "E-mail je vyžadovaný" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Chyba při odesílání e-mailu. Zkuste to znovu později nebo požádejte o pomoc " +"správce" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Byl vám zaslán e-mail s resetovacím odkazem (pokud zadaný účet neexistuje)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Nemáte oprávnění obnovit heslo." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Neplatný obnovovaní klíč. Zkuste to prosím znovu." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Vaše heslo bylo obnoveno." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Vaše heslo musí mít alespoň 4 znaky." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Zadaná hesla se neshodují." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Musíte zadat heslo" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Sledovaná položka nebyla nalezena" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "Nepodařilo se najít {0}" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Vše" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Zobrazení" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nová aktivita z {site_title}" +msgstr[1] "{n} nové aktivity z {site_title}" +msgstr[2] "{n} nových aktivit z {site_title}" +msgstr[3] "{n} nových aktivit z {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Právě teď" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytů" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Neznámo" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Nepojmenovaný datový zdroj" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Vytvořit novou datovou sadu." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Upravené datové zdroje." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Upravená nastavení." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} shlédnutí" +msgstr[1] "{number} shlédnutí" +msgstr[2] "{number} shlédnutí" +msgstr[3] "{number} shlédnutí" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nedávné shlédnutí" +msgstr[1] "{number} nedávné shlédnutí" +msgstr[2] "{number} nedávných shlédnutí" +msgstr[3] "{number} nedávných shlédnutí" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Není k dispozici žádná e-mailová adresa příjemce!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizace" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupina" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Chybějící hodnota" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Neočekávaný název vstupního pole %(name)s" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Prosím, zadejte celočíselnou hodnotu" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Toto musí být řetězec v Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Neplatný zdroj balíčku" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Vlastní položky" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Slovník tagů \"%s\" neexistuje" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Datová sada" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Vstup není platný JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Organizace musí být zadána" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "Tuto datovou sadu nemůžete přesunout do jiné organizace" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizace neexistuje" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Nemůžete přidat datovou sadu do této organizace" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Neplatné číslo" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Hodnota musí být přirozené číslo" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Hodnota musí být kladné celé číslo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Nesprávný formát data" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "V log_message nejsou povoleny odkazy." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "ID datové sady již existuje" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Datový zdroj" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Skupina s takovýmto názvem nebo ID neexistuje." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Typ události" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Jména musí být textové řetězece" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Takové jméno nemůže být použito" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Musí být alespoň %s znaků" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +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:385 +msgid "That URL is already in use." +msgstr "Toto URL je již používáno." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplicitní klíč \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Název skupiny již v databázi existuje" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" nesmí obsahovat velká písmena" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Uživatelská jména musí být textové řetězece" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Toto přihlašovací jméno není k dispozici." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Toto přihlašovací jméno nelze změnit." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Zadejte prosím obě hesla" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Heslo musí být textový řetězec" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Vaše heslo musí mít alespoň 8 znaků." + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Zadaná hesla se neshodují" + +#: ckan/logic/validators.py:639 +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:648 +#, 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:656 +msgid "That vocabulary name is already in use." +msgstr "Jméno slovníku je již používáno" + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Slovník tagů nebyl nalezen." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s nepatří do slovníku %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Žádný název tagu" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s ve slovníku %s již existuje" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Prosím, zadejte platný URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "role neexistuje." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datová sada, která nenáleží do žádné organizace, nemůže být soukromá." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Toto není seznam" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Toto není textový řetězec" + +#: ckan/logic/validators.py:811 +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:821 +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:832 +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:835 +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:849 +msgid "There is a schema field with the same name" +msgstr "Pole schematu se stejným jménem již existuje" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Email {email} není ve správném formátu" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Musí to být dict" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "E-mailová adresa '{email}' patří registrovanému uživateli." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "Hodnota musí být jedna z {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "Hodnota by měla být platný objekt JSON" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "Hodnotu nelze analyzovat jako platný objekt JSON" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "Nelze parsovat extra '{name}' jako platný JSON" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Chybějící hodnota" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "Role musí být jedna z „{}“" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "Není povoleno přidávat spolupracovníky" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Spolupracovníci datové sady nejsou povoleni" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Vytvářím organizaci jako skupinu" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Musíte vyplnit hodnocení (parametr \"hodnocení\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Hodnocení musí být celé číslo." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "Chyba při posílání pozvánky emailem, uživatel nebyl vytvořen: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +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:1369 +msgid "You cannot follow yourself" +msgstr "Nemůžete sledovat sami sebe" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "{0} již sledujete" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Abyste mohl(-a) sledovat datovou sadu, musíte se přihlásit." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Uživatel s uživatelským jménem {username} neexistuje." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Balíček nebyl nalezen" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "Organizace nemůže být smazána dokud obsahuje datové sady" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "data neobsahují id" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nelze najít slovník \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nelze najít tag \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +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:697 +msgid "You are not following {0}." +msgstr "Nesledujete {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "Kapacita musí být jedna z „{}“" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "Není povoleno přibírat spolupracovníky" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Zdroj nebyl nalezen." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "Parametr není booleovský" + +#: ckan/logic/action/get.py:2056 +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:2065 +msgid "Must be : pair(s)" +msgstr "Je třeba uvést dvojici(-e) :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Pole \"{field}\" nebylo rozpoznáno během vyhledávání zdrojů." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Balíček nebyl nalezen." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus nenalezen." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizace nenalezena." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Uživatel %s nemá oprávnění vytvářet balíčky" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Uživatel %s nemá oprávnění upravovat tyto skupiny" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "Uživatel %s nemá oprávnění přidat datovou sadu k této organizaci" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Nebylo zadáno žádné ID datové sady. Nelze autorizovat." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Pro tento zdroj nebyl nalezen žádný balíček, nelze zkontrolovat oprávnění." + +#: ckan/logic/auth/create.py:76 +#, python-format +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:108 +#, 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:119 +#, 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:129 +#, 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:145 +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:148 +msgid "Not authorized to create users" +msgstr "Nemáte oprávnění vytvářet uživatelské účty" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Skupina nebyla nalezena." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"Uživatel %s není oprávněn přidávat spolupracovníky do této datové sady" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Uživatel %s nemá oprávnění odstranit datový zdroj %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Nebylo nalezeno zobrazení zdroje. Nelze autorizovat." + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, 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:107 +#, 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:120 +#, 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/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "Uživatel %s není oprávněn odebrat spolupracovníky z této datové sady" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "K této akci nemáte oprávnění" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Uživatel %s nemá oprávnění číst tyto balíčky" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Uživatel %s nemá oprávnění číst balíček %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Uživatel %s není oprávněn přistupovat k datovému zdroji %s" + +#: ckan/logic/auth/get.py:177 +#, 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:249 +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." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "Uživatel %s není oprávněn vypsat spolupracovníky z této datové sady" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Uživatel %s nemá oprávnění upravovat balíček %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Uživatel %s nemá oprávnění upravovat zdroj %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Uživatel %s nemá oprávnění měnit stav balíčku %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Uživatel %s nemá oprávnění upravovat organizaci %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Uživatel %s nemá oprávnění měnit stav skupiny %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Uživatel %s nemá oprávnění měnit práva na skupinu %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Abyste mohli upravovat uživatele, musíte se přihlásit" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Uživatel %s nemá oprávnění upravovat uživatele %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Uživatel {0} není oprávněn aktualizovat data uživatele {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Uživatel %s nemá oprávnění měnit stav verze" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Uživatel %s není oprávněn aktualizovat tabulku task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Uživatel %s není oprávněn aktualizovat tabulku term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "nadpis" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Nebyla specifikována licence" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Uveďte autora" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Uveďte autora-Zachovejte licenci" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Ostatní (Otevřená licence)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Ostatní (Public Domain - volné dílo)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Ostatní (Licence s přiznáním autorství)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +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:367 +msgid "Other (Non-Commercial)" +msgstr "Ostatní (Licence pro nekomerční využití)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Ostatní (Uzavřená licence)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "závisí na %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "má v závislosti %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "je odvozen od %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "má odvozeno %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "odkazuje na %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "je odkazován z %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "je potomkem %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "je předkem %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "je příbuzné s %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" +"Tento datový zdroj neobsahuje žádná data, která lze poskytnou přes API" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Pokus o získání informací pomocí API selhal" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Začněte psát..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Nenalezena žádná shoda" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Vstup je příliš krátky, musí mít alespoň jeden znak" +msgstr[1] "Vstup je příliš krátky, musí mít alespoň %(num)d znaky" +msgstr[2] "Vstup je příliš krátky, musí mít alespoň %(num)d znaků" +msgstr[3] "Vstup je příliš krátky, musí mít alespoň %(num)d znaků" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Tento formulář obsahuje neuložené změny" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Prosím potvrďte akci" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Jste si jistí, že chcete provést tuto akci?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Potvrdit" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Zrušit" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Přestat sledovat" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Sledovat" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Odkaz" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Odkaz na internetovou URL adresu (můžete také zadat odkaz na API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Nahrát" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Vyberte soubor, který chcete znovu nahrát" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Odstranit" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Nahrát soubor z počítače" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Soubor" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Změnit pořadí zdrojů" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Uspořádání zdrojů můžete změnit jejich přetažením pomocí ikony šipky. " +"Přetáhněte zdroj doprava a umístěte jej na požadované místo v seznamu. Po " +"dokončení klikněte na tlačítko „Uložit pořadí“." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Uložit pořadí" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Ukládám..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Nahrát soubor" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Nastala chyba" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Nelze nahrát soubor" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Nastala chyba autentizace při nahrávání dat" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Datový zdroj nahrán" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Nelze získat data z nahraného souboru" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Právě nahráváte soubor. Jste si opravdu jistí, že chcete tuto stránku " +"opustit a ukončit tak nahrávání?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Přidat filtr" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Vyberte pole" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Upravit" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Ukázat více" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Skrýt" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Chyba %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "O {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Asociace CKAN" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Využíván CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Administrátorská nastavení" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Zobrazit profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Přehled (%(num)d nová položka)" +msgstr[1] "Přehled (%(num)d nové položky)" +msgstr[2] "Přehled (%(num)d nových položek)" +msgstr[3] "Přehled (%(num)d nových položek)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Přehled" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Nastavení profilu" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Odhlásit" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Účet" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Přihlásit se" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrace" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datové sady" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Vyhledat datasety" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Vyhledat" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Vyhledat datové sady" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Odeslat" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Přejít na obsah" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Drobečková navigace" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Zobrazit více" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Načíst více" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Zde nejsou žádné události" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrace" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administrátoři" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurace" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Koš" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Malé logo portálu" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Opravdu chcete resetovat konfiguraci?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Resetovat" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Upravit konfiguraci" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Konfigurační volby CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Název portálu: Toto je název této CKAN instance. " +"Objevuje se na různých místech CKANu.

Styl: Můžete " +"si vybrat z nabídky jednoduchých variant barevného schematu a rychle tak " +"upravit vzhled Vašeho portálu.

Malé logo portálu: " +"Toto logo se zobrazuje v záhlaví každé šablony CKAN instance.

" +"

O portálu: Tento text se objeví na informační stránce této CKAN instance.

" +"

Úvodní text: Tento text se objeví na domovské stránce této CKAN instance pro přivítání " +"návštěvníků.

Vlastní nebo upravené CSS: Toto je blok" +" pro CSS, který se objeví v <head> tagu každé stránky. " +"Pokud si přejete upravit šablony ještě více, doporučuje přečíst si dokumentaci.

" +"

Hlavní stránka: Tato volba slouží k určení " +"předpřipraveného rozložení modulů, které se zobrazují na hlavní stránce.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potvrďte reset" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Spravovat CKAN" + +#: 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 "" +"

Jako uživatel sysadmin máte plnou kontrolu nad touto instancí CKAN. " +"Pokračujte s opatrností!

Pro návod k funkcím sysadmin se podívejte na" +" příručku sysadmin CKAN

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "Opravdu chcete vše odstranit?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Odstranit vše" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"Vymazat odstraněné datové sady, organizace nebo skupiny navždy a nevratně." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Potvrďte odstranění" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Smazané datové sady" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Smazané organizace" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Smazané skupiny" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Odstranit" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Pro tento zdroj v tomto okamžiku nelze zobrazit náhled." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Pro více informací klikněte zde." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Stáhnout zdroj" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Žádný náhled není k dispozici." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Více podrobností..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Pro datový typ %(type)s nebyl definován nástroj pro jeho zpracování." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standardní" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardní vstup" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Střední" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Středně široký vstup" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Plný" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Vstup plné šířky" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Velký" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Velký vstup" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Předřazený" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Předřazený vstup" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Vlastní pole (prázdné)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Vlastní pole" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textová oblast" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Výběr" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Události" + +#: 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 "Administrátoři" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Přidat skupinu" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulář skupiny" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Jste si jistí, že chcete odstranit skupinu - {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 "Jste si jistí, že chcete odstranit člena - {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:15 +#: 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 "Spravovat" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Upravit skupinu" + +#: 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 "Členové" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Přidat skupinu" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Vyhledat skupiny..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Na tomto portálu aktuálně nejsou žádné skupiny" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Nechcete jednu založit?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Zpět na všechny členy" + +#: 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 "Upravit člena" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Přidat člena" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Existující uživatel" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Pokud si přejete přidat existujícího uživatele, zadejte níže jeho " +"uživatelské jméno a vyhledejte ho." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "nebo" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Nový uživatel" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Pokud si přejete pozvat nové uživatele, zadejte jejich emailové adresy." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Role" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Jste si jist, že chcete smazat tohoto člena?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Smazat" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Co jsou to role?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administrátor: Může upravovat informace o skupině a " +"může spravovat členy skupiny.

Člen skupiny: Může " +"přidávat a odebírat datasety k nebo ze skupiny

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Vytvořit skupinu" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Upravit skupinu" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Vytvořit skupinu" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Vyhledat datasety..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datové sady ve skupině: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Název" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moje skupina" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Trochu údajů o mé skupině..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Jste si jistí, že chcete odstranit tuto skupinu?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Uložit skupinu" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Zobrazit {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Odebrat dataset z této skupiny" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Co jsou skupiny?" + +#: 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 "" +"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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Smazáno" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "načíst další" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Vítejte" + +#: 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 je přední světová open source platforma pro datové portály.

" +"

CKAN je kompletní softwarové řešení, které je ihned připravené k " +"nasazení, pomáhající k tomu, aby data byla dostupná a využitelná. To je " +"dosaženo pomocí nástrojů, které usnadňují publikaci, sdílení, vyhledávání a " +"využívání dat (včetně ukládání dat a zpřístupnění dat pomocí robustního " +"API). CKAN je určen poskytovatelům dat (orgány státní správy a samosprávy, " +"podniky a organizace), kteří chtějí, aby jejich data byla dobře " +"dostupná.

CKAN je využíván vládami a skupinami uživatelů po celém " +"světě a je to platforma mnoha oficiálních a komunitních datových portálů, " +"mezi které patří portály veřejné správy na regionální, národní a nadnárodní " +"úrovni, jako jsou např. portály Velké Británie data.gov.uk a Evropské Unie publicdata.eu, Brazílie dados.gov.br, portály veřejné správy v " +"Holandsku, jakož i portály měst a obcí v USA, Velké Británii, Argentině, " +"Finsku a jinde.

CKAN: http://ckan.org/
Prohlídka CKANu: http://ckan.org/tour/
Přehled " +"vlastností: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to 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 ú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" +msgstr "Toto je vybraná sekce" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Např. prostředí" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Hledat data" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populární tagy" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} - statistiky" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datová sada" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datových sad" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizace" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupiny" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Toto pole je povinné" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Zde můžete použít formátování Markdown" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Klíč" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Hodnota" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Upravené" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formulář obsahuje chybné položky:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Povinné pole" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL obrázku" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Vymazat nahrávání" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Přidat Organizaci" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulář organizace" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Upravit datové sady" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "nalezeno jako výsledek pro dotaz \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Pro dotaz \"{query}\" nebyly nalezeny žádné výsledky" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Zpřístupnit veřejnosti" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Přidat do soukromých" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Předběžný návrh" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Soukromá" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +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}?" +msgstr "Jste si jistí, že chcete smazat organizaci {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 "Upravit organizaci" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Přidat organizaci" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Vyhledat organizace..." + +#: ckan/templates/organization/index.html:29 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Uživatelské jméno" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Emailová adresa" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Upravit údaje o členovi" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} člen" +msgstr[1] "{count} členové" +msgstr[2] "{count} členů" +msgstr[3] "{count} členů" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Vytvořit organizaci" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Upravit organizaci" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Vytvořit organizaci" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datové sady v organizaci: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Co jsou organizace?" + +#: 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 "" +"

Organizace se chovají jako publikační oddělení pro datovou sadu " +"(například oddělení zdravotnictví). To znamená že datová sada může být " +"publikována oddělením a nebo oddělení patřit místo toho aby patříla " +"konkrétnímu uživateli.

Uvnitř organizací mohou administrátoři " +"přidělovat role a autorizovat členy. Členům mohou individuálně přidělovat " +"práva na publikaci datových sad za danou organizaci (např. Český statistický" +" úřad)." + +#: 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 "" +"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" +msgstr "Moje organizace" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Stručné informace o mé organizaci" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Opravdu chcete smazat tuto organizaci? Poznámka*: Smazání nemůže proběhnout " +"dokud do této organizace patří veřejné či soukromé datové sady." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Uložit organizaci" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Zobrazit {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Vytvořit datovou sadu" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Co jsou to datové sady?" + +#: 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 "" +"V CKAN je datasetem soubor datových zdrojů (jako jsou např. soubory) spolu s" +" jeho popisem a dalšími údaji, který má pevnou URL adresu. Uživatelům se " +"zobrazují datasety jako výsledky jejich hledání." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Změny" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete 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 datový zdroj - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Zobrazit datovou sadu" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Upravit metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +msgstr "Spolupracovníci" + +#: 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 "Upravit zobrazení" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Náhled" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Aktualizovat" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Přidat aktuální datovou sadu k této skupině" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Přidat do skupiny" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Tato datová sada nenáleží do žádné skupiny" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Upravit datovou sadu" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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ý 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 datový zdroj" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nový datový zdroj" + +#: 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 "Přidat zobrazení" + +#: 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 "" +"Zobrazení prohlížeče dat může být pomalé a nespolehlivé, pokud není " +"aktivováno rozšíření DataStore. Pro více informací se podívejte na dokumentaci Datového " +"prohlížeče." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Přidat" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"Momentálně si prohlížíte starou verzi této datové sady. Aktuální verzi " +"zobrazíte kliknutím sem." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Všechny datové zdroje" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Zobrazit datový zdroj" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Upravit datový zdroj" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Zobrazení" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Přístupový bod API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Přejít na datový zdroj" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Stáhnout" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Popis datové sady:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Zdroj: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Pro tento zdroj ještě nejsou vytvořena žádná zobrazení" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Nevidíte zobrazení které jste očekávali?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Zde je pár důvodů proč nemusíte vidět očekávaná zobrazení:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" +"Nebylo vytvořeno žádné zobrazení které by se hodilo pro tento datový zdroj" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Administrátoři možná nepovolili relevantní pluginy pro zobrazení" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Jestliže zobrazení vyžaduje DataStore, plugin DataStore možná není zapnutý, " +"data nebyla nahrána do DataStore a nebo DataStore ještě nedokončil " +"zpracování dat." + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Další informace" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Pole" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Datum aktualizace dat" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "neznámý" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Datum aktualizace metadat" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Vytvořeno" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formát" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licence" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nové zobrazení" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Tento datový zdroj nemá žádná zobrazení" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Přidat nový datový zdroj" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "úplný {format} obsah ke stažení" + +#: 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 "" +"Tento katalog je také dostupný prostřednictvím %(api_link)s (viz " +"%(api_doc_link)s) nebo si můžete jeho obsah stáhnout %(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 "" +"Tento katalog je také dostupný prostřednictvím %(api_link)s (see " +"%(api_doc_link)s)." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Všechna zobrazení" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Zobrazit zobrazení" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Zobrazit náhled" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Upravit spolupracovníka" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Přidat spolupracovníka" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Zpět na všechny spolupracovníky" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "Opravdu chcete tohoto spolupracovníka smazat?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Aktualizovat spolupracovníka" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "Jaké jsou dostupné role?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Správce: Kromě správy datové sady mohou správci přidávat" +" a odebírat spolupracovníky z datové sady.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Editor: Editoři mohou upravovat datovou sadu a její " +"zdroje a také přístup k datové sadě, pokud je soukromý. " +"

Člen: Členové mají přístup k datové sadě, pokud jsou" +" soukromé, ale nemohou ji upravovat.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Přidat spolupracovníky" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} spolupracovník" +msgstr[1] "{count} spolupracovníci" +msgstr[2] "{count} spolupracovníků" +msgstr[3] "{count} spolupracovníků" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Doplňující informace" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Zdroj" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Správce" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verze" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stav" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Naposledy aktualizováno" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Před vytvořením datové sady musíte vytvořit organizaci." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Vytvořit organizaci" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Neexistují organizace, do kterých byste mohli přiřadit tuto datovou sadu." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Před pokračováním požádejte systémového správce o vytvoření organizace." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "%(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titulek" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "např. výstižné označení" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "např. můj-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "např. nějaké užitečné poznámky ohledně dat" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "např. ekonomie, duševní zdraví, vláda" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "Vyberte licenci" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizace" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Žádná organizace" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Viditelnost" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Veřejná" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktivní" + +#: 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 "" +"Datová licence kterou výše vyberete se vztahuje pouze na obsah " +"každého ze zdrojových souborů které přidáte do této datové sady. Odesláním " +"tohoto formuláře souhlasíte s uvolněním metadatových hodnot, které " +"zadáváte do formuláře, pod licencí Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Jste si jistí, že chcete smazat tento dataset?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Následující krok: přidat data" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email autora" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +#: ckan/templates/user/new_user_form.html:7 +msgid "joe@example.com" +msgstr "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email správce" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Aktualizovat datový zdroj" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Data" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "https://priklad.cz/externí-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "např. Ceny zlata leden 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Nějaké užitečné poznámky ohledně dat" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "např. CSV, XML nebo JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Toto bude uhádnuto automaticky. Můžete nechat prázdné." + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "např. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Velikost souboru" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "např. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "např. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Jste si jistí, že chcete odstranit tento datový zdroj?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Předchozí" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Uložit a přidat další" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Dokončit" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +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." +msgstr "" +"Zdrojem může být libovolný soubor nebo odkaz na soubor, který obsahuje " +"nějaká užitečná data." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Prozkoumat" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Více informací" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Na celou obrazovku" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Zakomponovat" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Toto zobrazení zdroje není v tento okamžik k dispozici." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Embedovat zobrazení zdroje" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Můžete kopírovat a vložit kód embedu do CMS nebo blogovacího software který " +"podporuje čisté HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Šířka" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Výška" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kód" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Náhled zdroje" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data a zdroje" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Tato datová sada neobsahuje data" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Vytvořit datovou sadu" + +#: 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 "Přidat data" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "např. Moje Zobrazení" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "např. Informace o mém zobrazení" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstranit filtr" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +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 v datovém zdroji" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Vytvořit Datovou sadu" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Stav datové pumpy: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Sledovací URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Zobrazit další {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Zobrazit pouze populární {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Domů" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jazyk" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Vpřed" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Licence neuvedena" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Tato datová sada vyhovuje Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Tato organizace nemá uveden popis" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Tento dataset nemá uveden žádný popis" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrovat výsledky" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Prosím, zkuste jiný dotaz.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Při hledání se vyskytla chyba. " +"Zkuste to prosím znovu.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} dataset nalezen na dotaz \"{query}\"" +msgstr[1] "{number} datasety nalezeny na dotaz \"{query}\"" +msgstr[2] "{number} datasetů nalezeno na dotaz \"{query}\"" +msgstr[3] "{number} datasetů nalezeno na dotaz \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Pro dotaz \"{query}\" nebyly nalezeny žádné výsledky" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset nalezen" +msgstr[1] "{number} datasety nalezeny" +msgstr[2] "{number} datových sad nalezeno" +msgstr[3] "{number} datových sad nalezeno" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +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} skupin nalezeno na dotaz \"{query}\"" +msgstr[3] "{number} skupin nalezeno na dotaz \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Pro dotaz \"{query}\" se nepodařilo najít žádné skupiny" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} skupina nalezena" +msgstr[1] "{number} skupiny nalezeny" +msgstr[2] "{number} skupin nalezeno" +msgstr[3] "{number} skupin nalezeno" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nebyly nazelezeny žádné skupiny" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organizace nalezena na dotaz \"{query}\"" +msgstr[1] "{number} organizace nalezeny na dotaz \"{query}\"" +msgstr[2] "{number} organizací nalezeno na dotaz \"{query}\"" +msgstr[3] "{number} organizací nalezeno na dotaz \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Na dotaz \"{query}\" se nepodařilo najít žádné organizace" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organizace nalezena" +msgstr[1] "{number} organizace nalezeny" +msgstr[2] "{number} organizací nalezeno" +msgstr[3] "{number} organizací nalezeno" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nebyly nalezeny žádné organizace" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sdílet" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Přihlásit se k odběru" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} přidal(-a) tag {tag} k datasetu {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} upravil(-a) skupinu {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} upravil(-a) organizaci {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} upravil(-a) datovou sadu {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "Zobrazit tuto verzi" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} upravil(-a) zdroj {resource} datové sady {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} aktualizoval(-a) profil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} odstranil(-a) skupinu {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} odstranil(-a) organizaci {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} smazal(-a) datovou sadu {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} odstranil(-a) zdroj {resource} z datové sady {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "{actor} {activity_type}" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} nyní sleduje {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} nyní sleduje {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} nyní sleduje {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} vytvořil(-a) skupinu {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} vytvořil(-a) organizaci {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} vytvořil(-a) datovou sadu {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} přidal(-a) zdroj {resource} k datové sadě {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} se přihlásil(a)" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} odstranil(-a) tag {tag} z datové sady {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "Nastavit autora {pkg_link} na {new_author} (dříve {old_author})" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "Nastavit autora {pkg_link} na {new_author}" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "Odebrán autor z {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" +"Nebyla aktualizována žádná pole. Další podrobnosti najdete v rozdílu " +"metadat." + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"Nastavit e-mail autora {pkg_link} na {new_author_email} (dříve " +"{old_author_email})" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "Nastavit e-mail autora {pkg_link} na {new_author_email}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "Odebraný e-mail autora z {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "Smazán zdroj {resource_link} z {pkg_link}" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "Hodnota pole {key} byla změněna na {value} v {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "Přidáno pole {key} s hodnotou {value} do {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "Přidáno pole {key} do {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "Přidána následující pole do {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} s hodnotou {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"Hodnota pole {key} změněna na {new_val} (dříve " +"{old_val}) v {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "Hodnota pole {key} změněna na {new_val} v {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "Odebráno pole {key} z {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "Odebrána následující pole z {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "Licence {pkg_link} byla změněna na {new_link} (dříve {old_link})" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" +"Licence licence {pkg_link} byla změněna na {new_link} (dříve {old_title})" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "Licence {pkg_link} byla změněna na {new_title} (dříve {old_link})" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "Licence {pkg_link} byla změněna na {new_title} (dříve {old_title})" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"Nastavit správce {pkg_link} na {new_maintainer} (dříve {old_maintainer})" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "Nastavit správce {pkg_link} na {new_maintainer}" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "Odebrán správce z {pkg_link}" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "Nastavit e-mail správce {pkg_link} na {new_email} (dříve {old_email})" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "Nastavit e-mail správce {pkg_link} na {new_email}" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "Odebrán e-mail správce z {pkg_link}" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "Přesunuto {pkg_link} z {old_link} do {new_link}" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "Nahrál nový soubor do zdroje {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "Přidán zdroj {resource_link} do {pkg_link}" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"Aktualizovaný popis {pkg_link} z
{old_notes}
na
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"Aktualizovaný popis souboru {pkg_link} na
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "Odebrán popis z {pkg_link}" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" +"Přesunuto {pkg_link} z organizace {old_org_link} do organizace " +"{new_org_link}" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "Odebráno {pkg_link} z organizace {old_org_link}" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "Přidáno {pkg_link} k organizaci {new_org_link}" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "Nastavit viditelnost {pkg_link} na {visibility}" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"Aktualizován popis zdroje {resource_link} v {pkg_link} na
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "Odebrán popis ze zdroje {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"Aktualizován popis zdroje {resource_link} v {pkg_link} z
{old_desc}
na
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Přidáno pole {key} s hodnotou {value} do zdroje " +"{resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "Přidáno pole {key} do zdroje {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "Přidána následující pole do zdroje {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "Odebráno pole {key} ze zdroje {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "Odebrána následující pole ze zdroje {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"Hodnota pole {key} zdroje {resource_link} změněna na {new_val} " +"(dříve {old_val}) v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Hodnota pole {key} změněna na {new_val} ve zdroji " +"{resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" +"Odebrána hodnota pole {key} ve zdroji {resource_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "Nastavit formát zdroje {resource_link} na {format_link} v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"Nastavit formát zdroje {resource_link} na {new_format_link} (dříve " +"{old_format_link}) v {pkg_link}" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"Zdroj {old_resource_link} byl přejmenován na {new_resource_link} v " +"{pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "Odebrána značka {tag_link} z {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "Odebrány následující značky z {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "{tag_link}" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "Přidána značka {tag_link} do {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "Přidány následující značky do {pkg_link}" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "Název změněn na {title_link} (dříve {old_title})" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" +"Zdrojová adresa URL {pkg_link} byla změněna z {old_link} na {new_link}" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "Odstraněno zdrojové URL z {pkg_link}" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "Zdrojová adresa URL {pkg_link} byla změněna na {new_link}" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "Verze {pkg_link} byla změněna na {new_version} (dříve {old_version})" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "Odebrána verze z {pkg_link}" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "Verze {pkg_link} byla změněna na {new_version}" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Vyhledat tagy" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "Vytvořit token API" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "API Tokeny" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "Nevytvořil jste žádné tokeny API." + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Kanál novinek" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moje datové sady" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje organizace" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje skupiny" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivita položek, které sleduji" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Zatím jste nevytvořili žádný dataset." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Chcete nějaký vytvořit?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Nejste členem ani členkou žádné skupiny." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Nejste členem ani členkou žádné organizace." + +#: 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 "Uživatelé" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informace o uživatelském účtu" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Pomocí Vašeho CKAN profilu můžete říci ostatním uživatelům něco o sobě a o " +"tom, co děláte." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Změnit údaje" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Celé jméno" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "např. Jan Novák" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "např. jan@příklad.cz" + +#: 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: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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Profilový obrázek" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "URL profilového obrázku" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Změnit heslo" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Heslo systémového správce" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Heslo" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Potvrďte heslo" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Opravdu chcete smazat tohoto uživatele?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Jste si jisti že chcete znovu vygenerovat klíč API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Znovu vygenerovat klíč API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Upravit profil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Všichni uživatelé" + +#: 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 "Přihlášení" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +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 minutku." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Vytvořit účet" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Zapomněli jste heslo?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Žádný problém, použijte formulář pro obnovu hesla a nastavte si nové." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zapomněli jste heslo?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Nyní jste odhlášeni" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Nyní jste odhlášeni" + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Už jste přihlášeni jako uživatel {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odhlásit" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapamatovat si mě" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Už jste přihlášeni" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Pokud se chcete přihlásit pod jiným účtem, musíte se nejprve odhlásit." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Odhlásit ihned" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrace" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrujte se a vytvořte si účet" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +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 datové sady, skupiny a spoustu dalších zajímavých věcí" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "uživatelské jméno" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Celé jméno" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Vytvořit účet" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Resetovat heslo" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Resetovat heslo" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Také můžete změnit uživatelské jméno. Později už to nepůjde." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Změnit heslo" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Jak to funguje?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Jednoduše zadejte nové heslo a Váš účet bude podle toho aktualizován" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Uživatel zatím nevytvořil žádnou datovou sadu." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Nezadali jste svůj životopis." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Tento uživatel nemá uveden životopis." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "To znamená, že to bude viditelné pouze Vám" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Členem od" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Klíč k API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Obnovit heslo" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "E-mail nebo uživatelské jméno" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Žádost o reset" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Do pole zadejte svou e-mailovou adresu nebo uživatelské jméno a my vám " +"zašleme e-mail s odkazem na zadání nového hesla." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Token" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Poslední přístup" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "Akce" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "Zrušit" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Událost související s:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Prohledat seznam..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Zatím nic nesledujete" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Žádní sledující" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Vyhledat uživatele" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "Masivní čištění dokončeno" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "úspěch" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "Parametr u\"{parameter_name}\" není celé číslo" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Aktivita nebyla nalezena" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "Neoprávněn k zobrazení údajů o aktivitě" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "Podrobnosti o této aktivitě datové sady nejsou k dispozici" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "Neoprávněn ke čtení balíčku" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "Neoprávněn ke čtení spolupracovníky {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "Neoprávněn k mazání spolupracovníky {}" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "Uživatel odstraněn ze spolupracovníků" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "Neoprávněn k úpravě spolupracovníků {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Uživatel přidán ke spolupracovníkům" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "Neoprávněn k zobrazení tokenů API." + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "Neoprávněn k vytváření tokenů API." + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"Token API vytvořen: {token} " +"{copy}
Nezapomeňte jej zkopírovat hned, už jej neuvidíte!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "Neoprávněn ke zrušení tokenů API." + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Vaše heslo musí mít alespoň 8 znaků." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Přesměrování na externí stránky není povoleno" diff --git a/ckan/i18n/da_DK/LC_MESSAGES/ckan.po b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..f06b04552b7 --- /dev/null +++ b/ckan/i18n/da_DK/LC_MESSAGES/ckan.po @@ -0,0 +1,5098 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Danish (Denmark) (https://www.transifex.com/okfn/teams/11162/da_DK/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: da_DK\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ressourcen blev ikke fundet" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Ikke autoriseret til at se denne side" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Fuldført" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Afventer" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Indsender" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fejl" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ikke Uploadet Endnu" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload til DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Fejl i upload:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fejl:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Sidst opdateret" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldrig" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload Log" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaljer" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Slut på log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore-ressourcen ikke fundet" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ressource \"{0}\" blev ikke fundet." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Bruger {0} er ikke autoriseret til at opdatere ressourcen {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Tilgå ressourcens data via et web-API med kraftfuld query-support" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Endpoints" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data-API'et kan tilgås via følgende actions fra CKAN action API'et." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Opret" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Opdatér / indsæt" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Forespørg" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Forespørg (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Forespørger" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Forespørgselseksempel (første fem resultater)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Forespørgselseksempel (resultater indeholdende 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Forespørgselseksempel (via SQL-sætning)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Eksempel: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "En simpel ajax (JSONP)-forespørgsel til data API'et vha. jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Eksempel: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Gem" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Beskrivelse" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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 "Relevans" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Navn stigende" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Navn faldende" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Sidst modificeret" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "Populære" + +#: 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 "Brugerdefineret tekst" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "Brugerdefineret tekst" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landekode" + +#: 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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Denne gruppe har ingen beskrivelse" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} datasæt" +msgstr[1] "{num} datasæt" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 datasæt" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Følgere" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressourcer" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Billede" + +#: 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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Højest bedømte datasæt" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Gennemsnitsbedømmelse" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Antal bedømmelser" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ingen bedømmelser" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Største grupper" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Gruppe" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Antal datasæt" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Ingen grupper" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Top tags" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tag-navn" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Antal datasæt" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Bruger" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistik-menu" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Oftest redigerede datasæt" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Din browser understøtter ikke iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Godkendelsesfunktionen blev ikke fundet: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaktør" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Medlem" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Du skal være systemadministrator for at administrere" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Sites titel" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Style" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Sitets tag-line" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Sitets tag-logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Om" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Om side-tekst" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Introtekst" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Tekst på hjem-side" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Brugerdefineret CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Brugerdefinérbart css indsat i sideheader" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Hjemmeside" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Fejl ved sletning af revision %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Tømning fuldført" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Handling ikke implementeret." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Adgang nægtet" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Ikke fundet" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Fejl i forespørgslen" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Navn på handling er ukendt: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON fejl: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Fejl på de forespurgte data: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Gruppe ikke fundet" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Ukorrekt gruppetype" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisationer" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupper" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tags" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formater" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenser" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Bruger %r ikke autoriseret til at redigere %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Ikke autoriseret til at udføre masseopdatering" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Ikke autoriseret til at oprette en gruppe" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritetsfejl" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ikke autoriseret til at slette gruppe %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisationen er blevet slettet." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Gruppen er blevet slettet." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ikke autoriseret til at slette gruppe %s medlemmer" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Gruppemedlem er blevet slettet." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Vælg to revisioner før sammenligning." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Revisionshistorik for CKAN-gruppen" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nylige ændringer til CKAN gruppen:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log-besked:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Du følger nu {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Du følger ikke længere {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ikke autoriseret til at se følgere %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Paramenter \"{parameter_name}\" er ikke et heltal" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Datasæt blev ikke fundet" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ugyldigt revisionsformat: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Ikke autoriseret til at se datakilden %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Revisionshistorik for CKAN-datasæt" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nylige ændringer til CKAN-datasæt:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Ikke autoriseret til at oprette en datakilde" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Ikke autoriseret til at redigere denne ressource" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Ikke autoriseret til at opdatere dette datasæt" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Datasæt {id} blev ikke fundet." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Du skal tilføje mindst en dataressource" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Ikke autoriseret til at oprette en ressource" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Ikke muligt at føje datakilden til søgeindeks." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Ikke muligt at opdatere søgeindeks." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Datasæt er blevet slettet." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Ikke autoriseret til at slette datakilde %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resource er blevet slettet." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Ikke autoriseret til at slette ressource %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Ressourcens data ikke fundet" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Download ikke tilgængelig" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ikke autoriseret til at læse datasæt %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Ikke autoriseret til at se ressourcen %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Ingen forhåndsvisning er blevet defineret." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Bruger blev ikke fundet" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Ikke autoriseret til at registrere som bruger" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Ikke autoriseret til at oprette en bruger" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ikke autoriseret til at slette bruger med id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Ingen bruger specificeret" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Ikke autoriseret til at redigere bruger %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil opdateret" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Ikke autoriseret til at oprette bruger %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Fejl i Captcha. Prøv venligst igen." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Bruger \"%s\" er nu registreret, men du er fortsat logget ind som \"%s\" fra" +" tidligere" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Ikke autoriseret til at redigere en bruger." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Login mislykkedes. Forkert brugernavn eller adgangskode." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Ikke autoriseret til at anmode om nulstilling af adgangskode." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Ikke autoriseret til at nulstille adgangskode." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Ugyldig nulstillingsnøgle. Prøv venligst igen." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Din adgangskode er blevet nulstillet." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Din adgangskode skal bestå af 4 tegn eller mere." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "De adgangskoder du har angivet stemmer ikke overens." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Du skal angive en adgangskode" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Følgende element blev ikke fundet" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} ikke fundet" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Alting" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Vis" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Netop nu" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} Kb" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} Mb" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} Gb" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} Tb" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Ukendt" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Unavngivet ressource" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Oprettede nyt datasæt." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Redigerede ressourcer." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Redigerede indstillinger." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visning" +msgstr[1] "{number} visninger" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nylig visning" +msgstr[1] "{number} nylige visninger" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Ingen modtager-e-mail tilgængelig!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "gruppe" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Manglende værdi" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Feltet %(name)s var ikke ventet." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Indsæt venligst et heltal" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Ugyldig(e) ressource(r) for datakilde" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Ekstra" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag type \"%s\" eksisterer ikke" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Datasæt" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Kunne ikke fortolkes som valid JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisationen eksisterer ikke" + +#: ckan/logic/validators.py:76 +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:116 +msgid "Invalid integer" +msgstr "Invalidt heltal" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Skal være et naturligt tal" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Skal være et positivt heltal" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Fejl i datoformat" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Links i log_message ikke tilladt." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ressource" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Det gruppenavn eller id eksisterer ikke." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Aktivitetstype" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Navne skal være strenge" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Det navn kan ikke anvendes" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Navnet må indeholde maksimalt %i tegn" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Denne URL er allerede i brug." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Navnet \"%s\" indeholder mindre end %s tegn" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Navnet \"%s\" indeholder flere end %s tegn" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versionen må indeholde maksimalt %i tegn" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplikeret nøgle \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Gruppenavnet findes allerede i databasen" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tagget \"%s\" kan ikke skrives med store bogstaver" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Brugernavne skal være strenge" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Det brugernavn er ikke tilgængeligt." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Indtast venligst begge adgangskoder" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Adgangskoder skal være strenge" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "De adgangskoder du har indtastet stemmer ikke overens" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Navnet skal være mindst %s tegn langt" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Dette navn er allerede i brug." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Tag vokabularium blev ikke fundet." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s tilhører ikke vokabulariet %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Intet tag-navn" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s tilhører allerede vokabularium %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Angiv venligst en valid URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rolle eksisterer ikke." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datasæt uden organisation kan ikke være privat." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Ikke en liste" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Ikke en streng" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Denne parent ville skabe en løkke i hierarkiet" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Manglende værdi" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Forsøger at oprette en organisation som en gruppe" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Du skal angive en vurdering (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Bedømmelsen skal være en heltalsværdi." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +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:1369 +msgid "You cannot follow yourself" +msgstr "Du kan ikke følge dig selv" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Du følger allerede {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "Bruger {username} eksisterer ikke." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "Id findes ikke i data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan ikke finde vokabularium \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan ikke finde tagget \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +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:697 +msgid "You are not following {0}." +msgstr "Du følger ikke {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Ressourcen blev ikke fundet." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Specificér ikke, hvis der benyttes \"query\" parameter" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "skal være : -par" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Felt \"{field}\" ikke genkendt i resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Datakilden blev ikke fundet." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus blev ikke fundet." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisationen blev ikke fundet." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Bruger %s ikke autoriseret til at oprette datakilder" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Bruger %s ikke autoriseret til at redigere disse grupper" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "Bruger %s ikke autoriseret til at føje datasæt til denne organisation" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Ingen datakilde fundet til denne ressource, kan ikke tjekke autorisation." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, 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:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Bruger %s ikke autoriseret til at oprette grupper" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Bruger %s ikke autoriseret til at oprette organisationer" + +#: ckan/logic/auth/create.py:145 +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:148 +msgid "Not authorized to create users" +msgstr "Ikke autoriseret til at oprette brugere" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Gruppen blev ikke fundet." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Bruger %s ikke autoriseret til at redigere gruppen %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Bruger %s ikke autoriseret til at slette grupper" + +#: ckan/logic/auth/delete.py:86 +#, 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:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Bruger %s ikke autoriseret til at slette organisationer" + +#: ckan/logic/auth/delete.py:107 +#, 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:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Bruger %s ikke autoriseret til at slette task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Ikke autoriseret" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Bruger %s ikke autoriseret til at læse disse datakilder" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Bruger %s ikke autoriseret til at læse datakilden %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Bruger %s ikke autoriseret til at læse ressourcen %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Du skal være logget ind for at tilgå dit dashboard." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Bruger %s ikke autoriseret til at redigere datakilden %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Bruger %s ikke autoriseret til at redigere ressourcen %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Bruger %s ikke autoriseret til at ændre status for datakilden %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Bruger %s ikke autoriseret til at redigere organisationen %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Bruger %s ikke autoriseret til at ændre status for gruppen %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"Bruger %s ikke autoriseret til at redigere tilladelserne for gruppen %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Skal være logget ind for at rette en bruger" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Bruger %s ikke autoriseret til at redigere bruger %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Bruger %s ikke autoriseret til at ændre status for revisionen" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Bruger %s ikke autoriseret til at opdatere tabellen task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Bruger %s ikke autoriseret til at opdatere tabellen term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Andet (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Andet (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Andet (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Andet (ikke-kommerciel)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Andet (Ikke-åben)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "Afhængig af %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "er afhængig af %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "stammer fra %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "afleder %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "Linker til %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "Er linket fra %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "Er underelement af %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "er overelement for %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "Har sideordnet element %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Der er ingen API-data at indlæse for denne ressource" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Kunne ikke indlæse data-API-information" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Begynd indtastning..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Ingen resultater fundet" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Der er ændringer til denne formular som ikke er gemt" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Bekræft venligst handling" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Er du sikker på, at du vil udføre denne handling?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Bekræft" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Annullér" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Følg ikke" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Følg" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Link til en URL på internettet (du kan også linke til et API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Upload" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Fjern" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Upload en fil fra din computer" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Fil" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Gem rækkefølge" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Gemmer..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Upload en fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Der opstod en fejl" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Ude af stand til at uploade fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Ude af stand til at autentificere upload" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ressource uploadet" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Ude af stand til at hente data for uploadet fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Du uploader en fil. Er du sikker på, du vil navigere væk og standse upload?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Redigér" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Vis mere" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Skjul" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fejl %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Om {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sysadmin-indstillinger" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Vis profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d nyt emne)" +msgstr[1] "Dashboard (%(num)d nye emner)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Log ud" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Log ind" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrér" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datasæt" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Søg datasæt" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Søg" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Indlæs færre" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Indlæs flere" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ingen aktiviteter i denne aktivitetsstrøm" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmins" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfiguration" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Affald" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Er du sikker på, at du vil nulstille konfigurationen?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Nulstil" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Opdater konfigurering" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN konfigurationsindstillinger" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Site Title: Dette er titlen på denne CKAN-instans. Den " +"optræder flere steder i CKAN.

Style: Vælg mellem en" +" liste af simple variationer over hovedfarvetemaet for at starte et hurtigt " +"tilpasset tema.

Site Tag Logo: Dette er logoet der " +"optræder i headeren i alle CKAN-instansens templates.

" +"

Om: Denne tekst optræder på CKAN-instansens om-side.

Intro-tekst: " +"Denne tekst optræder på CKAN-instansens hjem-" +"side som en velkomst til besøgende.

Brugerdefineret " +"CSS: Dette er en CSS-blok, der optræder i <head>" +" tag på alle sider. Hvis du vil tilpasse temaerne i højere grad anbefaler vi" +" at læse dokumentationen.

" +"

Homepage: Dette er til at vælge et prædefineret layout " +"for modulerne, der vises på din hjemmeside.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bekræft nulstilling" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Bekræft sletning" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Denne ressource kan ikke forhåndsvises i øjeblikket." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klik her for mere information." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Download ressource" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Eksempel ikke tilgængeligt." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Flere detaljer..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Ingen handler defineret for datatypen: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard input" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium bredde input" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Fuld" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Fuld bredde input" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stor" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Stort input" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Tilføj i starten" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Tilføj input i starten" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Brugerdefineret felt (tomt)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Brugerdefineret felt" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstområde" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Vælg" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitetsstrøm" + +#: 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 "Administratorer" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Tilføj en gruppe" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Gruppeformular" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Er du sikker på, at du vil slette gruppen - {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 "Er du sikker på, at du vil slette medlemmet - {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:15 +#: 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 "Administrer" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Redigér gruppe" + +#: 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 "Medlemmer" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Tilføj gruppe" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Søg grupper..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Der er i øjeblikket ingen grupper for dette site" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Hvad med at oprette en?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Tilbage til alle medlemmer" + +#: 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 "Redigér medlem" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Tilføj medlem" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Eksisterende bruger" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Hvis du vil tilføje en eksisterende burger, søg efter brugernavnet herunder." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "eller" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Ny bruger" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Hvis du vil invitere en ny bruger, indtast dennes e-mail-adresse." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rolle" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Er du sikker på, at du vil slette dette medlem?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Slet" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Hvad er roller?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: Kan redigere gruppeinformation og håndtere " +"organisationsmedlemmer.

Medlem: Kan tilføje/fjerne " +"datasæt fra grupper

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Opret en gruppe" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Opdatér gruppe" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Opret gruppe" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Søg datasæt..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datasæt i gruppe: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Navn" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Min gruppe" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Lidt information om min gruppe..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Er du sikker på, at du vil slette denne gruppe?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Gem gruppe" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Se {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Fjern datasæt fra denne gruppe" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Hvad er grupper?" + +#: 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 "" +"Du kan bruge CKAN Grupper til at oprette og håndtere samlinger af datasæt. " +"Dette kan være datasæt for et givent projekt eller team, efter et bestemt " +"tema eller som en meget simpel måde at hjælpe folk med at finde og søge " +"efter dine egne publicerede datasæt." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Slettet" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "Læs mere" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Velkommen" + +#: 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 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Velkommen til 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 "" +"Dette er en lækker intro-tekst om CKAN eller sitet i almindelighed. Vi har " +"ikke noget tekst her endnu, men det kommer snart" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dette er en udvalgt sektion" + +#: 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 "{0} statistik" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datasæt" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasæt" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisationer" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupper" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Feltet er påkrævet" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Værdi" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Brugerdefineret" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Skemaet indeholder ugyldige informationer:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Påkrævet felt" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Billede-URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Nulstil Upload" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisationsformular" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Redigér datasæt" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "fundet for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Desværre blev ingen datasæt fundet for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Gør offentlig" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Gør privat" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Udkast" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Denne organisation har ingen datasæt associeret med sig" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Er du sikker på, at du vil slette organisationen {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 "Redigér organisation" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Tilføj organisation" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Søg organisationer..." + +#: ckan/templates/organization/index.html:29 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Brugernavn" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Opdater medlem" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Admin: Kan tilføje, redigere og slette datasæt såvel som" +" at administrere medlemmer i en organisation.

" +"

Editor: Kan tilføje og redigere datasæt men ikke " +"administrere medlemmer i en organisation

Medlem: Kan" +" se organisationens private datasæt men ikke tilføje nye

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Opret en organisation" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Opdatér organisation" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Opret organisation" + +#: ckan/templates/organization/snippets/feeds.html:2 +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 "Hvad er organisationer?" + +#: 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 Organisationer bruges til at oprette, håndtere og publicere samlinger " +"af datasæt. Brugere kan have forskellige roller inden for en Organisation, " +"afhængigt af deres autorisation til at oprette, redigere og publicere." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Min organisation" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Lidt information om min organisation..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Gem organisation" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Se {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Opret datasæt" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Hvad er datasæt?" + +#: 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 "" +"Et CKAN Datasæt er en samling af dataressourcer (som f.eks. filer), sammen " +"med en beskrivelse og andre informationer, som en statisk URL. Datasæt er " +"hvad brugere ser, når de søger efter data." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Ændringer" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Er du sikker på, at du vil slette datasættet - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Er du sikker på, at du vil slette ressourcen - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Se datasæt" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Redigér metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Preview/eksempel" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Opdatér" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Forbind denne gruppe med dette datasæt" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Tilføj til gruppe" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Der er ingen grupper forbundet med dette datasæt" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Opdatér datasæt" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Tilføj data til datasættet" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Tilføj ny ressource" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Tilføj ressource" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Ny ressource" + +#: 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:85 +msgid "Add" +msgstr "Tilføj" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle ressourcer" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Se ressource" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Redigér ressource" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Gå til ressource" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Kilde: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Yderligere information" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Felt" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "ukendt" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Oprettet" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licens" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Tilføj ny ressource" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "fuldt {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +"Du kan også tilgå dette register med %(api_link)s (se %(api_doc_link)s) " +"eller downloade et %(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 "" +"Du kan også tilgå dette register med %(api_link)s (se %(api_doc_link)s)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Yderligere info" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Kilde" + +#: 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 +msgid "Author" +msgstr "Forfatter" + +#: 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 "Vedligeholdes af" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Status" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "f.eks. en beskrivende titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "f.eks. mit-datasæt" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "f.eks. noget brugbart information om dette data" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "e.g. økonomi, miljø, trafik" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Ingen organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Synlighed" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Offentlig" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktiv" + +#: 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 "Er du sikker på, at du vil slette dette datasæt?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Næste: Tilføj data" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Peter Petersen" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Forfatters e-mail" + +#: 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 "peter@eksempel.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Vedligeholders e-mail" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Opdatér ressource" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "f.eks. guldpriser for januar 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Brugbare noter om data" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "f.eks. CSV, XML eller JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "f.eks. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Filstørrelse" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "f.eks. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "f.eks. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Er du sikker på, at du vil slette denne ressource?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Forrige" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Gem og tilføj en mere" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Afslut" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Hvad er en ressource?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"En ressource kan være en fil eller et link til en fil, der indeholder " +"brugbar data." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Udforsk" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Mere information" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Inkludér (embed)" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kode" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data og ressourcer" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Opret datasæt" + +#: 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 "Tilføj data" + +#: 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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Tilføj datasæt" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Vis mere {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Vis kun populære {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Hjem" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Sprog" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Licens ikke angivet" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Dette datasæt opfylder Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Der er ingen beskrivelse for denne organisation" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Dette datasæt har ingen beskrivelse" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrér resultater" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Prøv venligst en anden søgning.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} datasæt fundet for \"{query}\"" +msgstr[1] "{number} datasæt fundet for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Ingen datasæt fundet for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} datasæt fundet" +msgstr[1] "{number} datasæt fundet" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Ingen datasæt fundet" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} gruppe fundet for \"{query}\"" +msgstr[1] "{number} grupper fundet for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Ingen grupper fundet for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} gruppe fundet" +msgstr[1] "{number} grupper fundet" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ingen grupper fundet" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organisation fundet for \"{query}\"" +msgstr[1] "{number} organisationer fundet for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Ingen organisationer fundet for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organisation fundet" +msgstr[1] "{number} organisationer fundet" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Ingen organisationer fundet" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Tilmeld" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "E-mail" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} føjede tagget {tag} til datasættet {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} opdaterede gruppen {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} opdaterede organisationen {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} opdaterede datasættet {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} opdaterede ressourcen {resource} i datasættet {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} opdaterede sin profil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} slettede gruppen {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} slettede organisationen {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} slettede datasættet {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} slettede ressourcen {resource} fra datasættet {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} følger nu {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} følger nu {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} følger nu {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} oprettede gruppen {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} oprettede organisationen {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} oprettede datasættet {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} føjede ressourcen {resource} til datasættet {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} registreret" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fjernede tagget {tag} fra datasættet {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Søg tags" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nyhedsstrøm" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mine datasæt" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mine organisationer" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mine grupper" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktiviteter fra emner, jeg følger" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Du har ikke oprettet nogle datasæt." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Opret et nu?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Du er ikke medlem af nogle grupper." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Du er ikke medlem af nogle organisationer." + +#: 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 "Brugere" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontoinformation" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "Din profil viser andre CKAN-brugere hvem du er og hvad du laver." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Ændringsdetaljer" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Fulde navn" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "f.eks. Peter Petersen" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Lidt information om dig selv" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Skift adgangskode" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Adgangskode" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Bekræft adgangskode" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Er du sikker på, at du vil slette denne bruger?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Opdatér profil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle brugere" + +#: 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 "Login" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Brug for en konto?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Så bare skriv dig op, det tager kun et minut." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Opret en konto" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Har du glemt din adgangskode?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Ikke noget problem, brug vores adgangskode-genoprettelsesformular til at " +"nulstille den." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Har du glemt din adgangskode?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logget ud" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Du er nu logget ud." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Du er allerede logget ind som {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Log ud" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Husk mig" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Du er allerede logget ind" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Du skal logge ud før du kan logge ind med en anden konto." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Log ud nu" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrering" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Opret en konto" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Hvorfor oprette sig?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Opret datasæt, grupper og andre spændende ting" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fulde navn" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Opret konto" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Nulstil din adgangskode" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Nulstil adgangskode" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Opdatér adgangskode" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Hvordan fungerer dette?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Skriv en ny adgangskode og vi opdaterer din konto" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Bruger har ikke oprettet nogen datasæt." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Du har ikke angivet en biografi." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Denne bruger har ingen biografi." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Det betyder, at kun du kan se dette" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Medlem siden" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API-nøgle" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Nulstil din adgangskode" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivitet fra:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Søg liste..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Du følger ingenting" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Ingen følgere" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Søg efter brugere" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.mo b/ckan/i18n/de/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..34b379b72526d65168dc5d7ffb9c7920cf88c6ae GIT binary patch literal 93218 zcmdSC37lO;ng4wwn+cmBg6t;^A>EMfEbL9vp|gjilaPg7C{?C;8(+)ot_#1c-?&b^K z-#plXdpVo|UkZsj^BQ;wd_9~Ce+jq3<2o~$dDAkPo$waiw=KzJcEOEHGnsF~2jQQH z;62MSnQ!2}aaAUB`~I0sadjs1cEUBS%VZAW`n~HjnJoMY{C7BiLndiJ?eG}*K)C-1JP`M9pyGQRsvP@o&SVaQXTT$2J5>B# zQ2D(QJ_~MzN5EltFnlpoK3@%$ueS#GyP^DlDDZA5|6hgAhTnrK|L>sk_XL#xBer<{ zn*!%T`CAC7y3BH@{JtDs1wRZggojZ1b6^*2f;*w)e-mtmKYWDm?e_ODf^#mT&R`du3$KOq;D_Nk@JDa~ zJmzv_4ljalfZO5e@Zc-_{y9+XD-Tt^H^Vmgxp4iDQ2u9L>G7|Ha_@#+@cmHb{xekh zPDE%b$0_hY*b3EN&Vr}HPWT+y2UY$TLbaoRhN`#s!js^?L)GWE;Zg8mC^m%?W~ z&)dajsQTLqRlfsJ@*9OG!k5A0;d|j%;b)=Jx#9UPr(2-%`F)5g$UF?`8ktk++$X>h zsC>Qwsy^QhSHj!jD)`sHWiQBNR^xsZR6F{=Q1U;HPAzsp$?H0(`gssu3lHedWP0HB zkV~0gz~yia7gf&JLG`lFwSG^fp1&-<44HSAgoLyP)d(b?{(# zFO>fWVGH~gRQj2M=Vv-R0O#>g<(~-^?^#gtTMm`)i{K1+6;!2N%J&L6z@2Q0e~)DxN<;#rrp?c5+0?^D`6b{@lQJD0wc23f~2l zzs*qT?ts!C*Fc5)C_Dt-2_?@jL*@5Dco_UPRD6#@#rIg?pP}mWZ&3c9J?!oi;d61H z3FUt+wDtfM|CLbwUjUy4uMX~AQ2DtY-U43>r8myq7Wx5v2JT*{eDy<>XFF857edAV zvT*&CQ2uTR_umPvKSRa)IXDac6dn$zm%ToYh01puRJ%VrxG#kl;C?<-IyXYq$J>MZ zcBppy$>9DhRC-^4^7jMyDfkDt9DcCE90C3jsvPrZ9Fog9ffvG~a9;$khFhWXc^_1H zzXMfokA&-gfT!YqM$PrYY^d@rg_1)aD%=jJe7*##-@Xzm{nv);Zwl_WL-nKgLWTb* zJQUsomF|P#{&$1>Q7C_pL)G_w+erf+44(sE1C{Q3q2%`=D0$uvRqn?EpMc8eej{EF zhe4(L9H@9tfy&nzQ2x$^%Ks8L8?J(?zhNkOjX=f!GARGAgU^C*gDS@dq2l`#RJbod z$>jm4{C*7{4Zjoa{~jKR`!B(L@D7jXNT~ds3{~FQQ1LB-%Kx&!jZpb|0aQMQ;Zg8K za07f3Y=e)&li|^$-d@jvlJ6GyT-Xbbg}b5p_nYB5_-Ux}%-HGqKN_n1Cqt#%0+sIh zQ1x&TY=-LtcR;1{PALB$fpg$J;r?%+%6IfGk7o{S#k~ls9tNT0whc6?<%+$W})JJCsceNg39M7q2?7|f@i>=L6z&s z-JZ`2p!}_cs?V#S`b!0#1K$EwuCKro;3M!{_>613-LymXr{z%c9fZo~2)qEk0!pr* zhiYfvg39NQVFZ5*75;E0X)6EO@Fchl>Us}68NLFlT(?5y|8}VM_PxNzpwfNDbso=A zQ0bfkPlofL;@be*;C8qOz89)}{uHWyegzfoaj5vFy~yV!&xXh2UI&%GtD)reig5iM zQ0@6nsQSAv-2VYo`TqnJ?}0CNc|IE|{uZcsFMx{gQmFhDq3ZW0I2YalmA{`s$>}ku zeEbhodp{ASqH>%ISHZ7z)t=rBC5PLg%Kyc1{o7Fe|L5=k_!v~Z{t2pFe}}8#Vb}Zp z%b?v|WpZJQMyFu7*wjyKueg`FoY5(l)A1fN z74AFmK=>QDKYSdjT|WV5z$0Jj*H47<-vo92Y^d}u4DO9k@jeeKzJ927QG^G>Yv3X9 zpMv|%(AptXythM@?+Z|J`M*%*_!(4u{}Xt?tNi{Ua6Z?Mhl-~Qo&}!=H^UoXGkg>- zfzNui&tEpd0o-qe3jd7PFqXix;5>LOTn9e_=fJ5-c>6g8N{=-|>z7{GU7ej^bfzpEoD7m~Go(ew%rBA*A z)jt0OmHuIGL>EqDEQG4J%A5TDy-?x43(ta?H+wyu4VAwVJRRNuPlIigQj>*0~O{~4-2ZiZ^t?+f=o0hP~BL+Oi0!~I{w2={+O>G|Vt_WLJ8 z$@f%vB3uJiFL`(pd^OZK_(3Rtd!Xv)m+&Nb=-WNsIZ*ZA1y!CBRDAD(s<(Tf{Qo?- z4|<2obuQHX^-$qQpyGckR6X4ZPk_IHYHu^%>G95k^0yA^{x+!luZAbXkB93I1^4e^ z#PuWI<@$dCRJxZy`M(A>!JDD-`B@mjABF4F-tGB26-w?apz38kJP2-q&w|f`2f`wh z9;m@*!|S2y>80!EkoV&SQ1#UX)t;_`ZSaLq@!l4$e+w#~e}>P5tsnMw zbPiNIUKre$!((u7g$KbAI2T?E)$TqFr^8P`)!*Gv_4+w@2>doY3_cRvj|Wcsh_{Qw zp!E6)Q1P_EgW-8ldT$wA37-d*-h1H;cpFswcR=N9PvC#R!*PEDJ`4U7D*uneBjF(* z_4_A7>4mva*Snzd`2whTOHk>(5X#?+q2&1vcnZ7+N}dlxwd=z_=JIcY$KqZMm2MBb z1nz7C*WH@;qBn{cX<4tg=*j5gH7;=fAjpD z1=S8NgKAGZ;avDGsC<4MHp9QcS@5(^dV5|A)s9A?`qdj@8~hqv47IuTTyP;&xi5#? z;cj>ud>pl(-vpKK z+o0O_?ZN%;Q1bsQRJi+~^80Pr0Uw2u*J<~7`?(TIPA`ILXYYn;SKolT{sh$Z<3H>3 z>NW5@+^>cz#}}d6(|^L5@NY1JC*SMwTnKf&4=SFQ!wcaj;fe4GsCID79?$PwsCK>x zo&*P=^wGNg+sWngcrgu!%N`|lu({@x*=URbN_!J zL-?}$Y0q3g{DDm7*A(RF2k8@B-|y@6xdRxl;rF?}?%Uq}=6na+ANS9Pc+GqOs(wbl z>*MKrpz86Pa2xz1yd37f=X&UFsC@qwN^YyZ@A+RF_lg5Nc;FAcKQuv#mpKC}{Cs!@Tn1HN!|+&m9aMg9 zgzAsCLd{n{5%?d0KZc6uzXE6c$ou7qQ2AW|)h@fB>bVb|2(N*vzqi3z@Iz4kAA;)F zk3r>o{~vq3NAM!tXTdq}TG$W&6{`G4{lxc6`=I*Q2cX*Tci?n|xL*R>;RTO+yV)N2F{tam4Q%qCVUx`{(mi$9N!6N!Vklf;Md?m)0ihf#q*b6d--oPFD*ilN4|l>1@V>y~AM@IZKf;5Xo*xW5ArhCheu zCyzt*gF_y7xzB_xxI5q(Z~&eH-vHGgJ_+Z;N1)1e%%42I%~0vS0IHu}4b@(E!z17u z;9>BVaQzcd{_YR%A42t$KL_^_fA(gPjH z^7t%V0KW?lfrtIg$IIiPuAc%`?n|KJ?+y1~2o?UNQ2DzVN}eBplFKKc@y~&h&oZd| z6yPj40#%NipxW(i@Kx|GsQ$DjGtK0=5f0!UfS1CrLFK1q+BBO-EQCsb8C1F#L6viB za1TSt@%q3Upz7i6Q0crMo(De+)vtdJ&w;;z@^|VprkOljq0%`YD!#=~`B)1T&sKO4 z>8Qe$gH_iI>EOf`ihdbt)s>A`hS@_Zh=0B(b-mk+|(@Bt`&^(QEK z95CJM`)H_gGzE7nRJqR&?oO!s>4FN^4b_e-;rjJZ@!lBRAAl#~z8k9i--mC34?~q> z_Y5!J8=%U26I=)11y!HFhsw|2q2w^*V6WF_L-qF)p{}<;m3sk{|4yj-UkfGAOQ8JS z43(ev1^4Hn%JCpnJ^v8Sf`5fAaONQ%-x{d;z67d%uL`U}mFtzk{d%Z$ZiCAI$D#6b zFI2mI0LuTbq4N93z-JulaytSlKQrM8Z~;`iSPxZ?w?XOON8zb(#$jInbD{FJ1gd>q z0d@aH@IrVCR6RWk)o-4F%HM&9d-$WE>UB0$JuHN6urqKNDqnAhs^5=5rE?FIoF0Xz z!y}&M{d^%j7x(j_#(_6MmG{QLTcO(jC!xt7M!0_n)h;qect1P_Zo#<{YFxSrE`Xne z8kc?rH^BXm^!T?xm8%yjo-#ZWz5*(rcfmREQ7C^$J=@FQ1l2CihV5_@?1ry~s)yf0 z$^EdSrrEq|K9oFnLXGRMgo^JYQ04jzTmc_~%E$4~@%Fj^s=szX-- z2_EiLsPdi}xDqO#S3zsz`g{_qT^x3z%jZlO;qHS9|1xO( z460l=!rAZ(Q1$*>sQevu(loOJE`plR3_{iS^-%S71627x2$jE2L-qI1L6!F*sQ&r` zsCXX>d=7_2Bit9jCGaY!`)`NppPz?n=SN4b7doNxGYVCI?}D4*SKxej>P&Cvm%vus z{{$7!C!zZB^rmUHZ+j-(h6Kkj@_0jVe;6wMFG17PARC{?G zs+{|s=I!i+z*C|6>m0Zcc0#3d4Ll#d8g7AKf~vQZW>2&8-D}_`+^>Nn@TXAv@5<(B zW=DS)RD6GhTj6;v9^YG_^7VBndH)njpZpJ$+-9Ec^*$G>{MSMChgU(>@7tlua~o87 zJ_XeuzX2oo9XJpE6@CWJIm7S&3aTCb0jiy!Fvs&TEASkscveD{e_e1tA8LHeL4~_I zumV-@FN7KoUIvxV+o0<4E~t8V2&!NI5~`j50ZN~r+Uo82GN|jfLG|PBL-m{KZJyp) z@HE_upwj7u%FoN83|Jp|QWe*~pxGjlz?GojjL4ys@NGgQC( zI6Q9}=KD%-CyA0UI5iTUJaGbr{P)fxA6J!lrufO7sGRK zzaP$pKZNpk_*owBGPnl!OW+0YD^T|jKHJBI3j<3~`Mnt`z58JV{|==GqjNmJtDySj zD3tu(1SQW;!I#4yL;1h@T)%z;RJ;Fo*aiOxm%~nkqV!${SHe#~UH=-8hoJQQ$D!K&{qRuueW>>HD=0bq8SV#9Yxnv)9Y(l2pssI)s`nl!c?>|c=bND9 z^hMYP_q)L5ya1{kmqFF<4N&ds(}6#O@_)oam-~fK@m&j5Kes~p|53Pp@FK6@v*Ed1 z?}iG0Bb5BV3{`JWLZ!E=!~JiAYS%YIwe$O+!aWI94`(d)>l>lmFNMm-ZBX%i6Dt1y zf$BH&FZ6oILB;cWD0$oq)t>(gD!mgsz5Z9j>9}_WzBKUF@F=do1*$$i2sMs;8mhj& z2{oViO>j?N;`K5Us(+si)&JH8cRy5o*Fc4TJ-iRz244ZUFP)b8Fk}I5cEFE7E8m2=e^i(Er;YGp+^>g<_YtUgqjjFYE1=vr zz>V;JsPdh>ewx`+uZHTMpMq*nKY-F>2W@bX+M~^z3#heg7ud0&j-W2Va7!?+3&EZ$s7VkKhsTFHm}W#zuFa1P{YK zFSr*&jVBjFjeGs!{&i68^fmBGcpFqY2W|5F9s$+9Pl9SUbKnekHdJ~SLZ!bMD&9V* zbgqTcS8s$T!CRp6`*|pR`F*JH2W<9n^H`|+5mY}q4@y28;puP(RDXFlRQ#WTN5Y4~ z^+%!F-7~gK%j|^9;T7;6cp*Igl4+SicoqBs{1W^)eBY(?JI1T4F7x)e?Q)+te+Vw+ z{x_iVam*E7|BImV(+AbwUkBBW?}MH2h%3DvZh~s>H$c_@S6~DWy2{&eGgSC(P;&nO zRJjj)o~IYV9k^FO$?Io0GAX|BN2*FVmsY zJtA;6RDW6oC5Pt)_lu$0`@7&#@H0^9eFG}~N1^0(K(F_olcD6(1|^pZq5A6vsQ$bK zs-Ja3^^R(YAC&REo_JPLCNWWelKqmRJl5!`srm*dTJZgc=s--_V^%N0}mQ- zxov`~{~b{Iel3(dP0Zx$@S&e6G-2X^OJ=h_7wW7HT=J zRR&76LT@yX-JXl81G%V@9m++8T(Q48FfM$)5|wk?YWZ@mHyRnp6~{$}2a+u0dXu1W zGLr_4^HvW!s}e1oRq4pUfovt}&XG`Wu8^zddfRldR>@VO(Ne7(<%Y8PLX_?8E$1qg zDBq{6Q87pEswHw-$yMFoaJEtzDU}I6FItwZX1P(x%x{~QSvVZ^6u7ylDK|7+9c}8^ zJU~8r-HWAOESYmov@jbDlyiNHnr1cE%7vCnQ^&}_XjCj!m3~wy4doUuoSW@fICr=s z9qo>4Ios5+p^zids9GMS4oZl*9944Ja?e0p>_6YTsL3z2=E~(#xv67erCKf(`^i$S zoQp<~M79{&J!GFRP*WB|zSvJB!EcmKs6U%8#_=byb@mSBi|zFQONo>M%+2-YDGBYv zB^}G4GAAP8kz4^WSE8Y8G25SuO6C4+F~2ig&6kSNP;RI@SFTt>(Zb;*q2)waDvwXe z60y{Rm`S3$Ry9dJmH4|X-7)cR&*w(06{oW}yAlnT^V_r4T&h%YlB&ESf#S^UlfW$d z{pC_^ILa64aziGHr!A@pi=s*?=Y~pj%Q$aQU%50CS-O?bZW3{it=H97t$C{=I)h1; zreeYg@sVFOhDy}qZNO?KB-v9c6tdl=a+W%zPb=MQoR4uL8dueR!6P?#ZQ_SP#z1m~5(Fhx!}W$i_*|FN7jlZ0QoGqN+DK%V54bu2h@yG?>l#Y9W_u zWTqcb5h_qs_o7lC4z4U+)47h;P^o5%J-KK#ooRTO4vJbTM%%OHe5pn=EMzGl{%Jb> z=-sM?8ds`K)zOATmkyLlXpc|}g?y!|R4e(RVbWLJ*8D1-l^k_Vl2o8HWTj^yhd!qT z^rH;3(RK!g2o2sd81>XDRjQSe-~sJ8=$d4>Bi)N#2-*HtBARSNktLvk zT(%cYM_#k&4_#>#QWd3Jpj(bt9-Z9?XKZrS+>UBA!tfGA8=-y1i=M%wuBmClwd&TO zugwt+qrs%8$4Py45q%qNCXs(Y!UK#4ak~1QBr7$Vl|t>&RqADXz9L0AUIt6OewJ?9 zG&Vo9wrtd0C{c;X77yd3zp$s&o9j5OP`yBPa9V%$f`xPKQdFfb36!&jAX&6Ut9{%Y z$yWxHA#WG?o#al9Jg%c?sKhYTS1S}o$v(Z80u1FCFjC^~E%j7FsY$3zlUvlZwY!il z4mNd^$w<<(OFcEhR;}GmSQ)F3j&e6a(KW^CQIAk;SyV%=H`kXhGUykwjQ>@e11al6 zrQTY>x?9pT)nshupgOVA$9l9=GOdhOOeJcHQMSp1O^Z}$I+WT+AwnUSCunwU(S~xV zM^lfHe02boTF%W>-0Dm#$Z>xy-)owI9Mml9Nn(AuY_*0qoWqFjLbqiwvZ4P>YDU zwba*&lv}$?JDC0SRYxc>KMFM;a-{a@nB*)fx@gx>0!p)HVVdK-=jD6>b4MGPMLtra52iDb(x^%B^gZ zmA;SzlC^{?nzhgc%B604nBVN&u)5OH7St0hAwNV#QUZ%KWPnLd)LgVCi~fWv>L5 zN-v0$HtF*MY4Sqv2ra?x43|cfZxla*%T-5J@KRr2z9%2bpk7=n=DFi#wKkwZE0&|T z3g!SbVpLAHFehpdLcYifBe_z~8I@J*8IZbDU)-|B+Fqh72CCKJ_PKMFW*cGJYG{a* zLps6oudvH&Wn{w~WlIrpPZ*C?QIAECtIcidXmBgCIhKnhVi$38GDIS=7F6>R6vzThMNMs!<_NKdCDL7AV8n za@9JUHA>aG7IaawnrLoERyxY-ds*UD?S54*Tc{4u&217lM2k|}487c9&_uX9NzD72 zYN9(=U?rwb%OtoSr)GO7Q^id{X(ZHGjat_5k#ycm84sxN21U>~^=8W3Uql~iuu^i_ zT6LgQ&NJoHJbB0$SaYI&q9+$)(((RP&i4;gmBAn=>&;dsn>AW7CANG|t&n9(W>T)0 zGK-pXZT)T0dT9ll&aR7f+$Igs6~dq!eN5Tbv1>3lx_jZ=Z7g!bnsb9xjLE9Ls-$~` zb@c$6sMTg}YLu;gr4s6*Ra3^Mu$~^%W}7-R-l$1rI=#^@3(Ikv_Gn>}>#;Egv8(Ru z3yG*XRyi0Ua+MYuL5VqtR@*ixtMV#6<@~S(m!y3u-nfR-G`TOogA#4oxV9~^7epH0 zM$}wXyA>O&%?6Sz!;{w7M$QZQs#XW7s3V_$4xzraa%^kco40g}*^6(@X)3uw9|^nJ zgOPKvZapzO2?e5k$U@RwDm>nlIY4e%*!^@`|O3F_`eu zhgO>m#ROFZS6?hMmcrVy-m1TxW4>33r;h4*Nx%VYTv1j=4`QshiVP9zU$l(Lsr^`9 z>>VyKY?)(CZq&HBG|2GV!>j`{6Z%ZEWo98P#1=Klbky3-t-*Ht+sbn0f~JmLRfVB5 z_{@4&PidI0(OvH7(#T$6N~eP9D*YIVj?6LXkCckDt5P#I1;U4BeKNi%>oe<_A+uV& z_+MK;Fd5$wyLZjoo$2%iZf}m+MsMtjm(?!K?Rn;2%-6dkiNJb+O$k&pW+fz_!y4ih zTn!;+v>L+(4(lpK*#y-j1}R0cJ(@+{!W}N!I#l{t_Bp@q_j#e5oZB@FZn6no-EC@# z!Eh+(;MKE-=s$%*X@sh8^wwT?Di3DptY4~*4wFnT<;Rksk)%mkkO3 zh&)Ug`MBK0c@QjWcaT7N-KZ2y4SSK=_ zEP=OZ;Im(`+})*y$**FxT$bx-eNRuV%#1)+++JPM6%8#lt=^)}i#jihbw7(P+ka5c zE|i!|DKgYZ?s6jsJVU5S1jwNkdj%&Ofl`f*ycB_w-!h1n4_KE9xc!-AnCR5H+`b%zxTky^lepkWs?>=-VrMA3eu4Hih>fNMa%ol4ps=87sVQsMdP*(3{rsb{dp&BxsSZ$bZ z=x>C*mS0)}1w_lW(H9)?##3LdSf7K~q`)U8H8Q!gB+GUwikFy~P7E}%21&UwzgUvR zcFKL(rPFPv(r_oNytu~9B0G!$Ad8tVwUuW(Y<4@$WYfQG0%loK__$5@T-K%qOU8)I z=AKACh{V)eyqP(%)Y~#k2-MqCt_^i(%uJ`ruKx&Pmnydl%d}KVZp)>5-bO)Mb-$)MCb^eZ6*OJyoQb|IEj*8Ne6J~(pWJq5GWJ!Q?NWpiR@!_>v2}%6T6^<- zeJm!?)R~VfAdoSiQy0iEN`stG=*C zZu7!=vyV!)Dy-Nwb_|t8lp5m6X+}ys*nYJg%}yE?ORae|hfW&UQWZoWxTVgP zY{k~FP0nh;LRK_Wr{!kN5*3f3C5)=%sc9D{1eSV6dvmPX3ix$ryk8#N)GjlX0_K4t zHVJ|@&PZ$$;uFnglNeiFY!d7$6?%PM((=EL$M)KGKb43)MD)MU(PR-#l%-%!$8a!4 zOt##qOGM4GF17~oOd7@HLC|fnQG0@#33qolq_S^8#!D}bEL9V>3#!bSK*HpDoY==o zE9n{&EM;h6iMkxSlp!H4do=GQ3SV}l6VpvKy!d9zn8lB`aHg3${-R2nApQTZ(m>Nq zTJFXr+|w<^(~iZ&<K*`Xp6hxmzBJHiVNt$%TzN1%yjyoTQnxab%mI zO|vSfzsBp^+281vfpjz)b30j@q=H~iMIEA<5l+50l1*#eT?{tmY&6@~AhY-4Sz6ZH zrPO^Y+NjihHN&T3XA^QXa&g&wA+yw{4Vvhg4J)}2>^b3n81Un}Hp0h_^w=6-iwzqg zc-9Wdq-T7I$6^$lj$*%!qjl^t4Ekf7?3mb;kOC+6*xU}rD;sn**`;-O5jAdMe_9;e zG&8&2aDIoTrHgq^&Cqg&N|^XNtJQLz<32VMn&M`(iOt1aYp3=b#>cXB=@q$hY5etd zrDCg6%9U+Pt+}%}if**6`v7gw$3Iu-AYOw5>$^^##bMY0k{PqJ!dR>MO{3psn6DeJ z>$pPjllMK<9-V|^oGxRI;|ID-%}RUS;XFoWS++9JUCNew>%XGrSah_X1SKB zZdP;`!? zI-(QoKtm_+ays8*DBhU;j~n>R%wrR`H$Ug7El^ndC&r-VRdF2Jk&_yBekc~o?IM%a5Rn( zO`R>E26{(*gTn=&q#AS2mE@M~*qWLmtH#}NN_H!)7boz+V&6JoJ&dh?Ia-y%$ zaxDE5w$F&tmki5FCOF?eVl~qjc5j+&d!dPfm$APw*k_ipcVN?l_(#%kGRw-@J_<$; z&-bXzS{K;}yj)w8x#IRbM`5+az(;ZN{s;YDpDx(tV2YQIC>ZhW_xjY9vU}|H##M0_ zxy$N`yVMFW3$VbWp-{UrOO^&XHluCm%5ZilF#%+^muO5{_*f&*9$b2ZvCZR)h3hW$ zZTm&+@tunMs1-Rsib)*<}Av+ec+4J=zb6m!HT*24(*n&1yCcv{k!pE#${+&5GA&3Jf5M zmxZ+sS<5oRc`(IE{$!29$R;gj=erVnmS(5y8xBtpTb@QoOSDM+G=ZdR=djg8dVKCd zZ)YRU^TJH8C)dr&yWKAUmP?~%vCAy?a|!LyMI7((UR1xf0Z-UzmTSXRrIFC z4E;j&hxOSFOvYXiG}YBE~u=9tXNTuCbrU&m%vmiS-IAyzJ#mF4X4fdBQXT*<@> zx3)X&Z`9mLyNl+x1gB&gevThSJw(|0nC!L$J!X(q`%>fVW>622*IR){swW(hYi;hS zl38WXrIa**Lm%~fOQn2f%u|odtjg)^3&0d9bEF={p!nH}CjZ(Q()>>mYYv#psek2m zaN0rhW2xgxduA0=QTsD@OHl__G`6t#Bz5AlKbk-DqegO?MQUT-Re+*nVY1k++tCR# zYwJAqVxDl)GLAIJkLhY{c2kjYm4{PGv6IYk7~t^}dJpfgy}@1Rj#m?XQmFgkRbmSRK!W!ghk40kEE~u?|zM zo@y#rF-3=ML*`GKsB>$y~yo4D#)Sx~E{|b?wAXLOp^Yc$;D|1o^-?#Owfx?ar7! zu$9WN!;vKFt_=utN8WMZWi$aF~!QA=}Q|5NwzhILviGc#82 z^+(*O%dzTNM`!C%*;z;?lCoA;ICnVyuAMH6^B~oboPLUPNHLh#*&k`stQuh0YtSTz zR!#*rOS>p<*+PW@I6eu5L1e?~mdsl1X6u}l|B?~RexWgRnrm%INBIn);@Tr~>CBIA zO2w$E_${@!-Y|PdeLBwcjrJBdq%L+7t9Z)$^Ff!$e4Dt;XvX*W(Eed3LlQQ3su^*C z2(=_YoYIK4#Ovbhc5iw|!xla1g_7@NaHW25r15s+A&iM5oYeN;6;#wh>meQO3#~96 z)MLKfjG-mIPZQ)2v7bt_Qxu`lv4)F!F~6jIb0oV~<{$`DHlEK*-55p+s;pQkB?-hj zauz3-V-?A|hm)^KXev0z){a(3q=3q95DlNrdeK4f_|3Io@}6}g}qsu?u1*T7<8C<4av7=DjMZjBFBezcs3&59?h{o zppDwLlvh1tAlp$raJXU?r2uM1r`?Zb4g0cCT^OiFeEpNEv)iM z!_5bpx5h>Xbh|RkfW0*g4Caw_4$tzXWR%uHiYe`$#M`9u91c6pKEnEZ4$;PKX0nP4 z`{VU0u$;zMQ_BNJc^wWVm$U`!sY7!#W--Lo$14)+(PK1hl(PT{OBl7Es)h4|8&(;3 z%n#?8IF5P#J81|rm5@&R6-`fYpoD2@YK-TuP0EuDhQ&N`m!XZb-L*VR73{;~Btgv8 zu**dUy_|`%F35~giGO+*_Uplpq!|RAtHG8z)&r(ip3p%rPvFZ>H0-o)NNR~wQu4f8 z5hb0mx8s9GY-s%q%D_hO=TU-mr>{|)RT=evKl1= zYyDDC1!OPrl~iZ_N{KUs>)HEAw(!;$)m3;D3*+$6a0@#{JbE7%7%i;Y*6V>OB{$Jl zPprWv@RfwqVl?&_HLqXRy|!fn?;C91!|I!P5$Q3f!9*!rfyTC2Pd0B@wk!_4dRbTi-y{3BFl!Ljc4{7qfJ_Qh_$Wp zb}^~!h8V}J#?$wxCK^K-yFqc_XoPX#u(i8B)po+WD^_OCm9hzrKCa;Xo)oYpqhG^KII zn`_&mIHGvVywi5=;;X?9n+V1?q#N&c^Vm$X&Zxxq!YD6`hw8>k4lCaG?-W^cn86iuIFqw_)b#FvH z5JU((%e|(J2j?5*7Q^d|fc@ht{fUw)W*v@I# zt zU|6f48%y#qF8l<3Y`Wd}9ExSKEv3fyR;v0U~VE2~a!YKXSK z(dAl|#KUp8X5;8^e6|dK__6LD#NNa%U{kU;Xme-jm2fv6j*<(~_BH|WS$1-L{8TNu zRi6tbm*Vp<^@MCyGl9>>>l3c#l2{YJdN8mcOK);(%nU2OF44=rmg^Whn-eOuuAm-G8PhqJG6H zT0iNXGW%_^O^JZ|a>Or3n>B$5zqhcMNF1t@_(nV$k9F6h54M5S1+4&6&U7=c_;q%n zdx=p~p#bJe-v0b*R2|XAotypj;xmo;*g9+!qpNA|z-t`X*itE3E%MB}?cFVC!5y#s zf?h<%sjkN$Xr0CfmaVqavioTT8h<9ZAv?J-3abPvdF*W&_%fUHgfhpyCOBeZGtQCRY*yFlwG>-fI%-Quj)0&tSmzfN zPwe9L1;M4$@BR~m9Tx}l!)BG?#0lwTHtE@?0>D;{?V^uIMo?^YT;D?00P2c|vt8Py zj%S7wTk1B+mpw&}aiNUCgb_|lf9>do=eX(p9P80D!m`_zFq-I1cfIz^Ih)cUxb0fi zSCY;2ocO&>ydz^#lZDj+i&vo}rq*h*v>cHwQb(ig5RVOxeVm43M^rW2Q`=L5>ci41aRnExOHikpAk- zOiv~1$`xzoX1QlCP|Iwpbq{e^%%P=#e(LB=Hv!{csw`@RJHz#Km8xIQ9wo-5`fE_e`_ndt1xVe}3BG!0d!58sFC&eIK1fl? zRt8nEyfAO9J#?q%){+rYRt%2BZ0nVpN{7rQN;Ah&2&zIQi*j~_UR z&n<+|c52oWK%Q}!WdCez1G1QXo`5}%>Z|ZDiI3>B>D1b4w93}|PTXWc!DJ-&HXKx;AFHy;B(+{Y06e5I!D8II zH;+#5!fHH^>1XxTOYCS!Ft~CSz()M+i;rF%$?F51H%rq+t={ zlZh%dYOkPHORRe(=d#UN=cCki*ph@;GFE_?LsHYRzVao2IrFuOGUWkpA(>THZs)cej5iqFL%JGlS1U-K znH4eDI|G?v0%t|0Y$zPwZYaGP_B`2kEtT{NW)uBDo=5ySjyUQ8;zp4kxQDg4=0O{5 zr@k98#Js#{4W1$;AwrEw}_p7P3US>qjJr8fBOISv+7Ol4@m&FfdPS)t>d{AVA{5wAZs;uf*gUA^?!bcS?AY%ilbGFh*u6c&Dyr4V+i z;y?|X@5*Gb_^adSyogR55qE>P&|am%?44m8{g}i{EW}A~2a!x3K5oT(_fgmWdyQ1h zak2>GQpYbUoXnp!=?R46+tO&C`r|wm&8fzUAoz=u+uQv~vlHTp+t%bciX}NwjfP09 zOtuJS!?S6ZoLiaxHI1)dJFlJ%Q?s!}vzvPrfcc6uHLmz}x2j=fYA=&j12cj#CsZb? z1oIV-nG=Z4?oZa7(l;j(s@;!sKd}d&hNXUNP+N_pe{GC+t07JTSyJSK0$3;hrDWjc=__?O4ax601oF5jN7}+Z*E@ z6u-?PqCWf4;wWhZV=cLi^(iBy?K$cFw&7)?8eLm?5P|1G7VrTLdqw)T8um7SCxjB= z9R{h(8ff+{ybQnN!-w)b-TeQ*l={<`5Yw7m<$oih2_l$GMyXsrB{@u-ggscg#hwt4 zI5AJ6wnos}LW6zUC6kfaEVZA)l8=$iZ`)%O%t72mrk2qq{b6UnrpcB)p{PjR_z|}F zrfjE~EjE1e$IXK_>(hzcWW_EUt=VB%P5N0cEKlKKCv=?|(yX!jo{&Yz^B_JAZJ27< zFd)UO)TZ*093y1rh|Obf0eqHYrjaD}Fb!@7!vD8d`E-`7I#s*1G8}>O+yr(x+))@TAl;tR{jEM>wrjlu~ z?1T4^>wWMUYhG&FpV-qVI%SQIo0m;0mbA~QvJ(8I%eYTjNC()5_%SJY+aF-hW?zaJ z%VwWEv#c82s+Pungm=b?s?)mbJ~Tt~moDGbc`)z$)KuMPt~{g%Yl7`_U-PqX@~{+G zq;b}EudO@fcOROp`A+7ulQui;%#YDYrc3uxE7`1cA4D>4b~|Z?#?N!7_Ugjh2Z5CR zdr^)0_o4<40)B>BZ;m$ogE>1ZiYa#FCjb?5;O6E#XCIu#7H>76HJ$ABR6Az?WpY~Sk7?r^pF{M)+MsHYw_rA z4yI_KUd$QHZXS5pkI%Xz7P`BvLx%HYer0=-roTbUukK1KLO;@NHzb+3@z@rNj8HnX zZ7)OgQv=D_@33D^!))fA2!-6%ndRLrZ5B_3zwtSR%%!|LeFINCnhbE5-TzYmeiJv7 z?>NcWnz>Zwacv!}v`2>)*DtJ3Es`p!>v4Wlm+aM-DYu$L-PV}8%WEp@@45E?c1co` zleeyG%VWzh4!sN^bGf$qv|$l;e(R?i^%jfxF2-2xE71ccyH6QovlnegebzO5TPlw6 ze$ur@=dLHG#uDEAuE=Nx?A1?vn|!82j-*017GXpWP-zCuBe3-lHJjS2o%q6lS5hI4 zQN%LtJ<`SO_I$slWZ4nkAE1NDyxf7a9kQ@^G>a{d$@9Oyujn3pYL7|Yzhs~qoYkBi z&fD>$7LIMn9`09oNmIDmqMhjExJ8!xy|tm?aMR214@_)Kgkhd5MI^PuSHV!qSb5cz zu{FnA-u_ONdRW^tkZ>@xAS)Hr4xpfZdFb1AdU-sjYm&V0 zY{;nX8M*ed5nCe;eSjJsvIoCyT=l&uTMWkft1a5Bp5go6G#HKcWS=VMHJh;~rB2Ud zF9(CYeTat9KyNlw^WalDoGsu7a&PdXYDU}&Duss-IGErcKUCKwCB4FjcaxWR?40#J zdA089FQ=f+h;pPDzx5ZD5N9W;A~kX?T-}ISj{H$H!;8Z;BB~=;)L(k=pQ48u7SqlUSs~+xk#!PR zev;m0rHIcO)eR8JzJF=NWZ4_PKG4NCp?}xsb$RZKR~th1?$M@7ljpR?%Y3YA^col& zNm5Y;8I!NrE?keujyt31x#e$N#-dM?lQQIBBRi`^$B@_*ZZ|PkP~}+hldyUq1jUs0 z@0Vil@%y}`3iX1AF|SS6WlWs@ZY)}b9UHXYM<>% ziPf9%6yB7!f6+3l_ru2@+~Gus?cPR9{-GxvP0*?5lC>LbFWF%b(%}dzQrv!$+4NcI zHvrIXdd2jfYwP&``K&9~}z1BophDjK6`MBzbPDf{O?2Sf$y@3wN%+Et)@X!CCfW z!MynkTIZe9I`3?AcGivk44O6w+V!QIE}0Wu*2Qa9%Kk20MY1~eZZ1DEJ2Yx%SS-jz zym~?}>m`Nx(MmOA9`xfSG=8)G+8f2hOC+=yv0HmRj;jE6l+LFDbFb#iy@li%^MTuQw>QT|JCOdK!uAMIjs{Blu+5v$MWrFW0{h`MbK5yD%jXi*snyUTsRh!r30p zv%mA_L3_KOO!(4KwhZL#bRj;*&oY~-amI!W|69qZpISTg*&D4;SM-deqL9nBUpXV-HBRBc1dSrbZL>Kf-g?ISHX9!N{Aic0y$as5fS8n(6%&vZ(!wCtj%rC*cdu7JH?dgAg3hGB| zcNviXU_Hzlg&EvEnAtUyOCsvh#i89@8NDZzmrkLj(Shh!)_r=h&)Ca44?59xzif-e z`dfb{2|SrEuktbR+r@FIro2uWTL?IrpN1whCgJqGap|XT5;+ptmn8O*8=ih=hTSk!X4%?R>CgAJE~)ibS~r*4qvc(ltJhxGxop|S<(oFm*sy+ctDDk!dH*u(8|};> z7tCv&cW&!~`O*CO?Pr~N2JU%yY~?vt`#{ndfAh|d=AYd@@7y!y@!yQK7{6LMDQSmc zOMGE@J#QuEnWU9`zKFNS=vA2{umFGluElmHDv6_YGlq}$XeApcl%rX*kP4s19vK;F zv;CBOA15A}LC!4=_7&&KN>Z6SfByV)7R>F<&25>np`h2iwXVRf!^_o*oQ%g=S+w8+ zy-k##i<*nk%tgH3b%tL2SC`uSws|v_`r{$3GU&J4q<=0CZsm&?*z$yqyQo&}Ydx>- zPesH$)w-M)aB61O9-Y^nug+K*J~@WON85QLArB@{A?K1prk`itIJ3#~;d}06^}LJ2 zS>;haJk*5Eo!RA9I~t9}O07P=X8ML}d`%ud%%t*c9TsvNbmw(Fd)_0X-~ee9$3-%d zFY9B?#XWaa^ZmU3b0k+RM&qKDRk1&ZHYBXpqOoZ80ITrjJQ!KX+T$D;tT?t?!BU^oz4*cNYP7Rf-g9Tq zAeFF_oDS`|le4}U71!_rTYIL3*Q4xt5BD-uWF}fT9G`)*&q*|OETg;S%Id**%vN_I zF}-m#2|TB6l1!e(yA*koR)wsLu(5%(vBdAJQFELcU#tbaUPv4@q^8$UH+3xGYsda7 z0DbeFj?RO3krK1_mB^kMZQ@S&lDQ)2h(8~_B$prZo0wZMmMB=XA~&EHsAX$?e0Z9p zv_HsKAPjU`tB(goviH8PA-w>DDD)sTRzzm()5# zX6T#g((>|8b^XxZT95?~2r_iV&C2uPO&JwV9=y{w^w~|;3-{bfFFMPByj^*HB>Va8APwDEpszFVTFjM$2z$D77r?M)w61#cp-G#(m9 zMze8}u;++VS-5o1d(caSqi1D#JXKw#%%cq2`ce~If&A@}CKa2PkD4Wp3q_J4kzS_v zy*2&LqE=->j2mT2`d+TqwLDE;S0JJ6x|k{tigQhAmam0uU#XXl zlgH|My)ba`v8M4keksiHQUiEY_s|dHGPLcACs@m=u9@-Rd8CiUaGENrVqR|rn-1> zXIr$2eZE}5B|5~6;}X79t-*3;+z40Y3w=51Wz9gl_T0hn-7~-}NMk({EYHVKDkD0% zlq(O|&~BNbk6AC?N4Zll8$>K?-88s{SyP8aWf~00F~{P?XJp&@ho*=AloT&ZpaV0! zWqGkh8D&-}^;Ji(+b2yoiAD;D`e6cDl~T>?mFB zakrn&LIzd9CAon;cQEbe=N5lE`~d35vYwu3rPRGup=pz(8E6DaWkg-c)R)Az#403L z?)Pbx`ei?Qp}Lbdq-!R?pve4(*ADBXl3GPsyB&p{*#TzB#LKgX`JG(Q=%oNl(T_ER zINIt>j6>0-5o8j(tb4C9Pb!pFU8)=fU2O$4BYT$KnJPN(?Z8HbH@1kq9<>%{9%8XA z%hjr?ZSBn`y(wPpvVYP`gKuL=+tg8asP|A=M8_+>If#J*4_R!Cg7vZmCuCb~ke8My zE_c+U@Uq$DVR@}w8s76BkB|pxkWfRGh|fL}++z{tYGkUxU5~Vz=OcNcO%_EqW#)QI z70Xa}nYenhb*D$=($}a}<2{Ami#O4yd#h&8&?Pjn2Kpl7hI*BigY#$A2Ca~K#Y))D zNWMPDwybY}Bv+KQo_?9z;hkp63Bect@Sl7~7sv7uB zh3oSHgHuEre@l6Sh?83udAtbiXzW|;GYpsayob@UO3y?>moz9ObA~4Ml2g`B4KGRK`!X? ze7}o;32|y>kN!5Zh-vk)DHlm7Ox2T0Su8ye=CBeB%9$@4yPeiNLDGM&l(0VXdn8hSpwKGY+ zhN3GP%vwHNuV#UyHxtlvWg=^4mdV6jb2d7JT1aAS({Q7iNv=G|^iVH$rC#Xld?`iq zKF;J&fYh4UZ7G_9n;i4L`1L9ITF+7txz(CgS#i&u)t#D-kS7zqGK1yKV&)g`7-JOb zyr}cCs9EnA+0a6Nw~8RgrV{)UY?_c>Z7;?RVVCi}U`<)n2)cKU@LfadMQ0MM4dWnI zUZO}jtQULQc+s75eVw1t@o@gNHq7zu%BJ+hD83SAf*GkV1+!yg!Ai+`PdVa^y0(a6 z8+TMk5_wTrZ)-Pu#Dnejx0QkCf~JmL_8=^MQinS`B6gpK>7m`_*fe*w%|`}H%#Uc? z*dQ>a$d=X1$w3x4zW5)?VdYeX?&LYmSRu|-X8k~0#+H(3D_%*Ug`uV$P06*UR+|$A zPdf5@1%?KF&H?SkWSUdU)#Q@aB&qJH&v0^pyR|_|R^_#!K5|3{wMv(za;RagkZEXj znX%nSv%*xX#CIR|ORH5cb9YX1K+3Z!@lC&BrxbVvrx>=eAm+E5laCP6 z_baTuRk+k8TBk;w<$efC;-owSLE3JnbZmf{C+WJhe2>M;` zzLSRX&X&%j$K%)0lr~xq1#O%ZkuRrAnnPNi+2tB?cSS99=Ltj*cm9T4=xfmF!O&x) z<|w9Z5~Spl9Ivo5<9zos{jhXq#onSyJz2ds&(dwZ9KOC(s@L-8d&CRpZtKwS^N-5Z zUecKnh5zc$5@(h%8%z%RclC8W%Y%GObl{e-SL(HIApptFdP*IC9cNLje zR8DWFRbbT$o~lR5>cXex;+o%k04W5`wE2<*#^jy3n$~Fh5RCf8>fOic9L*)0R9MJ`GXQZ6 z%Nf_rfSxv7V?j4fW9^85#Xaxo89>7|bjM`NyEm(mRq6&MSMAHPI4#C@|27Sw^*$tz zQj6)i4=TIcOuCs)9mw~;ty}mWODFFlW7*f*#Q_If4%r3Gdh3RV3MWErqMPVYKO$n& zWBK1%;=Hsb?_I3(*yqpjWq4lf#u{2?Ut5~d;OT0zEiu~IK?!vtw~r+aS|ic;dtnQo z??2lig8{xgPxUU%4)gxXEN?v>dz2w{;DAqG*TXO%*s8DLn$H)hAk6?$Lx`1aOR;~? zojjt2UPx42t1SR6ScdHj3%9(!PL$+hGZV8;ep@YT-R5)L@%0-kp|;GDa;Z94);>_{ zI)9o`!>R_|R+^`ezMbK1d+{BOJ+^-J+ers+-Sbk}ED(5w=e(%oe9nEisx2l5rRuk- zhsZ|wbRO&NEGTJT#&|kr<M|B)}-Ii%WcML zk?zH8vH+p)Nz8azTxQ7io8D=u| zh8aHO$Qh|((Pr;nPNYM%uH{qpY+y?i<0ig!iD;6qS3SvI#S87(bt6Pshdb&YaBca= z#pfp_pH74x@*kMP$s$Z=5o?xqAX@ce?Fj{G7kLgRwPdPGGm)~%Z?ADRRz+jrOX%Sm zAScX398hWiPrK_4-V%PAVfnO{H3T*0I0`inYZq}+EpC`n&*AV&Jz)kX-V<%2jGLC0 zJdxS8f^R%Xa!VPT-eOnsRx$`0GOZr4NN+-HoZS#ZQHt1~ox zc1$U=6qB!vbiP!`Y#LVkW$L5j1)0Y2Yzey;jO28bVy6Dv4EbxrB$|=LK90x`WalXd zcnE2n=P-Hm*{_XoI!|NoLK`#wgd@fywz`g^hU`;e_`H|dA=1PdLTFNBzJ52I+95xe{&apE+cdJi%GHZF{Pjl0FrJXHiCh-~P zO5VpLK1qo2c}n6)O%vxN^G6*@u-04|rl!nfwoE&PnTu>cLfK5_l$>LZMZx!aF%!lI zPGr($ys+Jnwv0a=z~iYpC!x1ur9O2!<;`dlUrx`pb{6t{{Aye*OP5}eE0@M!Z~SN~ zA9Z4sZOL>}hGF_iwf>9YfU{`yD&KCf4@_(8APf_e-iVqDxm>wr^7~8;DZ9FC?-ZW8 z$N8xY=XUa*cZM(|sr?%AsyuUa$n(ma8ncNlh*-7S$tyO9`qUa?BeqV#{6Dpw*>W65 zc82>=%5cykBh(-zdmIji7L!AY(ukyGk(zN#goDu_nh=IqIA}l%5qu5b`evTNS97Nq z^Y{PfEn+IYR1ZOM;_)n8R;9;9 z2ABBdFMCX%_e%WV>W+WIsBxr7kzDaAy>$<`?Gr&kk;H|SF)kbCfIbl%(Uc!{QcxKo z0bfHQGsr-SLt`X4T)wz)`bcglsf5`OLUe4YSr30A9}Swu_}9=m3i)0E+{&QD2kpl< ziAGV709O=eFL+-r9n~0EcJrSPnsEkF`! zCRAcUMA1*=FIw!Fp4HHUG`+Y;qySanSk3y4oZ9L~YegR%(9Z2ve-9Q~ty95CFrBc{T5)p94g z3RG5de_%q80l1;%fD6)1(quW_kzK*@OIr?^+M0h;bC5u#!9YlMf^dE*fsLbVsjuq@ zJFI*D5JcqJ$*b9eW1=#U+}M59T3|70W=zg^he9LLw-QLuM83|*(cUKyR;lpbHcQA@ z9_XI;ySjV)gelndiR~WRFfrWE?y#15;yBF~OEpE98e|z4dJ(BqhC?!0E(KbxraWLS z(sX3+6zU`SkqkU-4Ys?v>v~WG#O_gD>@MPh0|o1`_z>cAEzg@8$}w}`SNwl|FXF%A zm)DXh&d{}d=unNq>>YXU28O%=$W|Irf=(t?9N^+qo#9$#+ece>!Dp5p-ZpI($x|_Q z@Ix^Hshh+YtRz5=VG`_pI_DV_n;8YLxtE&XzNh9LFj#w?)kP6!HY_ZQFM)hA=7$&A zSVc=64n1JVMETI{{|GZtC=JC7o0eA+r8!;13rWGZR^=(Cq(f`!0-Q?GbEnI$SONdk zF_3k46iOCe8b|BJc;#|II<~Gna!HOp^el$u@9ZCO7}*A^d45vXxiUFp+nJ6!a(6Ms zK|6u8gppaHnsO@B(A|6lhC{xH+5H3|-yMEOVnAJK_eO^{kjZz4Z%CmB8JF&*z%KQv zd>sP#moqFAu)D=!_X9f`Bw}|7XnKa^0H}2h<&ykJvQ&*!)|!*FTD-{XHiCYqR-=VI*i|@c)OXx*u&RCYgZ(`Wz`y*rbe)QJi$GG$ z`EkSc{iRo87S8Zl`azh2uWVSHvTTZx$O{pyY%T$bFnO{~Kc9WMD4U+phM}4jyApZa z;-BU05jY+6&km1&GCU>4kU5GgKml{>cSK@qcfGZ;im^f#M1CA2cM~K}&*~^TCnh zpQZDc5=D@&@=h}G!@{X9D&T})!WHfZu#j*87OS!hbFZDn(d+V|iHH=RNpWlAJ5HLY z-aYQYIS`dF71vQ0+Ca`N<8MV}%b^Xnh&-P5?Csf?zx>blfWZhs6NS)*A0FZ9GG%oz zXQk8vSD+tCJRYePw||d3jyEZBZU)aWqwewD8Kei=0WmmAOOH{AbMg_b2xr%4z{t>U z{2wjEcX6^imSh@*7yt4XA`_QfK57X@eAkpd6>J?X6)S!~YbB_OJjEmuMZ3q?owJGQllcGs)9T^K!QfFCuP{SW`1B zkyf_|NeGci3mQQ;v+s=GX5x{_lMpu^8CahZT>W9y@-$blVL9f@@@q$me`*ag+_|+a z#kdvK+(|ZKfyhbKSavjMZZuE1Lq%~BLTda!+4S2V-xaBu@#Vo0Fc5KUVDp-i*$+to z7oDYJj)fflm}txjc*sSV5e^ca=H?zFb{~RP2B~6dV2>q6k^-R*O9@ zDfTUd!O-mket5F~dNDk4G!ywAjv$98EZ3m5nl+hxc3=2d>=bmDBgmCpocHeZKR>e{z>_G?)!}xgZJ=?<8Eh&SvSW!!{)JsA8)l;V9L&TcT!I)W`*>^Ei7V zgM0jm5Vq^f;@Q-SAQ|urmk+ZEIsjM zq9L~PK>^R^HROB6MWeO z-YM#b{YQjoW80kzoV2JYMV+U-tNSEUl?tP6*q7R19Qmv13^`R+~81 z;^dV(^)(r1jugU+d5$?j=6v?sufDp~!4LEeyuaO{Ig4Q>~IUwGHOb6GRJgqi2&qLJ%x&#nM5- zoYaT%DNR=K$d0Vf!(tk%aSv24OP2cRFjCqL2I6|mYH4{2kSQENe8Ztd6HtHr?Br34 z&djcy{D^~QhFs`<51(DpHnHl4pxI;jzxG-u4yCc6cr0LI#CkA9*;BQzfRNS4Ed)dm zI~%Y?&^o8#u0V2js`Nno;FVOkgym0F?8 z?xZTHe?P+AxK$A1fb6C~^K471AGIvM6TQ}%R38 zBL0ki)m~>OvQT|I8H_1h%U9(Q0nmd&;&*Wu#QnX>h{o8U_&?UCGLsSuR`NO!kV>Y+ zqO8N_=P;LyLM?@#6OV|}kR2OQgBU{ph_4puWB!PgtSsGu48Vz8eq>mMcm}Dr6LT8eMyM_~w=AA0jx0DF}J% z;orH;fYSi*Bo-Xi$SB-)dZwe;TjE1K5|(XBFLKM6TeMjY_dK3x^vaY?J6B=$()nfb z@18d5<5o&Nx1q$!4{)|acru$TQQam%MbRAB*-(11Ls3VS<`;YXWcnv$5`pkJ#abbn z%!vdciLx=beZ3fb$YPNMbG50I;zRF6pj#z?&um+G>LJ!`|4e30GlCek*x%)bj?a;k zoeZIB?8%!g9ZVl)*?z-x)ma0fRqo+NAw)c}h8SZ2SKd6`NAo*f9C8c8hx{xVb8oHg z0s{?t!F?F(paRs0u#T;ls!x1lbe7}ZKReHjULtbmb7 z9TzYo9=rD3sfJFRTx0S|SvQbiYWaT~|CBO^RRiV1a61s z*p)xK>>D=Zz}O0Du79xTM&=iA7YYG$ky<%n5P7QjCU7+?s}PJp^$H8^WQaxf3_1pozw#a86Q&YMf6}^CrfWd<#tx7Hz+Ah~R$PZWi?v@sdJq;zrHZfQ{P8@kXl;1V~v_Ud{G7H%J z95~ORjAtXMv9}yF7r%XFHEt)LOIBF~rv2bpW>ySv=_42^Z6A)P8{5DZ;UY6)M972a zIX^r4krg^QIeP`^B|Bx!IEX1HVnj-YfSXtvhG+i{?ae35PUI89hshv^-we&QwV_aZ z>7Dk$p9mLUeb98$4OQ}sLqw(50!)lNfwOPHlZlvDW|t8r>^vzV7-HF$vR+sb(~cLx z&@@`dd;6ooU&I&edn))x2M~jsZHhw&Pn9vPxRU~`;+S+}%17nwY|VsrG2>jydx$#j z&!VD|_kqL0=CpLs2|+2)*nh3)E1iFoT!>4-K`Lz%5F~TEf&{d8f(Z!qFMyG)97Dx} zf3W;vfp4!6G607s@{Zs%MQ~@T(*4-heikfFxI#{75wK%8U8!#OS+Wk7@f0l5N}&=; z|C<(o4plTsp0Q*bm!q1I^K}vs2x{tiuY|A z^!@8+qqy_NDze(^XRnPQ{oL?}XEyxGAdBTgp0Ty?h*8(y8-Gztudh&>?_ag#nmN|w z;s}oV>25jWn{1+9Mw^;A>%4Gc>;6|<15%WQs5FH}V@gtggm$Yu3SrEg6dP^X)+A!` z@{DV05LqQ7hUZokaV*q)V{QO_fUn`>E)FQ_R4Ov5kocBKJ9Q|n2bfy!2vuPR=vZp( za7^>cn`;wO5wpFBw(10S&0Jik*HvpvM-kFE?p5o$GOjlmlDyE9_CX9US3gRVtg@=O zQ;XtjMu+0P?pyC#tVXW(e&dw2*AmPM_98?55NHOJKWAUbRYcZT%$@UUnRoiHOM}!x zXGC<8VG@U)9i=CD{K{X$KM2YOR~seW#-k_L!%*PJ6ZNM({&u-fmrRbj!nJjI7i^Hbj>2nY!=pzw76Z>#uh ziAM-GBJLa1jDy)9x=g!>6N6~b=;2#tYbb&wO<_6^#e=LwruZ0>%^pHHYdbST1vv6C zVvyKq$8CG^icJW@CeUz@g@v!Uf3Z~B_IGPFJ0i8%DODw<*grC=8}WLMv>H9XHAJfu zhUAFNt`+Xt2~U|jzgGC7k7pob_t|%RFfdE+VcLZ%#IS-;LhpbWCM6w{$ZND&Cur1M zbyUYp?d%&V?Vk7Lrr~K9N(K|=y=gd#i_4Y$+ceWHaBTH zG)3J$K&)ya%oRt}H&nt{EeU%rySKMy&tzP~IFBJVGLLl~(}cw?6a)eljg+CSXAuR4 z1wV~;GkY-4$&j`@jazKmtEc$+h@Czoy}^=eyfzha?b=pDoI(I7|Gka8!n-uLwRCB# z9YU6lm3k@kW0Bs<0#|e#;}@LuKb&kkp8#iALVmdCS=9I_UPYKD-fAoqq6z{9CG8CTMU)TG0vlQOWKaA_PfjMCDR&SIPj3u$vVkU3MLm2K}H30K?7=B*au zhFx718kckLCO;MC2ksK-SL2oIcczb=>`bj=%|jrB878t@CNh{5uEr6#n@||0)-RA?AgzUI|{vI zaTye)S1{UXQ!6N5-Q3htaFfMn+TB0=uQlBnAxx8P#+T3d*jT6@o2%!%V{iCAWiY^&)A zsh2tD{leqK&ItFwgJjeYHr6uw9|R{x&j7|8F5Qrkj*jG=Z)>3_oH7{J!+ok%3LR4& z0>b2wE1fQkIV|neVC4cF#IEKGojJF9VQagxYxm93R|DVMLC!wcS@&X;V1-!TTFK20 zpX@7Mi!{Q{xA4jBeI;;4;gj2*eYv-^u@VC%X9Q0splzcq%n?;CC@W<-K%F@O+NQU~ zRoQ2wscDihQ!z6}P-?0PJ}4eSPz)vrcp~u7XcATG?O8NRm#e>79fqUG7Q4%T)oPrf zZ^t-sM7g++NpYdu2=on&cD%cDaQmbA9bjqIFVj11OjH>GGuEXs$*mD=VH|Za++->j zLfqeqWr|ez#p)oHze|J;s8v`=_uF>1dk$+cfAnV9{^QmM-k z_+lIv9f5*>mZ_N+oi@Fi2dW#!ED&^|Y{*3s`RQf-gG{;R67;SM95PT9p@*J}zO+f^ z8#*lV;5()3?t-Z4IJA^D?ud-ocIZ2d@Q~X%xEmKb<=08>djGdaC{J`(K1)vlII ztK&+ew&N5_Qel2pYniH~Sn5`*quu(=sNR1}S0MQ0xQTxEckap9?LLZayao_QgWXyX z6&ncqZV1&x(u0*k-!`WzQ#O*0%Te>@7!frk2jbW+ixmL7UuSKvW7RTa2ofmN8{PB7 zB;}22fEvVAl6%!IcK3xrKYaULNWPC360FMN#kfbN<8HwH1Q+(#$janKvdaqeA6PHP zcEcuQ@+O)cw6`IKqe6zFi68bSC|)LDx*PP`7tKjEmpHj($5|RF$>)$UgABW=S`5D~ z8_$Q7(6bJ`4lj~ZfbC`?-9&(s*y9j9(8tJ+1Zkty#KCWyOi9Bfb2&yk1%92)h#eVr z78puI+dNR6Pg248LZ$G>q~vIysmpOS5|DAhYxq9rya1ea4v;Tp5_+IhHMYC9wcAI} zYDdHb39_8%3fEl44KBsW4;2Q_!k5%;T@IrTK7d2ppHSw?6tIXlOq0S4CSU?Z2W32uNFqC zDl5!jO`Nv}h6W{P;uKoc32lJwPth=qw^GoyR)UZ+Tj%=Sx_`WreEMu;u(Wuc?tTMEbk0<6u9kH?0Sng{yLI{@WuQ zs*VEr_Hl6bz*FGLLy}`dNMYYy{*-*(zI&)4!bjN_v+qbg08}w+#MCf+Ij2o&8B*q%>ok!W1ucSv(PZL3Mwce5^x3*5Z7sv|0L&M-wBxh;S+O zwfXFQ6g`8ol~8)dMF3QtpgsxpotpH7VLSk3L6&3M@^n z`i8Hmeh2C+A6hTzki3*+;Gda7a=5X2i!5Y%0GV8`#?GtFGx^iL1Sp~oNDJp7JOP+3 zf`w99j-}?1FAkr{LhBOr|!u>JLGw7+4?>7Xlv)%pa8KqDab}aD#W}S64!GV;KD+ z?2l%kRN7F`mn2q`QTO(<$&9qkIj+-xB`KBKkIW+DqGLH?)YrO0#x>SqWAwi5&~f2j z`sX}#cBuEjX~N=YxQ1@l%Dae&rCZLK_r32=Ki=ZXEnOw~=QA!OilmG9yI+!)v3o2j z_-gg#z1mQ}`q7|kh=1bmI$t@I&3PmB(TVFvCc9VvFFo1l#=7Rb9WjHe|I5T}YT$yI z+t}ahP0rsA}YroZj!VrDU~Pevy%t=!{?Ve<;%=a3Rf5PZpm=Fol3+kXrvFabC_}ys(+n5+svcYbcgBd$xw8MH@}Mc>ijL@Mb5; zwLaYryNoB!rV;pD{$?hd+H!?1Xh)CMvnnT7sNBunHLBHoDgEr_LB4J?eG{<&*J#0F z8;Ki$hl!lTCfrzGHlUyY(7+l?)oAXutKv(4{elxEe)2M8eE$7hNz84H zEr~*;s&R!=KHhMu8*0r}s`e&{%{8xhw4}*ig`9h=g|Ke^;?>ys#)-S=sBRvFCN7~R zWb7Ip_^J9*B&I$>v?n!c3Ze1v1rA0aQH~Itm$vEE1?};sDtvfClx!&NsBJDAndxPZ zxpgnBM8Dc)Y$=M}A%|Hc#@Msf%R_2j~kxdxUNHGrla z&jMiPJAWd&nB7%$LrJ1Lt`*_ zd6Aci)t|=>_I&HTAJLJ_dXOUQ8x{3!dA^%hi%1M}g@y7>SeXOsm{|^kh8jXbY@qH< z8E%pX@nHGl?@r!vL+!noF33+0yzC%{a%2<$B6-pd4jf_1a@Iek+Sz+J`vU~gkct$Y zNTF7qj76F5MK_l2Y1|U66l@3Bo`<|N+HL<(ff`X>)XAzwU6RT3&XG30=~m^qkZ6Q1 z_?&x+WRhY!NdNBG~0wdqL;Imnr ztzN8A@7#+~1!9Apy|bFSL*>B%yzu3IOIABQiWKY6@`ebK?agQ^PqVzvOcQsHZo@fMuk4||ihXk0JUakGK@TeJ1H4Jsad=w{&zGc~HjV@NNE=IF z=`4CQJpZ0305Ef5rI;ViSp(j1TfAA zCUX1uWr{D3>dB!9 z5=J0ZRh=>L3nEcOnZw?AD>}{&$vqb9b3rq5J;qLou4{F|g>&5&3LE?t z)sd#t(+%Fi{-f^WUi(XW9~+?H)){uRFdj8SM7PSTfHad(!%@SU0~J9p03hu%<{zOv zWR2nGo0`62D@C#`BrR=)(nGIli(TJTQoAr{hqC@3qK|{ zyzSw;@XkxAGoN5Jyc-#g(@Zp&a}CfC{qDQ-sdN9Kg4g8~?Bm-bW&cQkjD11Hcejtcorr9_Mx){{uE z8YY{5kC~)axEeX9%M)KM@zI@+|0yn+`1sC8AJ6an^Zd?l;XZzy9m^Y))sNLYRfw)2!R zbNj3^H6y>P!AHv#t0oWqhnDIs>O}brKv@1na;bymHUS948A`&_%}$|CjAX{VrLjbG z+`6b0a(Z)x@Al!Fe;m37*-FaT-)#=XwG?^l^y1clF6}M1|MX_>Z_yapJQ2aw+J(J$ z02{sMKC)|n5yaf<#lLnl8eh?_(UnBu1BqvM;-8Q1+!?2}F%C~VHnsX0x;o3F%#{Q= zT3&rOFNqLmA&}-jN3*I&-y_3aBsaOSn#q2qy+_2>k7)d`Bs>YT_2u^!OGMCZdrxh6 zA4yUc2fkiu`{n9~O^qD>Jg-YOgT)5h=0y68x5P3tJQ{gDD_;V+c|ikNOlEgXyiuP=^wpXy5kqJ*S@QAGLZ2ZDrDLxH`0 zy>*1^chFk+c%&2q%I}LdWRC8Q&_oeZ!$^5pMxXXy&(0Swfi}Lg zcXxCW8)O8tAG$%Mqr*A7OhJ%T>P@Mmme>ah2s}Ss?7f4`{fg?FzE_0cwO*&UB(G*F z>eA_2xsfb?4x?Ti?T0Dt-365x$flmaEaLXywNFgCa&f`S`f_otO56JNajKpR*64z! zMhm2zX`4og0H8cU<9W0M*+C-e3`kT~gbg&L?2t|G@|vx(UAkJbL%*w4L{Y}tS#7pA z^p88IEj(F)&MB~7_OeB|wBp8fn24}#9xm>%Y|}+f+W0}ulMr=3hq-okzVoy2L&JUk znVr8pMyP$)JP4ORv0l^{NkwUPzI-=4KY^jn&WUc?&rdwszt3-4KiTEQ>*dcZj{aZm zLblMK$7Qd)YBj%BO|GJTzEaJ@Wo`0_UL2~!`WBJC$j$G%z1OJJ_+3CjE_y3Hv%CwC zY>P>sd}Q3vg@tnul}1}v<3*Ruwzfa1@}8z!3l|m~?alR`^shP1mlsHH69Q+QnfKJ7 z$qes$PbFvcwm6AAK^E4tS8cZ1yL`o#Eeks>8^5DKw%Gj$n5;IZQAGBw4Ad0-n8uhfA=46b!OP#{|hS! BPT>Fm literal 0 HcmV?d00001 diff --git a/ckan/i18n/de/LC_MESSAGES/ckan.po b/ckan/i18n/de/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..fdf3f34dea3 --- /dev/null +++ b/ckan/i18n/de/LC_MESSAGES/ckan.po @@ -0,0 +1,5302 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Ondics Githubler, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Ondics Githubler, 2022\n" +"Language-Team: German (https://www.transifex.com/okfn/teams/11162/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Audio" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "Audio-Url" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"z.B. http://example.com/audio.mp3 (wenn leer, wird Ressourcen-URL " +"verwendet)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Ihr Browser unterstützt das Audio Element nicht. Aber keine " +"Sorge, Sie können es downloaden." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ressource nicht gefunden" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Keine Berechtigung zum Anzeigen dieser Seite" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Fertig" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Läuft noch" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Absenden" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fehler" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Noch nicht hochgeladen" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Zum DataStore hochladen" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Fehler beim Hochladen:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fehler:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Fehler-Verfolgung:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Zuletzt aktualisiert" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nie" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log hochladen" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Ende des Logs" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore Ressource nicht gefunden" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Das Data Dictionary wurde gespeichert. Typ-Änderungen werden wirksam, wenn " +"die Ressource in den DataStore hochgeladen wird." + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Die Daten waren ungültig: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ressource \"{0}\" wurde nicht gefunden." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Benutzer {0} darf die Ressource {1} nicht ändern" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Zugriff auf Ressourcen per Web-Schnittstelle mit umfangreichen " +"Suchmöglichkeiten" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Weiterführende Information in der zentralen CKAN Data API und DataStore " +"Dokumentation.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "API-Schnittstelle" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Die Daten-Schnittstelle (Data-API) kann über folgende Schnittstellenbefehle " +"der CKAN Action API erreicht werden." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Erstellen" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Aktualisieren / Einfügen" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Abfrage" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Abfrage (mit SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Abfrage läuft" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Abfragebeispiel (erste 5 Ergebnisse)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Abfragebeispiel (Ergebnisse die 'jones' enthalten)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Abfragebeispiel (mit SQL Befehl)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Beispiel: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Eine einfache AJAX (JSONP) Abfrage des Data API mit jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Beispiel: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Speichern" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Feld {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Typ-Überschreibung" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Bezeichnung" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Beschreibung" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Datenverzeichnis" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Spalte" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Typ" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Lädt..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Daten-API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabelle" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Bildschirmabhängige Anzeige" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Spalten anzeigen" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Spalten ein-/ausblenden" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevanz" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Name aufsteigend" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Name absteigend" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Zuletzt geändert" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Benutzerdefiniertes Feld aufsteigend" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Benutzerdefiniertes Feld absteigend" + +#: ckan/templates/group/read.html:17 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 "Beliebt" + +#: 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 "Benutzerspezifischer Text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "benutzerspezifischer Text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Ländercode" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Diese Gruppe hat keine Beschreibung" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Datensatz" +msgstr[1] "{num} Datensätze" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "Keine Datensätze" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Die Datenvorschau von CKAN hat viele mächtige Funktionen" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Follower" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressourcen" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Sekunde" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Minute" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Stunde" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Tag" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Läuft ab in" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Einheiten" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Läuft ab am" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Bild" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Bild-URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +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:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graph" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Karte" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Fehler beim Laden der Ansicht" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Ansicht konnte nicht geladen werden" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore gab einen Fehler zurück" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy gab einen Fehler zurück" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Raster" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filter" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Zeilenvorgabe" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "z.B. 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Anzahl der Zeilen" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "z.B. 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Graph-Typ" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Gruppe (Achse 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Reihe (Achse 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Feld-Typ" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Längenlinien-Feld / Latitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Breitenlinie-Feld / Longitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-Feld" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Autozoom auf Merkmale" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markierungen zusammenfassen" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Ungültige URL" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Beliebteste Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Durchschnittliche Bewertung" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Anzahl Bewertungen" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Keine Bewertungen" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Größte Gruppen" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Gruppe" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Zahl der Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Keine Gruppen" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Beliebteste Tags" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tag-Name" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Anzahl der Datensätze" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Benutzer mit den meisten Datensätzen" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Benutzer" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistik-Menü" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Meistbearbeitete Datensätze" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Text" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" +"Ein Fehler ist aufgetreten bei einer AJAX Anforderung. Die Ansicht konnte " +"nicht geladen werden." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Video" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Video Url" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"z.B. http://example.com/video.mpeg (wenn leer, wird Ressourcen-URL " +"verwendet)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "Poster Url" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "z.B. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Leider kann Ihr Browser kein embedded Video darstellen, aber das Video kann" +" gedownloadet und mit Ihrem " +"bevorzugten Video-Player abgespielt werden." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Webseite" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Webseiten-URL" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "z.B. http://example.com (wenn leer wird die Ressourcen-URL verwendet)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ihr Browser unterstützt keine IFrames." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Berechtigungsfunktion nicht gefunden: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redakteur" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Mitglied" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Für diese Aufgabe werden Administratorrechte benötigt" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Seitentitel" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Seitenslogan" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Seitenslogan-Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Über uns" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Text der \"Über uns\"-Seite" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Einführungstext" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text der Startseite" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Angepasstes CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Anpassbares CSS, das in den Seitenkopf eingefügt wird" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Startseite" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Fehler beim Löschen der Revision %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Löschung abgeschlossen" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Befehl nicht implementiert." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Zugriff verweigert" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nicht gefunden" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Fehlerhafte Anfrage" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Befehl ist nicht bekannt: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Fehler: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Fehlerhafte Daten in der Anforderung: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Gruppe nicht gefunden" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organisation nicht gefunden" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Ungültiger Gruppentyp" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisationen" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Gruppen" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tags" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formate" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Lizenzen" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Benutzer %r hat keine Berechtigung %s zu bearbeiten" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Keine Berechtigung für Massenupdates" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nicht zum Anlegen einer Gruppe autorisiert" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritätsfehler" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Keine Berechtigung die Gruppe %s zu löschen" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisation wurde gelöscht." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Gruppe wurde gelöscht." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s wurde gelöscht." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" +"Benutzer %r hat keine Berechtigung die Mitglieder von %s zu bearbeiten" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Keine Berechtigung, um Gruppenmitglieder %szuerstellen" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Keine Berichtigung Mitglieder zur Gruppe %s hinzuzufügen" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Keine Berechtigung Mitglieder der Gruppe %s zu löschen" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Gruppenmitglied wurde gelöscht." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Wählen Sie zwei Revisionen um den Vergleich durchzuführen." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Gruppen-Revisionshistorie" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Aktuelle Änderungen an der CKAN Gruppe:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Logeintrag:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Sie folgen nun {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Sie folgen {0} nicht mehr" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Keine Berechtigung um die Follower %s anzuzeigen" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Bitte aktualisieren Sie Ihr Profil und fügen Sie Ihre " +"Emailadresse hinzu." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s verwendet Ihre Emailadresse falls Sie Ihr Passwort zurücksetzen müssen." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Ungültige Suchanfrage: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" ist kein Ganzzahlwert" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Datensatz nicht gefunden" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ungültiges Revisionsformat: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Eine Anzeige von Datensätze des Typs \"{package_type}\" wird nicht " +"unterstützt ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Keine Berechtigung zum Lesen von Paket %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Datensatz-Änderungshistorie" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Letzte Änderungen im CKAN Datensatz:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nicht zum Anlegen eines Pakets autorisiert" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Keine Berechtigung um die Ressource zu bearbeiten" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Keine Berechtigung um den Datensatz zu aktualisieren" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Der Datensatz {id} konnte nicht gefunden werden." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Sie müsssen mindestens eine Daten-Ressource hinzufügen" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Keine Berechtigung um eine Ressource anzulegen" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Nicht berechtigt, eine Ressource für dieses Package anzulegen" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Das Paket konnte dem Index nicht hinzugefügt werden" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Der Suchindex konnte nicht aktualisiert werden" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Datensatz wurde gelöscht." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Keine Berechtigung um das Paket %s zu löschen" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ressource wurde gelöscht." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Keine Berechtigung um die Ressource %s zu löschen" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Ressourcen-View nicht gefunden" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Ressource nicht gefunden" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Kein Download verfügbar" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Keine Berechtigung um den Datensatz %s anzuzeigen" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Keine Leseberechtigung für Ressource %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Berechtigung fehlt, um Ressource zu ändern" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "View nicht gefunden" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "View-Typ nicht gefunden" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Ungültige Ressource-View Daten" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Ressourcen-View nicht angegeben" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Es wurde keine Vorschau definiert." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Benutzer nicht gefunden" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Keine Berechtigung zur Registrierung als Benutzer." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Keine Berechtigung einen Nutzer anzulegen" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" +"Sie sind nicht berechtigt, den Benutzer mit der id \"{user_id}\" zu löschen." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Kein Nutzer angegeben" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Keine Berechtigung den Nutzer %s zu bearbeiten" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil aktualisiert" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Keine Berechtigung den Nutzer %s anzulegen" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Fehlerhaftes Captcha. Bitte versuch es noch einmal." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, 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 Sie sind noch als \"%s\" " +"angemeldet." + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Keine Berechtigung, Benutzer zu ändern." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Das eingegebene Kennwort war falsch" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Altes Kennwort" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "ungültiges Kennwort" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "" +"Anmeldung fehlgeschlagen. Falscher Benutzername oder falsches Passwort." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Keine Berechtigung, Passwort rücksetzen zu lassen." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "Email wird benötigt" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Fehler beim Versand der Email. Bitte später nochmal versuchen oder wenden " +"Sie sich an den Administrator" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Ein Hyperlink zum Zurücksetzen wurde Ihnen gesendet (es sei denn, das " +"angegebene Benutzerkonto existiert nicht)." + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Keine Berechtigung, Passwort zurückzusetzen." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Ungülitger Rücksetzungslink. Bitte noch einmal versuchen." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ihr Passwort wurde zurückgesetzt." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Ihr Passwort muss mehr als vier Zeichen lang sein." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Die eingegebenen Passwörter stimmen nicht überein." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Sie müssen ein Passwort angeben" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "nächster Inhalt nicht gefunden" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nicht gefunden" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Alles" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ansicht" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} neue Aktivität auf {site_title}" +msgstr[1] "{n} neue Aktivitäten auf {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Gerade eben" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} Byte" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k} Tsd." + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m} Mio." + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g} Mrd." + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t} Bio." + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p} Brd." + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e} Trio." + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z} Trd." + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y} Qio." + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Unbekannt" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Unbenannte Ressource" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Neuer Datensatz erstellt." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Ressourcen bearbeitet." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Einstellungen bearbeitet." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} Aufruf" +msgstr[1] "{number} Aufrufe" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} kürzlicher Aufruf" +msgstr[1] "{number} kürzliche Aufrufe" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Keine Empfängeradresse verfügbar!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "Organisation" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "Gruppe" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Fehlender Wert" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Das Eingabefeld %(name)s war nicht erwartet." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Bitte gib eine Ganzzahl ein" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Das dürfen nur Unicode-Zeichen sein" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paketressource(n) ungültig" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Das Tag-Vokabular \"%s\" existiert nicht" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Datensatz" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Kann nicht als gültiges JSON erkannt werden" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Eine Organisation muss angegeben werden" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "Sie können den Datensatz nicht einer anderen Organisation zuordnen" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisation nicht vorhanden" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Sie können dieser Organisation keinen Datensatz hinzufügen" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Ungültige Ganzzahl" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Muss eine Ganzzahl sein" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Muss eine positive und ganze Zahl sein" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Datumsformat ungültig." + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Keine Links zulässig in der Log-Mitteilung." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Datensatz ID gibt es schon" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ressource" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Dieser Gruppenname oder diese ID existieren nicht." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Aktivitätstyp" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Namen müssen Strings (Zeichenketten) sein" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Dieser Name kann nicht verwendet werden." + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Muss mindestens %s Zeichen lang sein" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Name darf maximal %i Zeichen lang sein" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "Darf nur Kleinbuchstaben (ASCII) enthalten und diese Zeichen: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Diese URL ist bereits vergeben." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Version darf maximal %i Zeichen lang sein" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Doppelter Schlüssel \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Gruppenname exisitiert bereits in der Datenbank" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Der Tag \"%s\" muss mindestens %s Zeichen lang sein" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Der Tag \"%s\" darf nicht länger als %i Zeichen sein" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Der Tag \"%s\" muss aus alphnummerischen Zeichen oder diesen Symbolen " +"bestehen: -_. " + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Der Tag \"%s\" darf keine Großbuchstaben enthalten" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Benutzernamen müssen Zeichenketten/Strings sein" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Der Anmeldename ist nicht verfügbar." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Dieser Benutzernamen kann nicht geändert werden." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Bitte beide Passwörter angebens" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Kennworte müssen Zeichenketten/Strings sein" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Das Kennwort muss mindestens 8 Zeichen enthalten." + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Die angegebenen Passwörter stimmen nicht überein" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Name muss mindestens %s Zeichen lang sein" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Dieser Vokabular-Name wird bereits verwendet." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Tag-Vokabular wurde nicht gefunden." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Der Tag %s gehört nicht zum Vokabular %s." + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Kein Tag-Name" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Der Tag %s gehört bereits zum Vokabular %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Bitte eine valide URL angeben" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Rolle ist nicht vorhanden." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datensätze ohne Organisation können nicht privat sein." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Keine Liste" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Keine Zeichenkette" + +#: ckan/logic/validators.py:811 +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:821 +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:832 +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:835 +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:849 +msgid "There is a schema field with the same name" +msgstr "Es gibt ein Vorlagefeld mit dem gleichen Namen" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Email {email} ist kein gültiges Format" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Muss ein Dict sein" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "Die Email-Adresse '{email}' gehört zu einem registrierten Benutzer." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "Der Wert muss einer von {} sein" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "Der Wert muss ein gültiges JSON sein" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "Der Wert kann nicht als gültiges JSON-Objekt erkannt werden" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "Konnte '{name}' nicht als gültiges JSON erkennen" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Fehlender Wert" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "Die Rolle muss in \"{}\" enthalten sein" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "Es ist nicht nicht erlaubt, Mitmacher hinzuzufügen" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Für Datensätze sind Mitmacher keine aktiviert" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Versuche eine Organisation als Gruppe anzulegen" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Sie müssen eine Bewertung angeben (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Die Bewertung muss einen integer Wert sein." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Bewertung muss zwischen %i und %i sein." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Fehler beim Senden der Einladungs-Email. Der Benutzer konnte nicht angelegt " +"werden: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +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:1369 +msgid "You cannot follow yourself" +msgstr "Sie können nicht sich selbst folgen" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Sie folgen {0} bereits " + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "Benutzer {username} nicht gefunden." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Paket nicht gefunden" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" +"Die Organisation kann nicht gelöscht werden, solange ihr noch Datensätze " +"zugeordnet sind." + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "ID nicht in Daten enthalten" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Vokabular \"%s\" konnte nicht gefunden werden" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Der Tag \"%s\" konnte nicht gefunden werden" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +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:697 +msgid "You are not following {0}." +msgstr "Sie folgen {0} nicht." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "Kapazität muss in \"{}\" enthalten sein" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "Es ist nicht erlaubt, Mitmacher abzufragen" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Ressource wurde nicht gefunden" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "Parameter ist nicht vom Typ \"Bool\": wahr/falsch" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nicht angeben, wenn \"query\"-Parameter genutzt wird" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Müssen : Paare sein" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Feld \"{field}\" wird von resource_search nicht erkannt." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Paket wurde nicht gefunden." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus nicht gefunden." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisation wurde nicht gefunden." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Benutzer %s hat keine Berechtigung Pakete zu bearbeiten" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Benutzer %s hat keine Berechtigung diese Gruppen zu bearbeiten" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Benutzer %s hat keine Berechtigung, Datensätze zu dieser Organisation " +"hinzuzufügen" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Autorisierung kann nicht durchgeführt werden, da keine Datensatz-ID " +"angegeben wurde." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +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." + +#: ckan/logic/auth/create.py:76 +#, python-format +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:108 +#, 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:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Benutzer %s hat keine Berechtigung Gruppen zu bearbeiten" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Benutzer %s hat keine Berechtigung, um Organisationen zu erstellen" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Benutzer {user} darf keine Benutzer mit der API anlegen" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nicht berechtigt, Benutzer anzulegen" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Gruppe wurde nicht gefunden" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Benutzer %s hat keine Berechtigung, um Mitglieder hinzuzufügen" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"Benutzer %s hat nicht die Berechtigung, Mitmacher zu diesem Datensatz " +"hinzuzufügen" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Ressourcen-Darstellung/View nicht gefunden, deswegen ist keine " +"Berechtigungsprüfung möglich" + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Benutzer %s hat keine Berechtigung, um Organisationen zu löschen" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Benutzer %s hat keine Berechtigung, um die Organisation %s zu löschen" + +#: ckan/logic/auth/delete.py:120 +#, 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/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" +"Benutzer %s hat nicht die Berechtigung, Mitmacher von diesem Datensatz zu " +"löschen" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Keine Berechtigung" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Benutzer %s hat keine Berechtigung diese Pakete anzusehen" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Benutzer %s hat keine Berechtigung das Paket %s anzusehen" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Benutzer %s ist nicht berechtigt, Ressource %s zu lesen" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Benutzer %s hat keine Berechtigung die Gruppe %s anzusehen" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Sie müssen angemeldet sein, um die Übersichtsseite sehen zu können." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" +"Benutzer %s hat nicht die Berechtigung, Mitmacher von diesem Datensatz " +"anzuzeigen" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Benutzer %s hat keine Berechtigung das Paket %s zu bearbeiten" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Benutzer %s hat keine Berechtigung, um die Ressource %s zu bearbeiten" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"Benutzer %s hat keine Berechtigung den Zustand des Pakets %s zu bearbeiten" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" +"Benutzer %s hat keine Berechtigung, um die Organisation %s zu bearbeiten" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" +"Benutzer %s hat keine Berechtigung den Zustand der Gruppe %s zu bearbeiten" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"Benutzer %s hat keine Berechtigung die Berechtigungen an der Gruppe %s zu " +"bearbeiten" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Eine Anmeldung ist erforderlich, um die Benutzerdaten zu ändern." + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Benutzer %s hat keine Berechtigung den Benutzer %s zu bearbeiten" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Benutzer {0} darf den Benutzer {1} nicht ändern" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Benutzer %s hat keine Berechtigung den Zustand der Revision zu ändern" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"Benutzer %s ist nicht berechtigt, die Tabelle task_status zu aktualisieren" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Benutzer %s ist nicht berechtigt, die term_translation-Tabelle zu " +"aktualisieren" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "Titel" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Lizenz nicht angegeben" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Andere (Offen)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Andere (gemeinfrei)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Andere (Namensnennung)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Alle)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Andere (nicht-kommerziell)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Andere (nicht offen)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "abhängig von %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "ist eine Abhängigkeit von %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "abgeleitet von %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "ist eine Ableitung %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "verweist auf %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "Verweis von %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "ist ein Kind von %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "ist ein Elternteil von %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "hat einen Zwilling %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Diese Ressource hat keine API-Daten zum Laden" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Informationen zur Daten-API konnten nicht geladen werden" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Gib etwas ein..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Keine Treffer" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Die Eingabe muss mindestens ein Zeichen lang sein" +msgstr[1] "Die Eingabe muss mindestens %(num)d Zeichen lang sein" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Dieses Formular hat ungespeicherte Änderungen" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Bestätige bitte die Aktion" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Sind Sie sicher, dass Sie diese Aktion ausführen wollen?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Bestätigen" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Abbrechen" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Entfolgen" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Folgen" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Link zu einer URL im Internet (Sie können auch den Link zu einer API " +"angeben)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Hochladen" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Bitte Datei auswählen und erneut hochladen" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Entfernen" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Datei von Ihrem Computer hochladen" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Datei" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Ressourcen neu ordnen" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Sie können die Ressourcen neu anordnen, in dem sie mit dem Pfeil-Icon " +"verschoben werden. Ziehen sie die Ressource nach rechts auf die gewünschte " +"Stelle in der Liste. Wenn Sie fertig sind, klicken sie den Speichern-Button" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Reihenfolge speichern" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Speichern..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Datei hochladen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Es trat ein Fehler auf" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Datei konnte nicht hochgeladen werden" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Upload konnte nicht autentifiziert werden" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ressource hochgeladen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Daten für hochgeladen Datei konnten nicht abgerufen werden" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "Eine Datei wird hochgeladen. Soll das wirklich abgebrochen werden?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Filter hinzufügen" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Wählen Sie ein Feld" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Bearbeiten" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mehr anzeigen" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Verstecken" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fehler %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Über {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN-API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Eingesetzte Software ist CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sysadmin-Einstellungen" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Profil ansehen" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Übersicht (%(num)d neuer Eintrag)" +msgstr[1] "Übersicht (%(num)d neue Einträge)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Übersicht" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Profileinstellungen" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Abmelden" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Benutzerkonto" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Einloggen" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrieren" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datensätze" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Datensatz-Suche" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Suche" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Datensatz-Suche" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Absenden" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Überspringen zum Inhalt" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Brotkrumen-Navigation" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Weniger laden" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Mehr laden" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Keine Aktivitäten in dieser Aktivitätsanzeige" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Systemadministratoren" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfiguration" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Papierkorb" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Webseiten-Logo" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Sind Sie sicher, dass Sie die Konfiguration zurücksetzen wollen?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Zurücksetzen" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Konfiguration aktualisieren" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Optionen der CKAN-Konfiguration" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

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> Tag 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.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bestätige das Zurücksetzen" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN verwalten" + +#: 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 "" +"

Als Systeadministrator haben Sie volle Kontrolle über diese CKAN " +"Instanz. Handeln Sie mit Vorsicht!

Hilfe zu den Möglichkeiten zur " +"Systemadministration erhalten Sie im CKAN SysAdmin Handbuch

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "Sind Sie sicher, dass Sie alles löschen wollen?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Alles löschen" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"Gelöschte Datensätze, Organisationen oder Gruppen endgültig und " +"unwiderruflich entfernen." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Bestätige das Löschen" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Gelöschte Datensätze" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Gelöschte Organisationen" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Gelöschte Gruppen" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Löschen" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Diese Ressource kann momentan nicht in der Vorschau angezeigt werden." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klick hier für mehr Informationen" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Ressource herunterladen" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Keine Voransicht verfügbar." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Mehr Details..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Kein Vorschau für den Datentyp %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard-Eingabe" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Eingabe mittlere Breite" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Ganz" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Eingabe ganze Breite" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Umfangreich" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Umfangreiche Eingabe" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "vorne anfügen" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Eingabe vorne anfügen" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Benutzerdefiniertes Feld (leer)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Benutzerdefiniertes Feld" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown Auszeichnungen" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textbereich" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Auswahl" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitätsanzeige" + +#: 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 "Administratoren" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Füge eine Gruppe hinzu" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Gruppen-Formular" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Sind Sie sicher, dass Sie die Gruppe {name} löschen wollen?" + +#: 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 "Sind Sie sicher, dass Sie das Mitglied {name} löschen wollen?" + +#: 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:15 +#: 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 "Bearbeiten" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Bearbeite Gruppe" + +#: 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 "Mitglieder" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Gruppe hinzufügen" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Gruppe suchen..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Es gibt momentan keine Gruppen für diese Seite" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Wie wäre es, wenn Sie eine erstellen?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Zurück zu allen Mitgliedern" + +#: 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 "Mitglied bearbeiten" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Mitglied hinzufügen" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Bestehender Benutzer" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Um einen bestehenden Benutzer hinzuzufügen, können Sie dessen Benutzernamen " +"unten suchen." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "oder" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Neuer Benutzer" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Um einen neuen Benutzer einzuladen, geben Sie dessen Email-Adresse ein." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rolle" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Sind Sie sicher, dass Sie dieses Mitglied löschen wollen?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Löschen" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Was sind Rollen?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: Kann Gruppen-Informationen und " +"Organisationsmitglieder verwalten.

Member: Kann " +"Datensätze von Gruppen hinzufügen und entfernen.

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Leg eine Gruppe an" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Aktualisiere Gruppe" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Gruppe anlegen" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Datensätze suchen..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datensätze in der Gruppe: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Name" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Meine Gruppe" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Ein paar Informationen zu meiner Gruppe..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Sind Sie sicher, dass Sie diese Gruppe löschen wollen?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Gruppe speichern" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "{name} ansehen" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Datensatz aus dieser Gruppe entfernen" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Was sind Gruppen?" + +#: 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 "" +"Sie können mit CKAN Gruppen Datensätze erstellen und verwalten. Damit können" +" Datensätze für ein bestimmtes Projekt, ein Team oder zu einem bestimmten " +"Thema katalogisiert oder sehr leicht die eigenen veröffentlichten Datensätze" +" anderen Leuten zugänglich gemacht werden." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Gelöscht" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "mehr erfahren" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Willkommen" + +#: 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 ist die weltweit führende Open Souce Data Portalsoftware.

" +"

CKAN ist eine vollständige und schlüsselfertige Software, die Daten " +"verfügbar, zugreifbar und benutzbar macht. Sie bietet Hilfsmittel, um Daten " +"zu veröffentlichen, teilen, finden und zu benutzen (einschließlich der " +"Datenspeicherung und robuster Datenschnittstellen/APIs). CKAN wurde " +"entwickelt für Datenherausgeber, die ihre Daten öffentlich verfügbar machen " +"wollen, zum Beispiel Regierungen, Behörden, Unternehmen und " +"Organisationen.

CKAN wird weltweit von öffentlicher Seite und " +"Benutzergruppen eingesetzt und ist Grundlage einer Vielzahl von offiziellen " +"und Community-Portale sowie Portale für Kommunen, Länder und Internationale " +"Behörden, darunter das Datenportal für Deutschland govdata.de, das englische Portal data.gov.uk, das Portal der Europäische " +"Union publicdata.eu, das " +"brasilianische Portal dados.gov.br, " +"sowie kommunale und Städteportale in allen Teilen der Welt.

CKAN: http://ckan.org/
CKAN Kennenlern-Tour: " +"http://ckan.org/tour/
" +"Leistungsüberblick: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Willkommen bei 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 "" +"Dies ist ein freundlicher Einführungsabsatz zu CKAN oder dieser Seite " +"generell. Wir haben noch keinen Inhalt hier, aber sicherlich bald" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dies ist ein hervorgehobener Abschnitt" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "z.B. Umwelt" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Suchdaten" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Beliebte Tags" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} Statistik" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "Datensatz" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "Datensätze" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Organisationen" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "Gruppen" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Dieses Feld ist erforderlich" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Sie können hier Markdown Formatierung verwenden" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Schlüssel" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Wert" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Angepasst" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Das Formular enthält unzulässige Einträge:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Pflichtfeld" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Bild-URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Hochgeladene Datei löschen" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Eine Organisation hinzufügen" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisations-Formular" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Datensätze bearbeiten" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "gefunden für \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sorry, keine Datensätze gefunden für \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Öffentlich - keine Zugriffsbeschränkung" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Zugriffsbeschränkung \"privat\" setzen" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Entwurf" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Diese Organisation hat keine ihr zugeordneten Datensätze" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Sind Sie sicher, dass Sie die Organisation {name} löschen wollen?" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "Organisation bearbeiten" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Organisation hinzufügen" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Organisationen suchen..." + +#: ckan/templates/organization/index.html:29 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Benutzername" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email-Adresse" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Mitglied aktualisieren" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} Mitglied" +msgstr[1] "{count} Mitglieder" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Organisation erstellen" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Organisation aktualisieren" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Organisation erstellen" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datensätze in der Organisation {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Was sind Organisationen?" + +#: 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 "" +"

Organisationen repräsentieren Veröffentlichungsabteilungen für " +"Datensätze (zum Beispiel das Katasteramt). Das bedeutet, dass Datensätze von" +" dieser Abteilung veröffentlicht werden und dieser auch gehören, anstatt " +"einem einzelnen Nutzer.

Admins können innerhalb von Organisationen " +"Rollen und Berechtigungen an Mitglieder vergeben, um einzelnen Nutzern " +"Rechte zu geben, um für die Organisation Datensätze zu veröffentlichen (z.B." +" für das Statistikamt).

" + +#: 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 "" +"Mit CKAN Organisationen können Gruppen von Datensätzen erstellt, bearbeitet " +"und veröffentlicht werden. Benutzer haben verschiedene Berechtigungen " +"innerhalb von Organisationen, die von ihrer Berechtigungsstufe abhängen: " +"erstellen, bearbeiten, veröffentlichen." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Meine Organisation" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Ein paar Informationen zu meiner Organisation..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Soll diese Organisation wirklich gelöscht werden? Hinweis*: Das Löschen kann" +" nicht ausgeführt werden, solange öffentliche oder private Datensätze zu " +"dieser Organisation gehören." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Organisation speichern" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "{organization_name} ansehen" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Datensatz anlegen" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Was sind Datensätze?" + +#: 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 "" +"Ein CKAN Datensatz ist eine Menge von Daten-Ressourcen (z.B. Dateien) mit " +"einer Beschreibung und anderen Informationen an einer festen URL. Datensätze" +" werden bei Suchanfragen als Ergebnisse zurückgegeben." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Änderungen" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Sind Sie sicher, dass Sie den Datensatz {name} löschen wollen?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Sind Sie sicher, dass Sie die Ressource {name} löschen wollen?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Datensatz ansehen" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Metadaten bearbeiten" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +msgstr "Mitmacher" + +#: 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 "Ansicht bearbeiten" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Vorschau" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Aktualisieren" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Diese Gruppe mit einem Datensatz verbinden" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Zu einer Gruppe hinzufügen" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Es gibt keine Gruppen, die mit diesem Datensatz verbunden sind" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Datensatz aktualisieren" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Füge Daten zu diesem Datensatz hinzu" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Neue Ressource hinzufügen" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Resource hinzufügen" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Neue Ressource" + +#: 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 "Ansicht hinzufügen" + +#: 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 "" +"Data Explorer Darstellungen können langsam und ungenau sein solange die " +"DataStore Extension nicht aktiviert ist. Weiterführende Informationen hierzu" +" in der Data " +"Explorer Dokumentation. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Hinzufügen" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"Sie sehen gerade eine alte Version des Datensatzes. Um die aktuelle zu " +"sehen, bitte hier klicken." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle Ressourcen" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ressource ansehen" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Ressource bearbeiten" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Ansichten" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API-Schnittstelle" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Zur Ressource" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Herunterladen" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Datensatzbeschreibung:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Quelle: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Es gibt noch keine Darstellungen/Views für diese Ressource" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Sehen Sie nicht die erwarteten Darstellungen/Views?" + +#: ckan/templates/package/resource_read.html:148 +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:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Es wurde keine geeignete Darstellung/View für diese Ressource erzeugt" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Die Seitenadministratoren haben die erforderlichen Darstellungs-/Views-" +"Plugins nicht aktiviert" + +#: ckan/templates/package/resource_read.html:152 +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" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Zusätzliche Informationen" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Feld" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Daten wurden zuletzt aktualisiert" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "unbekannt" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadaten zuletzt aktualisiert" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Erstellt" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Lizenz" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Neue Darstellung/View" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Diese Ressource hat keine Darstellungen/Views" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Neue Ressource hinzufügen" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "kompletten {format}-Download" + +#: 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 "" +" Sie können dieses Register auch über die %(api_link)s (siehe " +"%(api_doc_link)s) oder über einen %(dump_link)s abrufen. " + +#: 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 "" +"Sie können dieses Register auch über die %(api_link)s (siehe " +"%(api_doc_link)s) abrufen. " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Alle Ansichten" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Darstellung/View ansehen" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Vorschau anzeigen" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Mitmacher bearbeiten" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Mitmacher hinzufügen" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Zurück zu allen Mitmachern" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "Sind Sie sicher, dass Sie diesen Mitmacher löschen wollen?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Mitmacher aktualisieren" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "Welche Rollen sind verfügbar?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Admin: Admins können Datensätze verwalten und zusätzlich" +" Mitmacher zu Datensätzen hinzufügen und löschen.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Redakteur: Redakteure können Datensätze und ihre " +"Ressourcen bearbeiten, egal ob diese öffentlich oder privat sind.

" +"

Mitglied: Mitglieder können auf Datensätze (auch " +"private) zugreifen, aber diese nicht ändern.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Mitmacher hinzufügen" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} Mitmacher" +msgstr[1] "{count} Mitmacher" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Zusätzliche Informationen" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Quelle" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Verantwortlicher" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Status" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Zuletzt aktualisiert" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"Vor der Erstellung eines Datensatzes muss erst eine Organisation anlegt " +"werden." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Organisation erstellen" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Es gibt keine Organisation, zu der dieser Datensatz zugeordnet werden kann." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Ein Systemadministrator muss diese zunächst Organisation anlegen, damit Sie " +"fortfahren können." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "Auf %(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "z.B. ein beschreibender Titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "z.B. mein-datensatz" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "z.B. einige nützliche Hinweise zu den Daten" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "z.B. Wirtschaft, geistige Gesundheit, Regierung" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "Bitte Lizenz auswählen" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Keine Organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Sichtbarkeit" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Öffentlich" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "aktiv" + +#: 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 "" +"Die Datenlizenz, die Sie ausgewählt haben gilt nur für die Inhalte " +"aller Ressourcen, die zu diesem Datensatz gehören. Wenn Sie dieses Formular " +"absenden, stimmen Sie zu, die Metadaten unter der Open Database " +"License zu veröffentlichen." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Sind Sie sicher, dass Sie diesen Datensatz löschen wollen?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Als nächstes: Daten hinzufügen" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Erika Mustermann" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-Mail des Autors" + +#: 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 "erika@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-Mail des Verantwortlichen" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Ressource aktualisieren" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Daten" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "z.B. Goldpreise im Januar 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Nützliche Hinweise zu den Daten" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "z.B. CSV, XML oder JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Dies wird automatisch generiert. Es muss nicht eingegeben werden" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "z.B. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Dateigröße" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "z.B. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME-Typ" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "z.B. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Sind Sie sicher, dass Sie diese Ressource löschen wollen?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Vorherige" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Speichern & weitere hinzufügen" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Beenden" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Was ist eine Ressource?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Eine Ressource kann jede Datei oder jeder Link zu einer Datei mit nützlichen" +" Daten sein." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Entdecke" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Mehr Information" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Vollbildschirm" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Einbettung" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" +"Diese Ressourcendarstellung/-view kann momentan nicht angezeigt werden." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Ressourcendarstellung/-view einbetten" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Sie können den Einbettungs-Code in ein CMS oder eine Blog-Software, die " +"\"raw HTML\" unterstützt, einbetten" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Breite" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Höhe" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Code" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Ressource-Vorschau" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Daten und Ressourcen" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Dieser Datensatz hat keine Daten" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Datensatz anlegen" + +#: 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 "Daten hinzufügen" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "Meine Darstellung/-View" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "z.B. Informationen zu meiner Darstellung/meinem View" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Filter entfernen" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Was ist eine Darstellung bzw. ein View?" + +#: 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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Datensatz hinzufügen" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher Status: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback-URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mehr {facet_type} anzeigen" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Nur häufige {facet_type} anzeigen" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Start" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Sprache" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Los" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Keine Lizenz angegeben" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Dieser Datensatz entspricht der Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Es gibt keine Beschreibung für diese Organisation" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Dieser Datensatz hat keine Beschreibung" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Ergebnisse filtern" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Bitte versuch es mit einer anderen Suche.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Beim Suchen trat ein Fehler auf. Bitte noch einmal " +"versuchen.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} Datensatz gefunden für \"{query}\"" +msgstr[1] "{number} Datensätze gefunden für \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Keine Datensätze gefunden bei der Suche \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} Datensatz gefunden" +msgstr[1] "{number} Datensätze gefunden" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Keine Datensätze gefunden" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} Gruppe gefunden für \"{query}\"" +msgstr[1] "{number} Gruppen gefunden für \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Keine Gruppen gefunden bei der Suche nach \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} Gruppe gefunden" +msgstr[1] "{number} Gruppen gefunden" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Keine Gruppen gefunden" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} Organisation wurde zu \"{query}\" gefunden" +msgstr[1] "{number} Organisationen wurden zu \"{query}\" gefunden" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Keine Organisationen gefunden bei der Suche nach \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} Organisation gefunden" +msgstr[1] "{number} Organisationen gefunden" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Keine Organisationen gefunden" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sozial" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonnieren" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} hat den Tag {tag} zum Datensatz {dataset} hinzugefügt" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} hat die Gruppe {group} aktualisiert" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} hat die Organisation {organization} aktualisiert" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} hat den Datensatz {dataset} aktualisiert" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "Diese Version ansehen" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} hat die Ressource {resource} des Datensatzes {dataset} aktualisiert" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} hat sein Profil aktualisiert" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} hat die Gruppe {group} gelöscht" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} hat die Organisation {organization} gelöscht" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} hat den Datensatz {dataset} gelöscht" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"{actor} hat die Ressource {resource} aus dem Datensatz {dataset} gelöscht" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "{actor} {activity_type}" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} folgt nun {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} folgt nun {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} folgt nun {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} hat die Gruppe {group} erstellt" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} hat die Organisation {organization} erstellt" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} hat den Datensatz {dataset} erstellt" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" +"{actor} hat die Ressource {resource} dem Datensatz {dataset} hinzugefügt" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} hat sich registriert" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} hat den Tag {tag} vom Datensatz {dataset} entfernt" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "Autor von {pkg_link} abändern auf {new_author} (war {old_author}) " + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "Autor von {pkg_link} auf {new_author} setzen" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "Gelöschter Autor von {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" +"Keine Felder wurden aktualisiert. Bitte Metadaten-Änderung ansehen für " +"Details" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"Autor-Email von {pkg_link} abändern auf {new_author_email} (war " +"{old_author_email}) " + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "Autor-Email von {pkg_link} ändern zu {new_author_email}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "Gelöschte Autor-Email von {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "Ressource {resource_link} gelöscht von {pkg_link}" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" +"Wert des Feldes{key} geändert zu {value} in\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" +"Feld {key} hinzugefügt mit dem Wert {value} zu\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "Feld {key} hinzugefügt zu {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "Folgende Felder wurden zu {pkg_link} hinzugefügt" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} mit dem Wert {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"Wert des Feldes {key} wurde geändert zu {new_val} (hatte den " +"Wert {old_val}) in {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" +"Wert des Feldes {key} geändert zu {new_val} in {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "Feld {key} gelöscht von {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "Folgende Felder wurden von {pkg_link} gelöscht " + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" +"Die Lizenz von {pkg_link} wurde geändert zu {new_link} (war vorher " +"{old_link})" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" +"Die Lizenz von {pkg_link} wurde geändert zu {new_link} (war vorher " +"{old_title})" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" +"Die Lizenz von {pkg_link} wurde geändert zu {new_title} (war vorher " +"{old_link})" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" +"Die Lizenz von {pkg_link} wurde geändert zu {new_title} (war vorher " +"{old_title})" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"Der Verwalter von {pkg_link} wurde geändert zu {new_maintainer} (war vormals" +" {old_maintainer})" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "Verwalter wurde für {pkg_link} auf {new_maintainer} gesetzt" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "Verwalter wurde gelöscht von {pkg_link}" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" +"Die Email des Verwalters von {pkg_link} wurde geändert zu {new_email} (war " +"{old_email})" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "Die Email des Verwalters von {pkg_link} wurde geändert zu {new_email}" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "Die Email des Verwalters wurde von {pkg_link} gelöscht" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "{pkg_link} wurde von {old_link} nach {new_link} verschoben" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" +"Neue Datei wurde als Ressource {resource_link} in {pkg_link} hochtgeladen" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "Die neue Ressource {resource_link} wurde zu {pkg_link} hinzugefügt" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"Beschreibung von {pkg_link} wurde von
{old_notes}
in
{new_notes}
geändert" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"Beschreibung von {pkg_link} wurde auf
{new_notes}
geändert" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "Beschreibung von {pkg_link} gelöscht" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" +"{pkg_link} wurde von Organisation {old_org_link} zur Organisation " +"{new_org_link} verschoben" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "{pkg_link} wurde in Organisation {old_org_link} gelöscht" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "{pkg_link} wurde zur Organisation {new_org_link} hinzugefügt" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "Sichtbarkeit von {pkg_link} wurd auf {visibility} gesetzt" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"Beschreibung der Resource {resource_link} in {pkg_link} wurde auf
{new_desc}
geändert" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "Beschreibung der Ressource {resource_link} in {pkg_link} gelöscht" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"Beschreibung der Ressource {resource_link} in {pkg_link} wurde von
{old_desc}
in
{new_desc}
geändert" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Feld {key} hinzugefügt mit dem Wert {value} zur Ressource " +"{resource_link} in {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" +"Feld {key} hinzugefügt zur Ressource {resource_link} in {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" +"Die folgenden Felder wurden zur Ressource {resource_link} in {pkg_link} " +"hinzugefügt" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" +"Feld {key} wurde von der Ressource {resource_link} in {pkg_link} " +"entfernt" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" +"Die folgenden Felder wurden von der Ressource {resource_link} in {pkg_link} " +"entfernt" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"Wert des Feldes {key} der Resource {resource_link} wurde geändert zu " +"{new_val} (hatte den Wert {old_val}) in {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Wert des Feldes {key} wurde geändert zu {new_val} (hatte den " +"Wert {old_val}) in der Ressource {resource_link} in {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" +"Feld {key} wurde von der Ressource {resource_link} in {pkg_link} " +"entfernt" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" +"Format der Ressource {resource_link} wurde geändert zu {format_link} in " +"{pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"Format der Ressource {resource_link} wurde auf {new_format_link} geändert " +"(war bisher {old_format_link}) in {pkg_link}" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"Ressource {old_resource_link} wurde umbenannt zu {new_resource_link} in " +"{pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "Stichwort {tag_link} von {pkg_link} entfernt" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "Folgende Schlagworte wurden von {pkg_link} entfernt" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "{tag_link}" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "Stichwort {tag_link} zu {pkg_link} hinzugefügt" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "Folgende Stichworte zu {pkg_link} hinzugefügt" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "Überschrift geändert zu: {title_link} (alte Überschrift: {old_title})" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" +"Die Quellen-URL von {pkg_link} wurde von {old_link} zu {new_link} geändert" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "Die Quellen-URL von {pkg_link} wurde entfernt" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "Die Quellen-URL von {pkg_link} wurde zu {new_link} geändert" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" +"Die Version von {pkg_link} wurde zu {new_version} geändert (vorherige " +"Version war {old_version})" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "Die Version von {pkg_link} wurde entfernt" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "Die Version von {pkg_link} wurde zu {new_version} geändert" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Tags durchsuchen" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "API Token erzeugen" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "API Token" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "Sie haben noch keine API Token erstellt." + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nachrichten-Feed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Meine Datensätze" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Meine Organisationen" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Meine Gruppen" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivitäten von Elementen, denen ich folge" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Sie haben noch keine Datensätze erstellt." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Jetzt einen erstellen?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Sie sind kein Mitglieder einer Gruppe" + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Sie sind kein Mitglied einer Organisation." + +#: 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 "Benutzer" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informationen zum Benutzerkonto" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Ihr Profil teilt anderen CKAN-Nutzern mit, wer Sie sind und was Sie tun." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Änderungsdetails" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Vollständiger Name" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "Erika Mustermann" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Ein paar Informationen zu dir" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Profilbild" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "Profilbild-URL" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Kennwort ändern" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Sysadmin Kennwort" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Passwort" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Passwort wiederholen" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Sind sie sicher, dass Sie diesen Benutzer löschen wollen?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Sind Sie sicher, dass Sie den API-Key erzeugen wollen?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "API-Key nochmals erzeugen" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Profil aktualisieren" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle Benutzer" + +#: 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 "Anmeldung" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Benötigen Sie ein Benutzerkonto?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Dann registrieren Sie sich, es dauert nur eine Minute." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Erstelle ein Benutzerkonto" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Haben Sie Ihr Kennwort vergessen?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Kein Problem, nutzen Sie unser Formular um Ihr Passwort zurückzusetzen." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Passwort vergessen?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Abgemeldet" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Sie sind jetzt abgemeldet." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Sie sind schon als {user} angemeldet." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Abmelden" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Passwort merken" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Sie sind schon angemeldet" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Sie müssen sich abmelden, bevor Sie sich mit einem anderen Benutzerkonto " +"anmelden können." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Jetzt abmelden" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrierung" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Erstelle ein Benutzerkonto" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Warum registrieren?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Erstelle Datensätze, Gruppen und mehr spannende Dinge" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Benutzername" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Vollständiger Name" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Erstelle Benutzerkonto" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Passwort zurücksetzen" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Passwort zurücksetzen" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Der Benutzername kann auch geändert werden. Später nicht mehr." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Passwort aktualisieren" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Wie funktioniert das?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Geben Sie einfach Ihr neues Passwort ein und wir aktualisieren Ihr " +"Benutzerkonto" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Benutzer hat keine Datensätze erstellt." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Sie haben keine Biographie angegeben." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Dieser Nutzer hat keine Biographie." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Das heißt, nur Sie können dies sehen" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Mitglied seit" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API-Schlüssel" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Passwort zurücksetzen" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "Email oder Benutzername" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Anforderung zurücksetzen" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Geben Sie die Emailadresse oder den Benutzername in das Feld ein und wir " +"senden Ihnen eine Email mit einem Hyperlink zu einem neuen Passwort." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Token" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Letzter Zugriff" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "Aktionen" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "Zurückziehen" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivität von:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Suche Liste..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Sie folgen keinen Inhalten" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Keine Follower" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Suche Nutzer" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "Massenlöschung beendet" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "Erfolg" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "Parameter u\"{parameter_name}\" ist kein Integer" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Aktivität nicht gefunden" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "Unberechtigt, die Activitätsdaten zu sehen" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "Details zu diesen Datensatz-Aktivitäten sind nicht verfügbar" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "Nicht leseberechtigt für dieses Paket" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "Nicht leseberechtigt für Mitmacher {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "Keine Löschberechtigung für Mimacher {]" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "Benutzer wurde von Mitmacher entfernt" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "Nicht Änderungsberechtigt für Mitmacher {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Benutzer zu Mitmachern hinzugefügt" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "Keine Leseberechtigung für API Token" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "Keine Schreibberechtigung für API Token" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"Das API-Token wurde erstellt: {token} {copy}
Bitte jetzt kopieren, es kann danach nicht " +"mehr angezeigt werden!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "Nicht berechtigt, um API Token zurückzuziehen" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Das Kennwort muss mindestens 8 Zeichen enthalten." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Umleitung auf externe Seite ist nicht erlaubt" diff --git a/ckan/i18n/el/LC_MESSAGES/ckan.po b/ckan/i18n/el/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..4a0a75cf25d --- /dev/null +++ b/ckan/i18n/el/LC_MESSAGES/ckan.po @@ -0,0 +1,5243 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Yannis Kaskamanidis , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Yannis Kaskamanidis , 2020\n" +"Language-Team: Greek (https://www.transifex.com/okfn/teams/11162/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Ήχος" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "URL ήχου" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"π.χ. http://example.com/audio.mp3 (εάν είναι κενό, χρησιμοποιεί το url του " +"πόρου)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Ο περιηγητής διαδικτύου που χρησιμοποιείτε δεν υποστηρίζει το στοιχείο " +"ήχου . Μην ανησυχείτε, όμως, μπορείτε να το κατεβάσετε ." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Δεν βρέθηκε πόρος" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Δεν επιτρέπεται να δείτε αυτή τη σελίδα" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Ολοκληρώθηκε" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Εκκρεμεί" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Γίνεται υποβολή" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Σφάλμα" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Δε μεταφορτώθηκε ακόμα" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Μεταφόρτωση στο DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Σφάλμα μεταφόρτωσης:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Λάθος:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Ακολουθία σφαλμάτων" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Κατάσταση:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Τελευταία ενημέρωση" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ποτέ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Αρχείο καταγραφής μεταφόρτωσης" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Λεπτομέρειες" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Τέλος αρχείου καταγραφής" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Δεν βρέθηκε ο πόρος DataStore" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Το Λεξικό Δεδομένων αποθηκεύτηκε. Οποιαδήποτε παράκαμψη τύπου θα έχει " +"επίδραση όταν ο πόρος μεταφορτωθεί στο DataStore. " + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ο πόρος \"{0}\" δεν βρέθηκε." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Ο χρήστης {0} δεν έχει δικαίωμα επεξεργασίας του πόρου {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Αποκτήστε πρόσβαση σε δεδομένα πόρων μέσω ενός δικτυακού API με μεγάλες " +"δυνατότητες υποστήριξης ερωτημάτων" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Περισσότερες πληροφορίες στην κεντρική τεκμηρίωση του CKAN Data API και του " +"DataStore.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Σημεία πρόσβασης" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Η πρόσβαση στο API δεδομένων είναι δυνατή μέσω των παρακάτω ενεργειών στο " +"API ενεργειών του CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Δημιουργία" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Ενημέρωση / Εισαγωγή" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Ερώτημα" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Ερώτημα (μέσω γλώσσας SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Εκτέλεση ερωτήματος" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Παράδειγμα ερωτήματος (5 πρώτα αποτελέσματα)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Παράδειγμα ερωτήματος (αποτελέσματα που περιέχουν το λεκτικό 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Παράδειγμα εκτέλεσης ερωτήματος (με χρήση γλώσσας SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Παράδειγμα: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Ένα απλό αίτημα ajax (JSONP) προς το API δεδομένων με χρήση του jQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Παράδειγμα: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Αποθήκευση" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Πεδίο {num}" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Παράκαμψη τύπου" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Περιγραφή" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Λεξικό Δεδομένων" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Στήλη" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Τύπος" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Φορτώνει...." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Πίνακας" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Ευπροσάρμοστη προβολή" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Εμφάνισε τις Στήλες" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "Δοκιμή παραμετροποίησης" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Τελευταία τροποποίηση" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Custom Πεδίο Αύξουσα" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Custom Πεδίο Φθίνουσα" + +#: ckan/templates/group/read.html:17 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 "Δημοφιλή" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Αυτή είναι μια συμβολοσειρά που δεν έχει μεταφραστεί" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Η συγκεκριμένη ομάδα δεν έχει περιγραφή" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "ένα σύνολο δεδομένων" +msgstr[1] "{num} σύνολα δεδομένων" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Σύνολα δεδομένων" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Τα εργαλεία προεπισκόπησης του CKAN παρέχουν πλούσια λειτουργικότητα" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Ακόλουθοι" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Πηγές" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Εικόνα" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL εικόνας" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"π.χ. http://example.com/image.jpg (χρήση του url πόρου αν μείνει κενό)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Εξερεύνηση Δεδομένων" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Γράφημα" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Χάρτης" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Σφάλμα κατά τη φόρτωση της προβολής" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Η προβολή δεν μεταφορτωθηκε επιτυχώς" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "Το DataStore επέστρεψε ένα μήνυμα λάθους" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Το DataProxy επέστρεψε ένα μήνυμα λάθους" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Πλέγμα" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "π.χ,: 0 " + +#: 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 "π.χ,: 100" + +#: 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 "Ομάδα (Άξονας 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Σειρά (Άξονας 2)" + +#: 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 "Πεδίο GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Δημοφιλή Σύνολα Δεδομένων" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Μέση βαθμολογία" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Πλήθος αξιολογήσεων" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Χωρίς αξιολόγηση" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Μεγαλύτερες Ομάδες" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Ομάδα" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Αριθμός Συνόλων Δεδομένων" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Δεν υπάρχουν Ομάδες" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Κορυφαίες ετικέτες" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Όνομα ετικέτας" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Αριθμός Συνόλων Δεδομένων" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Χρήστες που δημιουργούν τα περισσότερα σύνολα δεδομένων" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Χρήστης" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Στατιστικά στοιχεία" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Περισσότερο επεξεργασμένα σύνολα δεδομένων" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Κείμενο" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Ιστότοπος" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL ιστότοπου" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "π.χ. http://example.com (χρήση του url πόρου αν μείνει κενό)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ο φυλλομετρητής σας δεν υποστηρίζει iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Άδεια λειτουργίας δεν βρέθηκε:%s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Διαχειριστής" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Συντάκτης" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Μέλος" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Απαιτείται ένας διαχειριστής συστήματος για τη διαχείριση." + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Τίτλος Ιστοσελίδας" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Στυλ" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Γραμμή οδηγιών ιστοσελίδας" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Λογότυπο οδηγίας ιστοσελίδας" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Σχετικά" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Κείμενο για τη σελίδα Σχετικά " + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Εισαγωγικό κείμενο" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Κείμενο στην αρχική σελίδα" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Προσαρμοσμένo CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Εισαγωγή προσαρμοσμένου css στην κεφαλίδα της σελίδας" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Αρχική σελίδα" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Δεν είναι δυνατή η εκκαθάριση του πακέτου %s καθως η συνδεόμενη αναθεώρηση " +"%s περιλαμβάνει μη διεγραμμένα πακέτα%s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Πρόβλημα εκκαθάρισης αναθεώρησης %s:%s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Εκκαθάριση ολοκληρώθηκε" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Η λειτουργία δεν υλοποιείται." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Αδύνατη Πρόσβαση" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Δεν βρέθηκε" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Λάθος αίτημα" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Όνομα ενέργειας δεν είναι γνωστό:%s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Λάθος JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Λάθος αίτημα δεδομένων: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Δεν βρέθηκε η Ομάδα" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Ο Φορέας δε βρέθηκε" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Λανθασμένος τύπος ομάδας" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Φορείς" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Ομάδες" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Ετικέτες" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Τύποι" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Άδειες" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Ο χρήστης %r δεν έχει δικαίωμα επεξεργασίας του %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Δεν υπάρχει εξουσιοδότηση για μαζική ενημέρωση" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε μια Ομάδα." + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Σφάλμα ακεραιότητας" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Ο χρήστης %r δεν έχει εξουσιοδότηση να επεξεργαστεί %s δικαιώματα" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Δεν έχετε δικαίωμα να διαγράψετε την ομάδα %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Ο Φορέας έχει διαγραφεί." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Η Ομάδα έχει διαγραφεί." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s έχει διαγραφεί." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" +"Ο χρήστης %r δεν είναι εξουσιοδοτημένος να επεξεργάζεται τα μέλη του %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Μη εξουσιοδοτημένος για τη δημιουργία μελών της ομάδας %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Δεν έχετε εξουσιοδότηση να προσθέσετε μέλος στην ομάδα %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε μέλη από την ομάδα %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Το μέλος της ομάδας έχει διαγραφεί" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Θα πρέπει να επιλέξτε δύο εκδόσεις πριν κάνετε σύγκριση" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Ιστορικό Εκδόσεων Ομάδας CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Πρόσφατες αλλαγές στη CKAN Ομάδα: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Μήνυμα Λογαριασμού:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Ακολουθείτε το {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Δεν ακολουθείτε το {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Χωρίς δικαιώματα θέασης των ακολούθων %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Αυτή η ιστοσελίδα είναι εκτός δικτύου.Η βάση δεδομένων δεν έχει " +"αρχικοποιηθεί." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Παρακαλούμε ενημερώστε το προφίλ σας και προσθέστε τη " +"διεύθυνση ηλεκτρονικού ταχυδρομείου σας." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +" %s χρησιμοποιείστε τη διεύθυνση ηλεκτρονικού ταχυδρομείου σας εάν θέλετε να" +" επαναφέρετε τον κωδικό πρόσβασής σας." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Μη έγκυρο ερώτημα: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Η παράμετρος \"{parameter_name}\" δεν είναι ακέραιος αριθμός" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Το Σύνολο Δεδομένων δεν βρέθηκε" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Μη έγκυρη μορφή αναθεώρησης:%r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Η προβολή συνόλων δεδομένων του τύπου \"{package_type}\" δεν υποστηρίζεται " +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Δεν έχετε δικαίωμα ανάγνωσης του πακέτου %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Ιστορικό Εκδόσεων CKAN Συνόλου Δεδομένων " + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Πρόσφατες αλλαγές στο CKAN Σύνολο Δεδομένων: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα πακέτο" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Μη εξουσιοδοτημένοι να αναβαθμίσετε σύνολα δεδομένων" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Δεν ήταν δυνατή η εύρεση του πόρου {id}." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πόρο δεδομένων" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε έναν πόρο" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε έναν πόρο για αυτό το πακέτο" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Δεν είναι δυνατή η προσθήκη πακέτου για αναζήτηση ευρετηρίου." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Δεν είναι δυνατή η ενημέρωση αναζήτησης ευρετηρίου." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Το συγκεκριμένο σύνολο δεδομένων έχει διαγραφεί." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε το πακέτο %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ο πόρος έχει διαγραφεί. " + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Δεν έχετε εξουσιοδότηση να διαγράψετε τον πόρο %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Δε βρέθηκε η προβολή του πόρου" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Δε βρέθηκαν δεδομένα πόρου" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Καμία λήψη δεν είναι διαθέσιμη" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Δεν έχετε εξουσιοδότηση να διαβάσετε το σύνολο δεδομένων %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Μη εξουσιοδοτημένοι να διαβάσετε πόρους %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Δεν έχετε εξουσιοδότηση να επεξεργαστείτε το συγκεκριμένο πόρο" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Δε βρέθηκε η προβολή" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Δε βρέθηκε ο τύπος της προβολής" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Δε βρέθηκε η Προβολή του πόρου" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Δεν έχει οριστεί προεπισκόπηση." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Ο χρήστης δεν βρέθηκε" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Δεν έχετε εξουσιοδότηση να εγγραφείτε ως χρήστης." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα χρήστη" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" +"Δεν έχετε εξουσιοδότηση να διαγράψετε τον χρήστη με την ταυτότητα " +"\"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Δεν έχει οριστεί χρήστης" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Δεν έχετε δικαίωμα επεξεργασίας του χρήστη %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Το προφίλ ενημερώθηκε" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Δεν έχετε εξουσιοδότηση να δημιουργήσετε ένα χρήστη %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Άκυρο κείμενο επιβεβαίωσης. Παρακαλώ δοκιμάστε ξανά." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Ο χρήστης \"%s\" έχει εγγραφεί αλλά είστε ακόμα συνδεδεμένοι ως \"%s\" από " +"πριν" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Δεν έχετε δικαίωμα επεξεργασίας χρηστών" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Ο κωδικός πρόσβασης που εισάγατε δεν είναι σωστός" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Παλιός κωδικός" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Εσφαλμένος κωδικός πρόσβασης" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Η σύνδεση απέτυχε. Λάθος όνομα χρήστη ή κωδικός πρόσβασης." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Δεν έχετε δικαίωμα αίτησης επαναφοράς κωδικού πρόσβασης." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Δεν έχετε δικαίωμα επαναφοράς του κωδικού πρόσβασης" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Άκυρο κλειδί επαναφοράς. Παρακαλώ δοκιμάστε ξανά." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ο κωδικός πρόσβασής σας έχει επαναφερθεί." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Ο κωδικός πρόσβασης πρέπει να έχει τουλάχιστον 4 χαρακτήρες." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Οι κωδικοί πρόσβασης που δώσατε δεν ταιριάζουν." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Πρέπει να δώσετε τον κωδικό πρόσβασης " + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Δεν βρέθηκε το στοιχείο" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} δεν βρέθηκε" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Όλα" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Προβολή" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} νέα δραστηριότητα από το {site_title}" +msgstr[1] "{n} νέες δραστηριότητες από το {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Μόλις τώρα" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Άγνωστος" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Πόρος δίχως όνομα" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Δημιουργήθηκε νέο σύνολο δεδομένων." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Επεξεργασία Πόρων." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Επεξεργασία ρυθμίσεων." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "μία προβολή" +msgstr[1] "{number} προβολές" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "μία πρόσφατη προβολή" +msgstr[1] "{number} πρόσφτατες προβολές" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Καμία διεύθυνση ηλεκτρονικού ταχυδρομείου παραλήπτη διαθέσιμη!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "φορέας" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "ομάδα" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Λείπει τιμή" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Το πεδίο εισαγωγής %(name)s δεν ήταν αναμενόμενο." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Παρακαλώ εισάγετε έναν ακέραιο αριθμό" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Πρέπει να είναι μια συμβολοσειρά σε κωδικοποίηση Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Μη έγκυρο πακέτο πόρου(ων) " + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Επιπλέον πληροφορίες" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Δεν υπάρχει ετικέτα λεξιλόγιο \"%s\" " + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Σύνολο Δεδομένων" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Δεν ήταν δυνατή η ανάλυση ως έγκυρου αρχείου JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Πρέπει να δώσετε το όνομα ενός φορέα" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Ο φορέας δεν υπάρχει" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Δεν είναι δυνατή η προσθήκη συνόλου δεδομένων σε αυτόν το φορέα." + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Άκυρος ακέραιος" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Πρέπει να είναι φυσικός αριθμός" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Πρέπει να είναι θετικός ακέραιος" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Λάθος μορφή ημερομηνίας " + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Δεν επιτρέπονται υπερσύνδεσμοι στο log_message" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Το σύνολο δεδομένων υπάρχει ήδη" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Πόρος" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Αυτό το όνομα της ομάδας ή το ID δεν υπάρχει." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Τύπος δραστηριότητας" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Τα ονόματα πρέπει να αποτελούνται από αλφαριθμητικά" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Αυτό το όνομα δεν μπορεί να χρησιμοποιηθεί" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Πρέπει να έχει τουλάχιστον %s χαρακτήρες" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr " Το όνομα πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Πρέπει να αποτελείται μόνο από πεζούς αλφαρηθμητικούς χαρακτήρες (ascii) και" +" αυτά τα σύμβολα: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Αυτό το URL είναι ήδη σε χρήση." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Το μήκος του ονόματος \"%s\" είναι μικρότερο από το ελάχιστο%s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Το μήκος του ονόματος \"%s\" είναι περισσότερο από το μέγιστο%s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Η έκδοση πρέπει να είναι κατ 'ανώτατο όριο των %i χαρακτήρων" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Διπλό κλειδί \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Το όνομα της ομάδας υπάρχει ήδη στην βάση δεδομένων" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Το μήκος του tag \"%s\" είναι μικρότερο από το ελάχιστο απαιτούμενο %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Το μήκος της ετικέτας \"%s\" είναι περισσότερο από το μέγιστο %i " + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Η ετικέτα \"%s\" πρέπει να αποτελείται από αλφαριθμητικούς χαρακτήρες ή " +"σύμβολα:-_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Η ετικέτα \"%s\" δεν μπορεί να περιέχει κεφαλαία γράμματα" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Τα ονόματα χρηστών πρέπει να αποτελούνται από αλφαριθμητικά" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Αυτό το όνομα σύνδεσης δεν είναι διαθέσιμο." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Αυτό το όνομα σύνδεσης δεν μπορεί να τροποποιηθεί." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Παρακαλώ εισάγετε και τους δύο κωδικούς πρόσβασης" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Οι κωδικοί πρόσβασης πρέπει να αποτελούνται από αλφαριθμητικά" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Ο κωδικός πρόσβασής σας πρέπει αν έχει τουλάχιστον 8 χαρακτήρες." + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Οι κωδικοί που δώσατε δεν ταιριάζουν" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Η επεξεργασία δεν επιτρέπεται, δεδομένου ότι μοιάζει με spam. Παρακαλούμε " +"αποφύγετε συνδέσεις στην περιγραφή σας." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Το μήκος του ονόματος πρέπει να είναι τουλάχιστον %s χαρακτήρες" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Αυτό το όνομα λεξιλογίου είναι ήδη σε χρήση." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Δεν μπορείτε να αλλάξετε την τιμή του κλειδιού από το%s στο%s. Αυτό το " +"κλειδί είναι μόνο για ανάγνωση." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Το Λεξιλόγιο Ετικέτας δεν βρέθηκε." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Η ετικέτα%s δεν ανήκει στο λεξιλόγιο%s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Κανένα όνομα ετικέτας" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Η ετικέτα %s ανήκει ήδη στο λεξιλόγιο%s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Παρακαλώ δώστε μια έγκυρη διεύθυνση URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "ο ρόλος δεν υπάρχει." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" +"Τα σύνολα δεδομένων που δεν ανήκουν σε φορέα δε μπορούν να είναι ιδιωτικά." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Δεν είναι λίστα" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Σςν είναι αλφαριθμητικό" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Αυτό το γονικό στοιχείο θα δημιουργούσε βρόχο στην ιεραρχία" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "Τα \"filter_fields\" και \"filter_values\" πρέπει να έχουν το ίδιο μέγεθος" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "Το \"filter_fields\" απαιτείται όταν το \"filter_values\" δεν είναι άδειο" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "Το \"filter_values\" απαιτείται όταν το \"filter_fields\" δεν είναι άδειο" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "There is a schema field with the same name" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Το email {email} δεν είναι σε έγκυρη μορφή" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Λείπει τιμή" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Προσπάθεια να δημιουργηθεί ένας φορέας ως ομάδα" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Πρέπει να δηλώσετε κάποιο id πακέτου ή όνομα(παράμετρος \"πακέτο\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Πρέπει να δώσετε μια βαθμολογία (παράμετρος \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Η βαθμολογία πρέπει να είναι ένας ακέραιος αριθμός" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Η βαθμολογία πρέπει να είναι μεταξύ %i και %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Σφάλμα κατά την αποστολή του μηνύματος πρόσκλησης, ο χρήστης δε " +"δημιουργήθηκε: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε χρήστες" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Δεν μπορείς να ακολουθήσεις τον εαυτό σου" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Ήδη ακολουθείτε τον {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε ένα σύνολο δεδομένων" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Ο χρήστης {username} δεν υπάρχει." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Πρέπει να είστε συνδεδεμένος για να ακολουθήσετε μια ομάδα" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" +"Ο οργανισμός δεν μπορεί να διαγραφεί όσο υπάρχουν ακόμα σύνολα δεδομένων που" +" του ανήκουν." + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "όχι id στα δεδομένα" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Αδύνατη η εύρεση λεξιλογίου \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Αδύνατη η εύρεση ετικέτας \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Πρέπει να είστε συνδεδεμένος για να σταματήσετε να ακολουθείτε κάτι." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Δεν ακολουθείτε τον {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Δεν βρέθηκαν πόροι." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Δεν ορίζεται αν χρησιμοποιείται η παράμετρος \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Πρέπει να είναι : pair(s)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Το πεδίο \"{field}\" δεν αναγνωρίστηκε στο resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Το πακέτο δεν βρέθηκε" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Το TaskStatus δε βρέθηκε." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Ο φορέας δεν βρέθηκε." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα δημιουργίας πακέτων" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των ομάδων" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση να προσθέσει σύνολο δεδομένων σε αυτόν " +"το φορέα" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Δεν έχει δοθεί το id του συνόλου δεδομένων, δεν μπορεί να ελεγθεί η " +"εξουσιοδότηση." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Δε βρέθηκε κανένα πακέτο για αυτόν τον πόρο, δεν μπορεί να γίνει έλεγχος στο" +" auth." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία πόρων στο σύνολο " +"δεδομένων %s." + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας αυτών των πακέτων" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία ομάδας." + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη δημιουργία φορέων" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Ο χρήστης {user} δεν έχει εξουσιοδότηση για τη δημιουργία χρηστών μέσω του " +"API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Δεν έχετε εξουσιοδότηση για τη δημιουργία χρηστών" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Δε βρέθηκε η ομάδα." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την προσθήκη μελών" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία της ομάδας %s." + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του πόρου %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Δε βρέθηκε η προβολή πόρους, δεν είναι δυνατός ο έλεγχος εξουσιοδότησης" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της σχέσης %s." + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή ομάδων" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή της ομάδας %s." + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή φορέων" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του φορέα %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για τη διαγραφή του task_status." + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Δεν έχετε εξουσιοδότηση" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα ανάγνωσης αυτών των πακέτων" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση του πακέτου %s." + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση του πόρου %s." + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανάγνωση της ομάδας %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Πρέπει να είστε συνδεδεμένος για να έχετε πρόσβαση στον Πίνακα βασικών " +"λειτουργιών." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του πακέτου %s." + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Ο χρήστης %s δεν έχει δικαίωμα επεξεργασίας του πόρου %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης του πακέτου " +"%s." + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του οργανισμού %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της ομάδας %s." + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία των αδειών της " +"ομάδας %s." + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Απαιτείται σύνδεση για την επεξεργασία χρηστών" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την επεξεργασία του χρήστη %s." + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Ο χρήστης {0} δεν έχει εξουσιοδότηση να ενημερώσει το χρήστη {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την αλλαγή κατάστασης της " +"επανάληψης." + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα task_status." + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Ο χρήστης %s δεν έχει εξουσιοδότηση για την ανανέωση του πίνακα " +"term_translation." + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Η άδεια δεν έχει καθοριστεί" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Αναφορά" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Αναφορά - Παρόμοια διανομή" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "Άδεια Ελεύθερης Τεκμηρίωσης GNU" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Άλλο (Ανοιχτό)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Άλλο (Δημόσιο Πεδίο)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Άλλο (Χαρακτηριστικό)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Μη Εμπορική Χρήση" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Άλλο (Μη εμπορικό)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Άλλο (Κλειστό)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "εξαρτάται από %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "αποτελεί εξάρτηση της %s " + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "προέρχεται από %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "οδηγεί σε %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "σύνδεση προς %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "είναι συνδεδεμένο από %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "είναι παιδί τού %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "είναι γονιός τού %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "αδελφός με %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Δεν υπάρχουν δεδομένα από το API για αυτόν τον πόρο" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Αποτυχία φόρτωσης πληροφοριών από το API δεδομένων" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Ξεκινήστε να πληκτρολογείτε..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Δεν βρέθηκε" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +"Η καταχώρηση είναι πολύ μικρή, πρέπει να είναι τουλάχιστον ένας χαρακτήρας" +msgstr[1] "" +"Η καταχόρηση είναι πολύ μικρή, πρέπει να είναι το λιγότερο %(num)d " +"χαρακτήρες" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Υπάρχουν μη αποθηκευμένες αλλαγές στην φόρμα" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Παρακαλώ Επιβεβαιώστε " + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Είστε βέβαιοι ότι θέλετε να εκτελέσετε αυτή την ενέργεια;" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Επιβεβαίωση" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Ακύρωση" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Διακοπή ακολούθησης" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Ακολουθήστε" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Σύνδεσμος" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Σύνδεσμος σε URL (μπορείτε να παρέχετε σύνδεσμο σε προγραμματιστικη διεπαφή " +"- API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Ανεβάστε" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Αφαίρεση" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Μεταφόρτωση αρχείου στον υπολογιστή σας" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Αρχείο" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Αποθήκευση ταξινόμησης" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Αποθήκευση..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Φορτώστε ένα αρχείο" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Παρουσιάστε ένα λάθος" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Αδυναμία μεταφόρτωσης του αρχείου" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Αδυναμία επικύρωσης της μεταφόρτωσης" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "O πόρος μεταφορτώθηκε επιτυχώς" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Αδυναμία λήψης δεδομένων του αρχείου μεταφόρτωσης" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Προσθήκη φίλτρου" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Επιλέξτε ένα πεδίο" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Επεξεργασία" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Προβολή περισσοτέρων" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Απόκρυψη" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Σφάλμα %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Σχετικά με {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Λειτουργεί με CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Ρυθμίσεις Διαχειριστή Συστήματος" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Δείτε το προφίλ" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Πίνακας λειτουργιών (%(num)d νέο στοιχείο)" +msgstr[1] "Πίνακας λειτουργιών (%(num)d νέα στοιχεία)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Πίνακας βασικών λειτουργιών" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Αποσύνδεση" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Συνδεθείτε" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Εγγραφείτε" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Σύνολα Δεδομένων" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Αναζήτηση Συνόλων Δεδομένων" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Αναζήτηση" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Αναζήτησε σύνολα δεδομένων" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Μεταπήδηση στο περιεχόμενο" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Απορρίματα" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Λογότυπο ιστοσελίδας" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Είστε σίγουροι ότι θέλετε να επαναφέρετε τις ρυθμίσεις ;" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Επαναφορά" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Ενημέρωση Παραμετροποίησης" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr " Επιλογές ρυθμίσεων" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Τίτλος Ιστοσελίδας: Αυτός είναι ο τίτλος του καταλόγου." +" Εμφανίζεται σε διάφορα σημεία σε ολόκληρο τον ιστότοπο.

" +"

Στυλ: Επιλέξτε από μια λίστα με απλές παραλλαγές του " +"βασικού συνδυασμού χρωμάτων, προκειμένου να έχετε άμεσα ένα προσαρμοσμένο " +"θέμα σε λειτουργία.

Λογότυπο Ιστοσελίδας: Αυτό είναι" +" το λογότυπο που εμφανίζεται στην κεφαλίδα όλων των προτύπων αυτής του " +"καταλόγου.

Σχετικά: Αυτό το κείμενο θα εμφανίζεται " +"στη σελίδα Σχετικά του καταλόγου.

" +"

Εισαγωγικό Κείμενο: Αυτό το κείμενο θα εμφανίζεται στην " +"αρχική σελίδα του καταλόγου ως καλωσόρισμα " +"στους επισκέπτες.

Προσαρμοσμένο CSS: Αυτή είναι μια " +"δέσμη εντολών CSS, η οποία εμφανίζεται στην ετικέτα κάθε" +" σελίδας. Αν θέλετε να προσαρμόσετε τα πρότυπα σε μεγαλύτερο βαθμό σας " +"συνιστούμε την ανάγνωση του " +"εγχειριδίου.

Αρχική Σελίδα: Η επιλογή αφορά σε " +"προκαθορισμένες διατάξεις των λειτουργικών μονάδων που εμφανίζονται στην " +"αρχική σελίδα σας.

" + +#: 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" + +#: 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 "" +"

Ώς χρήστης sysadmin έχετε πλήρη έλεγχο σε αυτή την πλατφόρμα CKAN. " +"Συνεχίστε με προσοχή!

Για καθοδήγηση σχετικά με τη χρήση των " +"λειτουργειών sysadmin, δείτε τον οδηγό sysadmin του CKAN

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Επιβεβαίωση Διαγραφής" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Κάντε κλίκ για περισσότερες πληροφορίες" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Δεν βρέθηκε ενότητα χειρισμού για τον τύπο δεδομένων:%(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Κανονικό" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Kαθορισμένη Είσοδος" + +#: 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/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 "Markdown" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Προσθήκη μιας ομάδας" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Φόρμα Ομάδας" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε την ομάδα - {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 "Είστε σίγουροι ότι θέλετε να διαγράψετε το μέλος - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Προσθήκη Μέλους" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Υπάρχων χρήστης" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Αν θέλετε να προσθέσετε έναν υπάρχοντα χρήστη, αναζητήστε το όνομα χρήστη " +"παρακάτω." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ή" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Νέος Χρήστης" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Αν θέλετε να προσκαλέσετε έναν νέο χρήστη, εισάγετε τη διεύθυνση " +"ηλεκτρονικού ταχυδρομείου του." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Ρόλος" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το μέλος;" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Διαγραφή" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Τι είναι οι ρόλοι;" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Αναζήτηση συνόλων δεδομένων" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Σύνολα δεδομένων στην ομάδα : {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Όνομα" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Η Ομάδα μου" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Λίγες πληροφορίες σχετικά με την ομάδα...." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτήν την ομάδα ;" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Αποθήκευση ομάδας" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Προβολή {name}" + +#: 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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Διαγραμμένα" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 είναι η κορυφαία στον κόσμο πλατφόρμα ανοιχτού κώδικα για " +"ανοιχτά δεδομένα.

Το CKAN είναι μία ολοκληρωμένη λύση λογισμικού που " +"είναι έτοιμο για χρήση και το οποίο καθιστά τα δεδομένα προσβάσιμα και " +"εύχρηστα – καθώς παρέχει εργαλεία για τον εξορθολογισμό της δημοσίευσης, του" +" διαμοιρασμού, της εύρεσης και της χρήσης δεδομένων (συμπεριλαμβανομένης της" +" αποθήκευσης δεδομένων και της παροχής προγραμματισικών διεπαφών δεδομένων " +"με μεγάλες δυνατότητες). Το CKAN απευθύνεται σε παρόχους δεδομένων (εθνικές " +"και περιφερειακές κυβερνήσεις, εταιρείες και οργανισμούς) που θέλουν να " +"καταστήσουν τα δεδομένα τους ανοιχτά και διαθέσιμα.

Το CKAN " +"χρησιμοποιείται από κυβερνήσεις και ομάδες χρηστών σε όλο τον κόσμο και " +"τροφοδοτεί μια πληθώρα από επίσημες και κοινοτικές πύλες συμπεριλαμβανομένων" +" και πυλών για τοπικές, εθνικές, και διεθνείς κυβερνήσεις, όπως του Ηνωμένου" +" Βασιλείου data.gov.uk και της Ευρωπαϊκής" +" Ένωσης publicdata.eu, της Βραζιλίας " +"dados.gov.br, οι πύλες των κυβερνήσεων " +"της Ολλανδίας και των Κάτω Χωρών, καθώς και ιστοσελίδες για πόλεις και " +"δήμους στις ΗΠΑ, στο Ηνωμένο Βασίλειο, στην Αργεντινή, τη Φινλανδία και " +"άλλες χώρες.

CKAN: http://ckan.org/
Περιήγηση στο CKAN: http://ckan.org/tour/
Επισκόπηση " +"Χαρακτηριστικών: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +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 "{0} στατιστικά" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "Σύνολο Δεδομένων" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "σύνολα δεδομένων" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "φορείς" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "ομάδες" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Το πεδίο απαιτεί συμπλήρωση" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Μπορείτε να χρησιμοποιήσετε μορφοποίηση Markdown here" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Τιμή" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Προσαρμοσμένο" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Η φόρμα περιέχει μη έγκυρες εγγραφές:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Απαιτούμενο πεδίο" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL εικόνας" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Εκκαθάριση Μεταφόρτωσης" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr " βρέθηκε για \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Δεν βρέθηκαν σύνολα δεδομένων βρέθηκαν για \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Ορισμός ως Δημόσιο" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Ορισμός ως Ιδιωτικό" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Προσχέδιο" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Ιδιωτικό" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Είστε σίγουροι ότι θέλετε να διαγράψετε τον Φορέα - {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 "Επεξεργασία Φορέα" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Όνομα χρήστη" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Διεύθυνση Email" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Ενημέρωση Μέλους" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} μέλος" +msgstr[1] "{count} μέλη" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Σύνολα δεδομένων στο φορέα: {group}" + +#: 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 χρησιμοποιούνται για τη δημιουργία, διαχείριση και " +"δημοσίευση συλλογών συνόλων δεδομένων. Οι χρήστες μπορούν να έχουν " +"διαφορετικούς ρόλους μέσα σε έναν Φορέα, αναλόγως με το επίπεδο " +"εξουσιοδότησης που έχουν αναφορικά με τη δημιουργία, επεξεργασία και " +"δημοσίευση. " + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Είσαι σίγουρος ότι θέλεις να διαγράψεις αυτό τον Οργανισμό; Σημείωση*: Η " +"διαγραφή Οργανισμού δεν μπορεί αν εκτελεστεί ενόσω δημόσια ή ιδιωτικά σύνολα" +" δεδομένων ανήκουν στον Οργανισμό. " + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Αποθήκευση Φορέα" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Προβολή {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 "" +"Ένα σύνολο δεδομένων αποτελεί μια συλλογή πόρων (όπως αρχεία), μαζί με μια " +"περιγραφή και άλλες πληροφορίες, διαθέσιμη σε συγκεκριμένο URL. Τα σύνολα " +"δεδομένων παρέχονται ως αποτέλεσμα της αναζήτησης που πραγματοποιούν οι " +"χρήστες." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Αλλαγές" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" +"Είστε σίγουροι ότι θέλετε να διαγράψετε το σύνολο δεδομένων - {name}? ;" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον πόρο - {name} ;" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Προβολή συνόλου δεδομένων" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Επεξεργασία μεταδεδομένων" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Προεπισκόπηση" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"Οι οπτικοποιήσεις του Data Explorer μπορεί να είναι αργές και αναξιόπιστες, " +"εκτός εάν η επέκταση DataStore είναι ενεργοποιημένη. Για περισσότερες " +"πληροφορίες, παρακαλώ συμβουλευτείτε την τεκμηρίωση του Data " +"Explorer . " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Προσθήκη" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Επεξεργασία πόρου" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Προβολές" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Σημείο τερματισμού API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Μετάβαση στον πόρο" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Πηγή : %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" +"Δεν έχει δημιουργηθεί ακόμα Προβολή για την προεπισκόπηση αυτού του πόρου" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Δε βλέπετε τις αναμενόμενες προβολές?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Λόγοι που ενδεχομένως δε βλέπετε τις αναμενόμενες Προβολές:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" +"Δεν έχει δημιουργηθεί Προβολή κατάλληλη για την προεπισκόπηση αυτού του " +"πόρου" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Ο διαχειριστής της ιστοσελίδας μπορεί να μην έχει ενεργοποιήσει τα σχετικά " +"πρόσθετα οπτικοποιήσεων. " + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Αν μια προβολή απαιτεί το πρόσθετο DataStore, τότε το πρόσθετο μπορεί να μην" +" έχει ενεργοποιηθεί ή τα δεδομένα να μην έχουν αποθηκευθεί στο DataStore ή " +"δεν έχει ολοκληρωθεί η επεξεργασία των δεδομένων στο DataStore." + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Πρόσθετες Πληροφορίες" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Πεδίο" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Προσφάτως ενημερωμένα δεδομένα" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "Άγνωστος" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Προσφάτως ενημερωμένα μεταδεδομένα" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Δημιουργήθηκε" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Διαμόρφωση" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Άδεια" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Νέα προβολή" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Δεν υποστηρίζονται προβολές για τον πόρο" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Προσθήκη νέου πόρου" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Αυτό το σύνολο δεδομένων δεν περιέχει δεδομένα, γιατί δεν προσθέτεις κάποια;

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Έγγραφα" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +"Μπορείτε επίσης να αποκτήσετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας το " +"%(api_link)s (δείτε %(api_doc_link)s) η κατεβάζοντας ένα %(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 "" +"Μπορείτε επίσης να έχετε πρόσβαση σε αυτό το μητρώο χρησιμοποιώντας το " +"%(api_link)s (δείτε %(api_doc_link)s)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Κατάσταση" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Τελευταία ενημέρωση" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"πρέπει να δημιουργήσετε ένα φόρέα πριν από τη δημιουργία ενός συνόλου " +"δεδομένων" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Δημιουργία νέου φορέα" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Δεν υπάρχουν φορείς στους οποίους μπορείτε να αναθέσετε αυτό το σύνολο " +"δεδομένων" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Ζητήστε από το διαχειριστή να δημιουργήσει ένα φορέα προκειμένου να " +"συνεχίσετε." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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 "π.χ my-dataset" + +#: 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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Ορισμούς Αδειών και επιπλέον πληροφορίες μπορείτε να βρείτε στο opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Φορέας" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Κανένας φορέας" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Ορατότητα" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Δημόσιο" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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 "" +"Η Άδεια Χρήσης Δεδομένων που επέλεξες παραπάνω, έχει ισχύ μόνο στα " +"περιεχόμενα οποιουδήποτε αρχείου πόρου που προσθέτεις στο σύνολο δεδομένων. " +"Καταθέτοντας αυτή την φόρμα, συμφωνείς στη διάθεση των μεταδεδομένων" +" που εισάγεις στη φόρμα υπό την άδεια Open Database " +"License." + +#: 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:43 +msgid "Next: Add Data" +msgstr "Προσθέστε δεδομένα" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Θοδωρής Παπαδόπουλος" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email δημιουργού" + +#: 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 "thodoris@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email Υπευθύνου Συντήρησης" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Ενημέρωση Πόρου" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Δεδομένα" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "π.χ. Τιμές χρυσού Ιανουάριος 2013" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Μερικές χρήσιμες σημειώσεις για τα δεδομένα" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "π.χ. CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" +"Θα ερμηνευθεί αυτόματα. Μπορείτε να το αφήσετε κενό εφόσον το επιθυμείτε" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "π.χ. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Μέγεθος αρχείου" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "π.χ. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "Πρότυπο MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "π.χ. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον πόρο ;" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Προηγούμενο" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Αποθήκευση & προσθήκη άλλου" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Εξερευνήστε" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Περισσότερες πληροφορίες" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Πλήρης Οθόνη" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Ενσωματώστε" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Αυτή η οπτικοποίηγση πόρου δεν είναι διαθέσιμη αυτή τη στιγμή." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Ενσωμάτωση προβολής πόρου" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Μπορείς να αντιγράψεις και επικολλήσεις τον κώδικα ενσωμάτωσης σε " +"οποιοδήποτε CMS ή λογισμικό Blog που υποστηρίζει raw HTML." + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Πλάτος" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Ύψος" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Κωδικός" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Προεπισκόπηση Πόρου" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Δεδομένα και Πόροι" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Προσθήκη συνόλου δεδομένων." + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Κατάσταση Datapusher: {status}" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL Παρακαολούθησης" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Εμφάνιση Περισσοτέρων {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Δείξε Μόνο Δημοφιλή {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Δεν υπάρχουν {facet_type} που ταιριάζουν με αυτή την αναζήτηση" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Αρχική" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Γλώσσα" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Πάμε" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Μη καθορισμένη άδεια" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Αυτό το σύνολο δεδομένων ικανοποιεί τον Ανοιχτό Ορισμό." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Ταξινόμηση κατά" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Φίλτρα Αποτελεσμάτων" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

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

" + +#: ckan/templates/snippets/search_form.html:87 +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] "ένα σύνολό o δεδομένων βρέθηκε e για \"{query}\"" +msgstr[1] "{number} σύνολα δεδομένων βρέθηκαν για \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Δεν βρέθηκαν σύνολα δεδομένων για \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "βρέθηκε ένα σύνολο δεδομένων" +msgstr[1] "βρέθηκαν {number} σύνολα δεδομένων" + +#: 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] "βρέθηκε μια ομάδα για \"{query}\"" +msgstr[1] "βρέθηκαν {number} ομάδες για \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Δεν βρέθηκαν ομάδες για \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "βρέθηκε μία ομάδα" +msgstr[1] "βρέθηκαν {number} ομάδες" + +#: 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] "ένας φορέας βρέθηκε για \"{query}\"" +msgstr[1] "{number} φορείς βρέθηκαν για \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Δεν βρέθηκαν φορείς για \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "Βρέθηκε ένας φορέας" +msgstr[1] "Βρέθηκαν {number} φορείς" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "ο {actor} πρόσθεσε την ετικέτα {tag} στο σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ενημέρωσε την ομάδα {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "ο {actor} ενημέρωσε το φορέα {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "ο {actor} ενημέρωσε το σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ενημέρωσε τον πόρο {resource} στο σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} ενημέρωσαν τα προφίλ τους" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} διέγραψε την ομάδα {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "ο {actor} διέγραψε το φορέα {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "ο {actor} διέγραψε το σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"ο {actor} διέγραψε τον πόρο {resource} από το σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} άρχισε να ακολουθεί το {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} άρχισε να ακολουθεί την ομάδα {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} άρχισε να ακολουθεί τον χρήστη {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} δημιούργησε την ομάδα {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} δημιούργησε το φορέα {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} δημιούργησε το σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} πρόσθεσε τον πόρο {resource} στο σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} εγγράφηκε" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} αφαίρεσε την ετικέτα {tag} από το σύνολο δεδομένων {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Αναζήτηση Ετικετών" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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:10 +msgid "Full name" +msgstr "Πλήρες όνομα" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "π.χ Θοδωρής Παπαδόπουλος" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "π.χ. thodoris@example.gr" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Λίγα λόγια για εσάς..." + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Εγγραφείτε στο e-mail ειδοποιήσεων" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Αλλαγή κωδικού πρόσβασης" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Κωδικός Διαχειριστή" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Κωδικός πρόσβασης" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Επιβεβαίωση κωδικού πρόσβασης" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον Xρήστη;" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" +"Είστε σίγουροι ότι θέλετε να επαναδημιουργήσετε το κλειδί της " +"προγραμματιστικής διεπαφής εφαρμογών (API)?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Επαναδημιουργία κλειδιού προγραμματιστικής διεπαφής (API)" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Είστε ήδη συνδεδεμένος ως {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Αποσύνδεση" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Να με θυμάσαι" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Είστε ήδη συνδεδεμένος" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Θα πρέπει να αποσυνδεθείτε για να μπορέσετε να συνδεθείτε με έναν άλλο " +"λογαριασμό." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Δημιουργείστε έναν λογαριασμό" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Επαναφορά Κωδικού Πρόσβασης" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Επαναφορά Κωδικού Πρόσβασης" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" +"Μπορείς να αλλάξεις επίσης το όνομα χρήστη. Δεν μπορεί να τροποποιηθεί " +"αργότερα." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Ενημέρωση Κωδικού Πρόσβασης" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Πως λειτουργεί;" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Απλά εισάγετε ένα νέο κωδικό πρόσβασης και θα ενημερώσουμε το λογαριασμό σας" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Ο χρήστης δεν έχει δημιουργήσει κάποιο σύνολο δεδομένων" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Δεν έχουν παράσχει στοιχεία σχετικά με εσάς." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Ο χρήστης δεν έχει δώσει στοιχεία για τον εαυτό του" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Αυτό σημαίνει ότι μόνο εσείς μπορείτε να δείτε αυτό" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Μέλος από" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Επαναφορά κωδικού πρόσβασης" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Αναζήτηση χρηστών" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Ο κωδικός σύνδεσης πρέπει να αποτελείτε από τουλάχιστον 8 χαρακτήρες." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Η επανακτεύθυνση σε εξωτερικούς ιστοτόπους δεν επιτρέπεται." diff --git a/ckan/i18n/en_AU/LC_MESSAGES/ckan.po b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..69ab3db4c34 --- /dev/null +++ b/ckan/i18n/en_AU/LC_MESSAGES/ckan.po @@ -0,0 +1,5126 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: English (Australia) (https://www.transifex.com/okfn/teams/11162/en_AU/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: en_AU\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resource not found" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Not authorised to see this page" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complete" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pending" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submitting" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Not Uploaded Yet" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload to DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Last updated" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Never" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload Log" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "End of log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore resource not found" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resource \"{0}\" was not found." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "User {0} not authorised to update resource {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Access resource data via a web API with powerful query support" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Endpoints" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Create" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Update / Insert" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Query" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Querying" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Query example (first 5 results)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Query example (results containing 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Query example (via SQL statement)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Example: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Example: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Save" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Description" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Table" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevance" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Name Ascending" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Name Descending" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Last Modified" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Custom Field Ascending" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Custom Field Descending" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Custom Text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "custom text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Country Code" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "custom resource text" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "This group has no description" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Dataset" +msgstr[1] "{num} Datasets" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Datasets" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN's data previewing tool has many powerful features" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Followers" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resources" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Image" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Image url" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "eg. http://example.com/image.jpg (if blank uses resource url)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graph" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Map" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filters" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +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 "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 "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 "eg: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Graph type" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Group (Axis 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Axis 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Field type" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longitude field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom to features" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Cluster markers" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Top Rated Datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Average rating" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Number of ratings" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "No ratings" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Largest Groups" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Group" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Number of datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "No groups" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Top Tags" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tag Name" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Number of Datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "User" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistics Menu" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Most Edited Datasets" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Text" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Website" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web Page url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "eg. http://example.com (if blank uses resource url)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Your browser does not support iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Authorisation function not found: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Admin" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Member" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Need to be system administrator to administer" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Site Title" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Style" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Site Tag Line" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "About" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "About page text" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Intro Text" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text on home page" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Custom CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Customisable css inserted into the page header" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Homepage" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem purging revision %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purge complete" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Action not implemented." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Access denied" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Not found" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Bad request" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Action name not known: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Error: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Bad request data: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Group not found" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organisation not found" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Incorrect group type" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisations" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Groups" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tags" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formats" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenses" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "User %r not authorised to edit %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Not authorised to perform bulk update" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Unauthorised to create a group" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integrity Error" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "User %r not authorised to edit %s authorisations" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Unauthorised to delete group %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisation has been deleted." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Group has been deleted." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s has been deleted." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Unauthorised to add member to group %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Unauthorised to delete group %s members" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Group member has been deleted." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Select two revisions before doing the comparison." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Group Revision History" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Recent changes to CKAN Group: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log message: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "You are now following {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "You are no longer following {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Unauthorised to view followers %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" is not an integer" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset not found" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Invalid revision format: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Unauthorised to read package %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Dataset Revision History" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Recent changes to CKAN Dataset: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Unauthorised to create a package" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Unauthorised to edit this resource" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Unauthorised to update dataset" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "The dataset {id} could not be found." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "You must add at least one data resource" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Unauthorised to create a resource" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Unauthorised to create a resource for this package" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Unable to add package to search index." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Unable to update search index." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dataset has been deleted." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Unauthorised to delete package %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resource has been deleted." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Unauthorised to delete resource %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Resource view not found" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resource data not found" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "No download is available" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Unauthorised to read dataset %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Unauthorised to read resource %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Unauthorised to edit resource" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "View not found" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "View Type Not found" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Bad resource view data" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Resource view not supplied" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "No preview has been defined." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "User not found" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Unauthorised to register as a user." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Unauthorised to create a user" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Unauthorised to delete user with id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "No user specified" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Unauthorised to edit user %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profile updated" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Unauthorised to create user %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Bad Captcha. Please try again." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Unauthorised to edit a user." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Password entered was incorrect" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Old Password" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "incorrect password" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Login failed. Bad username or password." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Unauthorised to request reset password." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Unauthorised to reset password." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Invalid reset key. Please try again." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Your password has been reset." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Your password must be 4 characters or longer." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "The passwords you entered do not match." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "You must provide a password" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Follow item not found" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} not found" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Everything" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "View" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Just now" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Unknown" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Unnamed resource" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Created new dataset." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Edited resources." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Edited settings." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} view" +msgstr[1] "{number} views" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} recent view" +msgstr[1] "{number} recent views" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "No recipient email address available!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "group" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Missing value" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "The input field %(name)s was not expected." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Please enter an integer value" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Package resource(s) invalid" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag vocabulary \"%s\" does not exist" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Could not parse as valid JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisation does not exist" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "You cannot add a dataset to this organisation" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Invalid integer" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Must be a natural number" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Must be a postive integer" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Date format incorrect" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "No links are allowed in the log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Dataset id already exists" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resource" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "That group name or ID does not exist." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Activity type" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Names must be strings" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "That name cannot be used" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Must be at least %s characters long" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "That URL is already in use." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Name \"%s\" length is less than minimum %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Name \"%s\" length is more than maximum %s" + +#: ckan/logic/validators.py:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplicate key \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Group name already exists in database" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" length is less than minimum %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Tag \"%s\" length is more than maximum %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" must not be uppercase" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "User names must be strings" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "That login name is not available." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Please enter both passwords" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Passwords must be strings" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "The passwords you entered do not match" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Name must be at least %s characters long" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "That vocabulary name is already in use." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Tag vocabulary was not found." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s does not belong to vocabulary %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "No tag name" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s already belongs to vocabulary %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Please provide a valid URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "role does not exist." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datasets with no organisation can't be private." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Not a list" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Not a string" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "This parent would create a loop in the hierarchy" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" and \"filter_values\" should have the same length" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" is required when \"filter_fields\" is filled" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "There is a schema field with the same name" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Missing Value" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Trying to create an organisation as a group" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "You must supply a rating (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Rating must be an integer value." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Rating must be between %i and %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "You must be logged in to follow users" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "You cannot follow yourself" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "You are already following {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "User {username} does not exist." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id not in data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Could not find vocabulary \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Could not find tag \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "You must be logged in to unfollow something." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "You are not following {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resource was not found." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Do not specify if using \"query\" parameter" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Must be : pair(s)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Field \"{field}\" not recognised in resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Package was not found." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus was not found." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisation was not found." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "User %s not authorised to create packages" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "User %s not authorised to edit these groups" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "User %s not authorised to add dataset to this organisation" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "No dataset id provided, cannot check auth." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "No package found for this resource, cannot check auth." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "User %s not authorised to create resources on dataset %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "User %s not authorised to edit these packages" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "User %s not authorised to create groups" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "User %s not authorised to create organisations" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "User {user} not authorised to create users via the API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Not authorised to create users" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Group was not found." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "User %s not authorised to add members" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "User %s not authorised to edit group %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "User %s not authorised to delete resource %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Resource view not found, cannot check auth." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "User %s not authorised to delete relationship %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "User %s not authorised to delete groups" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "User %s not authorised to delete group %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "User %s not authorised to delete organisations" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "User %s not authorised to delete organisation %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "User %s not authorised to delete task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Not authorised" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "User %s not authorised to read these packages" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "User %s not authorised to read package %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "User %s not authorised to read resource %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "User %s not authorised to read group %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "You must be logged in to access your dashboard." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "User %s not authorised to edit package %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "User %s not authorised to edit resource %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "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:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "User %s not authorised to edit organisation %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "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:178 +#, python-format +msgid "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:206 +msgid "Have to be logged in to edit user" +msgstr "Have to be logged in to edit user" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "User %s not authorised to edit user %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "User {0} not authorised to update user {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "User %s not authorised to change state of revision" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "User %s not authorised to update task_status table" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "User %s not authorised to update term_translation table" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "License not specified" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Other (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depends on %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "is a dependency of %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "derives from %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "has derivation %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "links to %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "is linked from %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "is a child of %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "is a parent of %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "has sibling %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "There is no API data to load for this resource" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Failed to load data API information" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Start typing…" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "No matches found" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "There are unsaved modifications to this form" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Please Confirm Action" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Are you sure you want to perform this action?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirm" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancel" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Unfollow" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Follow" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Link to a URL on the internet (you can also link to an API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Upload" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Remove" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Upload a file on your computer" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "File" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Save order" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Saving..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Upload a file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "An Error Occurred" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Unable to upload file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Unable to authenticate upload" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resource uploaded" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Unable to get data for uploaded file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Add Filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Edit" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Show more" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Hide" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "About {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sysadmin settings" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "View profile" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d new item)" +msgstr[1] "Dashboard (%(num)d new items)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Log out" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Log in" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Register" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datasets" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Search Datasets" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Search" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Skip to content" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Load less" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Load more" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "No activities are within this activity stream" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmins" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Config" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Trash" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Are you sure you want to reset the config?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reset" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Update Config" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN config options" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

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 +msgid "Confirm Reset" +msgstr "Confirm Reset" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administer CKAN" + +#: 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 "" +"

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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirm Delete" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purge" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "This resource can not be previewed at the moment." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Click here for more information." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Download resource" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No preview available." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "More details..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "No handler defined for data type: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full Width Input" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Large" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Large Input" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prepend" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Custom Field (empty)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Custom Field" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Activity Stream" + +#: 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 "Administrators" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Add a Group" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Group Form" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Are you sure you want to delete group - {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 "Are you sure you want to delete member - {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:15 +#: 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 "Manage" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Edit Group" + +#: 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 "Members" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Add Group" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Search groups..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "There are currently no groups for this site" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "How about creating one?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Back to all members" + +#: 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 "Edit Member" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Add Member" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Existing User" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "If you wish to add an existing user, search for their username below." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "or" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "New User" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "If you wish to invite a new user, enter their email address." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Role" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Are you sure you want to delete this member?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Delete" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "What are roles?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +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 +msgid "Create a Group" +msgstr "Create a Group" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Update Group" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Create Group" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Search datasets..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datasets in group: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Name" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "My Group" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "A little information about my group..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Are you sure you want to delete this Group?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Save Group" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "View {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remove dataset from this group" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "What are Groups?" + +#: 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 "" +" 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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Deleted" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "read more" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Welcome" + +#: 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 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 organisations) 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Welcome to 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 "" +"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 " + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "This is a featured section" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "E.g. environment" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Search data" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popular tags" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistics" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasets" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisations" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "groups" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "This field is required" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"You can use Markdown formatting here" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Value" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Custom" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "The form contains invalid entries:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Required field" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Image URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Clear Upload" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisation Form" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Edit datasets" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " found for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sorry no datasets found for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Make public" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Make private" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Draft" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Private" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +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}?" +msgstr "Are you sure you want to delete organisation - {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 "Edit Organisation" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Add Organisation" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email address" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Update Member" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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

Editor: Can add and " +"edit datasets, but not manage organisation members.

" +"

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

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Create an Organisation" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Update Organisation" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Create Organisation" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datasets in organisation: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "What are Organisations?" + +#: 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 "" +"

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 "" +" 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" +msgstr "My Organisation" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "A little information about my organisation..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Save Organisation" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "View {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Create Dataset" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "What are datasets?" + +#: 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 "" +" 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Changes" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Are you sure you want to delete dataset - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Are you sure you want to delete resource - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "View dataset" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Edit metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Edit view" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Preview" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Update" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associate this group with this dataset" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Add to group" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "There are no groups associated with this dataset" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Update Dataset" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Add data to the dataset" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +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 "Add resource" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +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 "Add view" + +#: 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 "" +" 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:85 +msgid "Add" +msgstr "Add" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "All resources" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "View resource" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Edit resource" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Views" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Go to resource" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "There are no views created for this resource yet." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Not seeing the views you were expecting?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Here are some reasons you may not be seeing expected views:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "No view has been created that is suitable for this resource" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"The site administrators may not have enabled the relevant view plugins" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"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:175 +msgid "Additional Information" +msgstr "Additional Information" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Field" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "unknown" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Created" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "License" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "New view" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "This resource has no views" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Add new resource" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +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" +msgstr "API Docs" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(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 "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "All views" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "View view" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "View preview" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Additional Info" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Source" + +#: 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 +msgid "Author" +msgstr "Author" + +#: 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 "Maintainer" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "State" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Last Updated" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Title" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "eg. A descriptive title" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. my-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "eg. Some useful notes about the data" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economy, mental health, government" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "No organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibility" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Public" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Active" + +#: 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 "" +"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?" +msgstr "Are you sure you want to delete this dataset?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Next: Add Data" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Author Email" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Maintainer Email" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Update Resource" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Some useful notes about the data" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "This will be guessed automatically. Leave blank if you wish" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "eg. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "File Size" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "eg. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "eg. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Are you sure you want to delete this resource?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Previous" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Save & add another" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Finish" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "What's a resource?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "A resource can be any file or link to a file containing useful data." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explore" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "More information" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Embed" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "This resource view is not available at the moment." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Embed resource view" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +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:78 +msgid "Width" +msgstr "Width" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Height" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Code" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resource Preview" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data and Resources" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "This dataset has no data" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Create dataset" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Add data" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "eg. My View" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "eg. Information about my view" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remove Filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +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 "A view is a representation of the data held against a resource" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Add Dataset" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Show More {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Show Only Popular {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "There are no {facet_type} that match this search" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Language" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "No License Provided" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "This dataset satisfies the Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "There is no description for this organisation" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "This dataset has no description" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filter Results" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Please try another search.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} dataset found for \"{query}\"" +msgstr[1] "{number} datasets found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "No datasets found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset found" +msgstr[1] "{number} datasets found" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "No datasets found" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} group found for \"{query}\"" +msgstr[1] "{number} groups found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "No groups found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} group found" +msgstr[1] "{number} groups found" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +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} 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 "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} organisation found" +msgstr[1] "{number} organisations found" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "No organisations found" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscribe" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} added the tag {tag} to the dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} updated the group {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} updated the organisation {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} updated the dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} updated the resource {resource} in the dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} updated their profile" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} deleted the group {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} deleted the organisation {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} deleted the dataset {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} deleted the resource {resource} from the dataset {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} started following {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} started following {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} started following {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} created the group {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} created the organisation {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} created the dataset {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} added the resource {resource} to the dataset {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} signed up" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} removed the tag {tag} from the dataset {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Search Tags" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "My Datasets" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "My Organisations" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "My Groups" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activity from items that I'm following" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "You haven't created any datasets." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Create one now?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "You are not a member of any groups." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +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 +#: 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 "Users" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Account Info" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +" Your profile lets other CKAN users know about who you are and what you do. " + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Change details" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Full name" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "A little information about yourself" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Change password" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirm Password" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Are you sure you want to delete this User?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Are you sure you want to regenerate the API key?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Regenerate API Key" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Update Profile" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "All Users" + +#: 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 "Login" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Need an Account?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Then sign right up, it only takes a minute." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Create an Account" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Forgotten your password?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "No problem, use our password recovery form to reset it." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logged Out" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "You are now logged out." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "You're already logged in as {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logout" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Remember me" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "You're already logged in" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "You need to log out before you can log in with another account." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Log out now" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registration" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Register for an Account" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Why Sign Up?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Create datasets, groups and other exciting things" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "username" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Full Name" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Create Account" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Reset Your Password" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Password Reset" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Update Password" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "How does this work?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simply enter a new password and we'll update your account" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "User hasn't created any datasets." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "You have not provided a biography." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "This user has no biography." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "This means only you can see this" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Member Since" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Reset your password" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Activity from:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Search list..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "You are not following anything" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "No followers" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Search Users" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Redirecting to external site is not allowed." diff --git a/ckan/i18n/en_GB/LC_MESSAGES/ckan.po b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..420e12076f7 --- /dev/null +++ b/ckan/i18n/en_GB/LC_MESSAGES/ckan.po @@ -0,0 +1,5130 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: English (United Kingdom) (https://www.transifex.com/okfn/teams/11162/en_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: en_GB\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resource not found" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Not authorised to see this page" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complete" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pending" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submitting" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Not Uploaded Yet" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload to DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Error traceback:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Last updated" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Never" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload Log" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "End of log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore resource not found" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resource \"{0}\" was not found." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "User {0} not authorised to update resource {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Access resource data via a web API with powerful query support" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Endpoints" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Create" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Update / Insert" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Query" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Querying" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Query example (first 5 results)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Query example (results containing 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Query example (via SQL statement)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Example: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Example: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Save" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Field {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Label" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Description" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Data Dictionary" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Column" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Type" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Table" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsive display" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Show Columns" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Hide/Unhide Columns" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevance" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Name Ascending" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Name Descending" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Last Modified" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Custom Field Ascending" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Custom Field Descending" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Custom Text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "custom text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Country Code" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "This group has no description" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Dataset" +msgstr[1] "{num} Datasets" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Datasets" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN's data previewing tool has many powerful features" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Followers" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resources" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Image" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Image url" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "eg. http://example.com/image.jpg (if blank uses resource url)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graph" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Map" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "error loading view" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Could not load view" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore returned an error" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy returned an error" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Grid" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filters" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +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 "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 "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 "eg: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Graph type" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Group (Axis 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Axis 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Field type" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longitude field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom to features" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Cluster markers" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Top Rated Datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Average rating" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Number of ratings" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "No ratings" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Largest Groups" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Group" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Number of datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "No groups" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Top Tags" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tag Name" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Number of Datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Users Creating Most Datasets" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "User" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistics Menu" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Most Edited Datasets" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Text" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Website" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web Page url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "eg. http://example.com (if blank uses resource url)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Your browser does not support iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Authorisation function not found: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Admin" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Member" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Need to be system administrator to administer" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Site Title" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Style" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Site Tag Line" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "About" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "About page text" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Intro Text" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text on home page" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Custom CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Customisable css inserted into the page header" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Homepage" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem purging revision %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purge complete" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Action not implemented." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Access denied" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Not found" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Bad request" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Action name not known: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Error: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Bad request data: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Group not found" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organisation not found" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Incorrect group type" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisations" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Groups" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tags" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formats" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenses" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "User %r not authorised to edit %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Not authorised to perform bulk update" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Unauthorised to create a group" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integrity Error" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "User %r not authorised to edit %s authorisations" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Unauthorised to delete group %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisation has been deleted." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Group has been deleted." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s has been deleted." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "User %r not authorised to edit members of %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Unauthorised to add member to group %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Unauthorised to delete group %s members" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Group member has been deleted." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Select two revisions before doing the comparison." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Group Revision History" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Recent changes to CKAN Group: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log message: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "You are now following {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "You are no longer following {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Unauthorised to view followers %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Invalid search query: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" is not an integer" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset not found" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Invalid revision format: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Unauthorised to read package %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Dataset Revision History" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Recent changes to CKAN Dataset: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Unauthorised to create a package" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Unauthorised to edit this resource" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Unauthorised to update dataset" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "The dataset {id} could not be found." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "You must add at least one data resource" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Unauthorised to create a resource" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Unauthorised to create a resource for this package" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Unable to add package to search index." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Unable to update search index." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dataset has been deleted." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Unauthorised to delete package %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resource has been deleted." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Unauthorised to delete resource %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Resource view not found" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resource data not found" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "No download is available" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Unauthorised to read dataset %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Unauthorised to read resource %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Unauthorised to edit resource" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "View not found" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "View Type Not found" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Bad resource view data" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Resource view not supplied" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "No preview has been defined." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "User not found" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Unauthorised to register as a user." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Unauthorised to create a user" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Unauthorised to delete user with id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "No user specified" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Unauthorised to edit user %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profile updated" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Unauthorised to create user %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Bad Captcha. Please try again." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Unauthorised to edit a user." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Password entered was incorrect" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Old Password" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "incorrect password" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Login failed. Bad username or password." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Unauthorised to request reset password." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Unauthorised to reset password." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Invalid reset key. Please try again." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Your password has been reset." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Your password must be 4 characters or longer." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "The passwords you entered do not match." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "You must provide a password" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Follow item not found" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} not found" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Everything" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "View" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} new activity from {site_title}" +msgstr[1] "{n} new activities from {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Just now" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Unknown" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Unnamed resource" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Created new dataset." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Edited resources." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Edited settings." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} view" +msgstr[1] "{number} views" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} recent view" +msgstr[1] "{number} recent views" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "No recipient email address available!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "group" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Missing value" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "The input field %(name)s was not expected." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Please enter an integer value" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Must be a Unicode string value" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Package resource(s) invalid" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag vocabulary \"%s\" does not exist" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Could not parse as valid JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "An organisation must be provided" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisation does not exist" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "You cannot add a dataset to this organisation" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Invalid integer" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Must be a natural number" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Must be a postive integer" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Date format incorrect" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "No links are allowed in the log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Dataset id already exists" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resource" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "That group name or ID does not exist." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Activity type" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Names must be strings" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "That name cannot be used" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Must be at least %s characters long" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "That URL is already in use." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Name \"%s\" length is less than minimum %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Name \"%s\" length is more than maximum %s" + +#: ckan/logic/validators.py:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplicate key \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Group name already exists in database" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" length is less than minimum %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Tag \"%s\" length is more than maximum %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" must be alphanumeric characters or symbols: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" must not be uppercase" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "User names must be strings" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "That login name is not available." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Please enter both passwords" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Passwords must be strings" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "The passwords you entered do not match" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Name must be at least %s characters long" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "That vocabulary name is already in use." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Tag vocabulary was not found." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s does not belong to vocabulary %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "No tag name" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s already belongs to vocabulary %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Please provide a valid URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "role does not exist." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datasets with no organisation can't be private." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Not a list" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Not a string" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "This parent would create a loop in the hierarchy" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" and \"filter_values\" should have the same length" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" is required when \"filter_fields\" is filled" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "There is a schema field with the same name" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Email {email} is not a valid format" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Missing Value" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Trying to create an organisation as a group" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "You must supply a rating (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Rating must be an integer value." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Rating must be between %i and %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "Error sending the invite email, the user was not created: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "You must be logged in to follow users" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "You cannot follow yourself" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "You are already following {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "User {username} does not exist." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id not in data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Could not find vocabulary \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Could not find tag \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "You must be logged in to unfollow something." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "You are not following {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resource was not found." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Do not specify if using \"query\" parameter" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Must be : pair(s)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Field \"{field}\" not recognised in resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Package was not found." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus was not found." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisation was not found." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "User %s not authorised to create packages" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "User %s not authorised to edit these groups" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "User %s not authorised to add dataset to this organisation" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "No dataset id provided, cannot check auth." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "No package found for this resource, cannot check auth." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "User %s not authorised to create resources on dataset %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "User %s not authorised to edit these packages" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "User %s not authorised to create groups" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "User %s not authorised to create organisations" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "User {user} not authorised to create users via the API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Not authorised to create users" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Group was not found." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "User %s not authorised to add members" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "User %s not authorised to edit group %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "User %s not authorised to delete resource %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Resource view not found, cannot check auth." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "User %s not authorised to delete relationship %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "User %s not authorised to delete groups" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "User %s not authorised to delete group %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "User %s not authorised to delete organisations" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "User %s not authorised to delete organisation %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "User %s not authorised to delete task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Not authorised" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "User %s not authorised to read these packages" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "User %s not authorised to read package %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "User %s not authorised to read resource %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "User %s not authorised to read group %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "You must be logged in to access your dashboard." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "User %s not authorised to edit package %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "User %s not authorised to edit resource %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "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:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "User %s not authorised to edit organisation %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "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:178 +#, python-format +msgid "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:206 +msgid "Have to be logged in to edit user" +msgstr "Have to be logged in to edit user" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "User %s not authorised to edit user %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "User {0} not authorised to update user {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "User %s not authorised to change state of revision" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "User %s not authorised to update task_status table" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "User %s not authorised to update term_translation table" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "License not specified" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Other (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depends on %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "is a dependency of %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "derives from %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "has derivation %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "links to %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "is linked from %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "is a child of %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "is a parent of %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "has sibling %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "There is no API data to load for this resource" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Failed to load data API information" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Start typing…" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "No matches found" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Input is too short, must be at least one character" +msgstr[1] "Input is too short, must be at least %(num)d characters" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "There are unsaved modifications to this form" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Please Confirm Action" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Are you sure you want to perform this action?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirm" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancel" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Unfollow" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Follow" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Link to a URL on the internet (you can also link to an API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Upload" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Remove" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Upload a file on your computer" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "File" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Save order" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Saving..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Upload a file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "An Error Occurred" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Unable to upload file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Unable to authenticate upload" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resource uploaded" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Unable to get data for uploaded file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Add Filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Select a field" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Edit" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Show more" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Hide" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "About {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sysadmin settings" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "View profile" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d new item)" +msgstr[1] "Dashboard (%(num)d new items)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Log out" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Log in" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Register" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datasets" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Search Datasets" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Search" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Skip to content" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Load less" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Load more" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "No activities are within this activity stream" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmins" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Config" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Trash" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Site logo" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Are you sure you want to reset the config?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reset" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Update Config" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN config options" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

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 +msgid "Confirm Reset" +msgstr "Confirm Reset" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administer CKAN" + +#: 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 "" +"

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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirm Delete" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purge" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "This resource can not be previewed at the moment." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Click here for more information." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Download resource" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No preview available." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "More details..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "No handler defined for data type: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full Width Input" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Large" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Large Input" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prepend" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Custom Field (empty)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Custom Field" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Activity Stream" + +#: 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 "Administrators" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Add a Group" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Group Form" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Are you sure you want to delete group - {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 "Are you sure you want to delete member - {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:15 +#: 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 "Manage" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Edit Group" + +#: 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 "Members" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Add Group" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Search groups..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "There are currently no groups for this site" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "How about creating one?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Back to all members" + +#: 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 "Edit Member" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Add Member" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Existing User" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "If you wish to add an existing user, search for their username below." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "or" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "New User" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "If you wish to invite a new user, enter their email address." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Role" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Are you sure you want to delete this member?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Delete" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "What are roles?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +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 +msgid "Create a Group" +msgstr "Create a Group" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Update Group" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Create Group" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Search datasets..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datasets in group: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Name" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "My Group" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "A little information about my group..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Are you sure you want to delete this Group?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Save Group" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "View {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remove dataset from this group" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "What are Groups?" + +#: 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 "" +"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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Deleted" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "read more" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Welcome" + +#: 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 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 organisations) 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Welcome to 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 "" +"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 " + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "This is a featured section" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "E.g. environment" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Search data" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popular tags" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistics" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasets" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisations" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "groups" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "This field is required" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"You can use Markdown formatting here" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Value" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Custom" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "The form contains invalid entries:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Required field" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Image URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Clear Upload" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisation Form" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Edit datasets" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " found for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sorry no datasets found for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Make public" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Make private" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Draft" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Private" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +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}?" +msgstr "Are you sure you want to delete organisation - {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 "Edit Organisation" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Add Organisation" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email address" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Update Member" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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

Editor: Can add and " +"edit datasets, but not manage organisation members.

" +"

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

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} member" +msgstr[1] "{count} members" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Create an Organisation" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Update Organisation" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Create Organisation" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datasets in organisation: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "What are Organisations?" + +#: 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 "" +"

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 "" +" 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" +msgstr "My Organisation" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "A little information about my organisation..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Save Organisation" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "View {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Create Dataset" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "What are datasets?" + +#: 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 "" +" 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Changes" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Are you sure you want to delete dataset - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Are you sure you want to delete resource - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "View dataset" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Edit metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Edit view" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Preview" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Update" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associate this group with this dataset" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Add to group" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "There are no groups associated with this dataset" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Update Dataset" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Add data to the dataset" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +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 "Add resource" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +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 "Add view" + +#: 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 "" +" 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:85 +msgid "Add" +msgstr "Add" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "All resources" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "View resource" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Edit resource" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Views" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Go to resource" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "There are no views created for this resource yet." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Not seeing the views you were expecting?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Here are some reasons you may not be seeing expected views:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "No view has been created that is suitable for this resource" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"The site administrators may not have enabled the relevant view plugins" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"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:175 +msgid "Additional Information" +msgstr "Additional Information" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Field" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Data last updated" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "unknown" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadata last updated" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Created" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "License" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "New view" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "This resource has no views" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Add new resource" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +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" +msgstr "API Docs" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(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 "" +" You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "All views" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "View view" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "View preview" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Additional Info" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Source" + +#: 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 +msgid "Author" +msgstr "Author" + +#: 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 "Maintainer" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "State" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Last Updated" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Before you can create a dataset you need to create an organisation." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Create a new organisation" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "There are no organisations to which you can assign this dataset." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Ask a system administrator to create an organisation before you can " +"continue." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Title" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "eg. A descriptive title" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. my-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "eg. Some useful notes about the data" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economy, mental health, government" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "No organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibility" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Public" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Active" + +#: 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 "" +"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?" +msgstr "Are you sure you want to delete this dataset?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Next: Add Data" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Author Email" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Maintainer Email" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Update Resource" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Data" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Some useful notes about the data" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "This will be guessed automatically. Leave blank if you wish" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "eg. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "File Size" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "eg. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "eg. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Are you sure you want to delete this resource?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Previous" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Save & add another" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Finish" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "What's a resource?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "A resource can be any file or link to a file containing useful data." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explore" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "More information" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Embed" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "This resource view is not available at the moment." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Embed resource view" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +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:78 +msgid "Width" +msgstr "Width" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Height" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Code" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resource Preview" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data and Resources" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "This dataset has no data" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Create dataset" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Add data" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "eg. My View" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "eg. Information about my view" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remove Filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +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 "A view is a representation of the data held against a resource" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Add Dataset" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Show More {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Show Only Popular {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "There are no {facet_type} that match this search" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Language" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "No License Provided" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "This dataset satisfies the Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "There is no description for this organisation" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "This dataset has no description" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filter Results" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Please try another search.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

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

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} dataset found for \"{query}\"" +msgstr[1] "{number} datasets found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "No datasets found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset found" +msgstr[1] "{number} datasets found" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "No datasets found" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} group found for \"{query}\"" +msgstr[1] "{number} groups found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "No groups found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} group found" +msgstr[1] "{number} groups found" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +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[1] "{number} organisations found for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +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[1] "{number} organisations found" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "No organisations found" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscribe" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} added the tag {tag} to the dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} updated the group {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} updated the organisation {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} updated the dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} updated the resource {resource} in the dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} updated their profile" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} deleted the group {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} deleted the organisation {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} deleted the dataset {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} deleted the resource {resource} from the dataset {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} started following {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} started following {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} started following {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} created the group {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} created the organisation {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} created the dataset {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} added the resource {resource} to the dataset {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} signed up" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} removed the tag {tag} from the dataset {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Search Tags" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "My Datasets" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "My Organisations" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "My Groups" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activity from items that I'm following" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "You haven't created any datasets." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Create one now?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "You are not a member of any groups." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +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 +#: 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 "Users" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Account Info" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +" Your profile lets other CKAN users know about who you are and what you do. " + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Change details" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Full name" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "A little information about yourself" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Change password" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Sysadmin Password" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirm Password" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Are you sure you want to delete this User?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Are you sure you want to regenerate the API key?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Regenerate API Key" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Update Profile" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "All Users" + +#: 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 "Login" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Need an Account?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Then sign right up, it only takes a minute." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Create an Account" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Forgotten your password?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "No problem, use our password recovery form to reset it." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logged Out" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "You are now logged out." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "You're already logged in as {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logout" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Remember me" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "You're already logged in" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "You need to log out before you can log in with another account." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Log out now" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registration" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Register for an Account" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Why Sign Up?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Create datasets, groups and other exciting things" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "username" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Full Name" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Create Account" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Reset Your Password" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Password Reset" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Update Password" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "How does this work?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simply enter a new password and we'll update your account" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "User hasn't created any datasets." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "You have not provided a biography." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "This user has no biography." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "This means only you can see this" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Member Since" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Reset your password" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Activity from:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Search list..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "You are not following anything" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "No followers" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Search Users" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Redirecting to external site is not allowed." diff --git a/ckan/i18n/es/LC_MESSAGES/ckan.po b/ckan/i18n/es/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..ca24d52f15c --- /dev/null +++ b/ckan/i18n/es/LC_MESSAGES/ckan.po @@ -0,0 +1,5295 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# David Portoles , 2020 +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Spanish (https://www.transifex.com/okfn/teams/11162/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Audio" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "URL del audio" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"P.ej. http://example.com/audio.mp3 (si es vacío utiliza la URL del recurso)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Tu navegador no soporta el elemento de audio. Pero no te " +"preocupes, puedes descargarlo." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Recurso no encontrado" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "No estás autorizado para ver esta página" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completado" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendiente" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviando" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Sin actualizar aún" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Subir a DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Error en la subida:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastro del error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualización" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log de subida" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalles" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fin del log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "No se ha encontrado el recurso." + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Diccionario de datos guardado. Cualquier actualización de tipo tendrá efecto" +" una vez el recurso vuelva a ser subido a DataStore" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Dato inválido: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" no fue encontrado." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "El usuario {0} no está autorizado para actualizar el recurso {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "API de datos" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Acceso al recurso de datos mediante una API web con servicio de consulta " +"completo" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

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

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Punto de acceso API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"El API de Datos es accesible a través de las siguientes acciones de la API " +"de acción de CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Crear" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Actualizar / Insertar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Consulta (vía SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Consultando" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Ejemplo de consulta (primeros cinco resultados)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Consulta ejemplo (resultados que contienen 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Consulta ejemplo (vía sentencia SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Ejemplo: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Una simple consulta ajax (JSONP) a la data API usando jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Ejemplo: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Guardar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Campo {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Actualización de tipo" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiqueta" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descripción" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Diccionario de datos" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Columna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipo" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Cargando ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API de datos" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabla" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Diseño adaptable" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar columnas" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Esconder/Mostrar columnas" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevancia" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nombre Ascendente" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nombre Descendente" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificación" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Personalizado Ascendente" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Personalizado Descendente" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código de País" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Este grupo no tiene una descripción" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Conjuntos de Datos" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"La herramienta de previsualización de CKAN tiene algunas características " +"poderosas" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Segundo" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Minuto" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Hora" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Día" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Expira en" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Unidades" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Expira en" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imagen" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +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)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Explorador de Datos" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Gráfico" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "error cargando la vista" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "No se pudo cargar la vista" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore ha retornado un error" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy ha retornado un error" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Tabla" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtros" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +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 "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 "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 "ej: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Eje 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Eje 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de longitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo de GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto acercar a características" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de cluster" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "URL inválida." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Conjuntos de datos mejor valorados" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Valoración promedio" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Número de valoraciones" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ninguna valoración" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grupos más grandes" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupo" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Número de conjuntos de datos" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "No existen grupos" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Tags preferidos" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nombre de la Etiqueta" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Número de Conjuntos de Datos" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Usuarios que han creado más conjuntos de datos" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Usuario" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menú de Estadísticas" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Conjuntos de datos más editados" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Texto" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "Ocurrió un error en la petición AJAX. No se puede cargar la vista." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Vídeo" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "URL del vídeo" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"P.ej. http://example.com/video.mpeg (si es vacío utiliza la URL del recurso)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "URL del poster" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "P.ej. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Lo siento, tu navegador no soporta vídeos integrados, pero no te preocupes, " +"¡puedes descargarlo y verlo en" +" tu reproductor de vídeo favorito!" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Sitio web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +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)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Su navegador no soporta iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Función de autorización no encontrada: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrador" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Miembro" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Es necesario ser administrador del sistema para administrar" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Nombre del Sitio" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Estilo" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Lema del sitio" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Etiqueta del logo del sitio" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Acerca de" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Texto de la página de Acerca de" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Texto de introducción" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Texto en página principal" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS Personalizado" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +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:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Página de inicio" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema al purgar la revisión %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purga completada" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Acción no implementada" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Acceso denegado" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "No encontrado" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Solicitud incorrecta" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nombre de la acción desconocida: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Error JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Solicitud de datos incorrecta: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupo no encontrado" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organización no encontrada." + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorrecto" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizaciones" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupos" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiquetas" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatos" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licencias" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "El usuario %r no está autorizado para editar %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "No autorizado para llevar a cabo una actualización masiva." + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "No estás autorizado para crear un grupo" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Error de integridad" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "No estás autorizado para borrar el grupo %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "La Organización ha sido borrada." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "El grupo ha sido borrado." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sido borrado." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "El usuario %r no está autorizado para editar los miembros de %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "No está autorizado a crear miembros del grupo %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "No estás autorizado a borrar %s miembros del grupo" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Miembro de grupo ha sido borrado." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selecciona dos revisiones antes de hacer la comparación." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Grupo CKAN Historial de Revisión" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Cambios recientes en el Grupo CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mensaje del log:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Estás siguiendo a {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Ya no estás siguiendo a {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "No estás autorizado para ver seguidores %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Busqueda incorrecta: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parámetro \"{parameter_name}\" no es un entero" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Conjunto de datos no encontrado" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato de revisión no válido: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Mostrar conjuntos de datos del tipo \"{package_type}\" no está soportado " +"({file_lr})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "No estás autorizado a leer el paquete %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisión del conjunto de datos CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Cambios recientes al conjunto de datos CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "No está autorizado a leer el paquete" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "No está autorizado a editar este recurso" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "No estás autorizado para actualizar el conjunto de datos" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Conjunto de datos {id} no pudo ser encontrado." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Debe añadir al menos un recurso de datos" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "No está autorizado a crear un recurso" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "No está autorizado para crear un recurso para este paquete" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "No se puede agregar el paquete al índice de búsqueda" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "No se puede actualizar el índice de búsqueda." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "El conjunto de datos ha sido borrado" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "No está autorizado a borrar el paquete %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "El recurso ha sido borrado" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "No está autorizado a borrar el recurso %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Vista de recurso no encontrada" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Datos del recurso no encontrado" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "No hay descargas disponibles" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "No estás autorizado a leer el conjunto de datos %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "No autorizado para leer el recurso %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "No está autorizado para editar recurso" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Vista no encontrada" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tipo de Vista No encontrado" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Datos de vista de recurso no adecuados" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Vista de recurso no proporcionada" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "No se ha definido una previsualización" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "No estás autorizado para crear un usuario" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "No estás autorizado para crear un usuario" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "No está autorizado a borrar el usuario con id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "No se ha especificado ningún usuario" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "No estás autorizado para editar el usuario %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Perfil actualizado" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "No estás autorizado para crear el usuario %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha erróneo. Por favor, inténtalo de nuevo." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"El usuario \"%s\" ha sido registrado, pero aún tienes la sesión iniciada " +"como \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "No estás autorizado para editar un usuario" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "La contraseña introducida no es correcta" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Contraseña anterior" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Contraseña incorrecta" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +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:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "No está autorizado a solicitar el reseteo de la clave." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "La dirección de correo electrónico es obligatoria" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Error enviando el email. Vuelva a intentarlo más tarde o contacte con el " +"administrador para obtener más ayuda" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Se ha enviado un enlace de restablecemiento a tu dirección de correo " +"electrónico (a menos que la cuenta especificada no exista)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "No está autorizado a resetear la clave." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Clave de restablecimiento no válida. Por favor, inténtalo de nuevo." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Se ha restablecido su contraseña." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Su contraseña debe tener 4 caracteres o más." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Las contraseñas introducidas no coinciden." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Debe proporcionar una contraseña" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Elemento siguiente no encontrado" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} no encontrado" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Todo" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ver" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nueva actividad en {site_title}" +msgstr[1] "{n} nuevas actividades en {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Justo ahora" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Desconocido" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Recurso sin nombre" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nuevo conjuto de datos creado." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Recursos editados." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Opciones editadas." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} vista" +msgstr[1] "{number} vistas" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vista reciente" +msgstr[1] "{number} vistas recientes" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "" +"No está disponible la dirección de correo electrónico del destinatario!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organización" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Falta el valor" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "No se esperaba el campo %(name)s." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Por favor introduce un valor entero" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Debe ser un texto Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Recurso(s) del paquete invalido(s)" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "El vocabulario de etiquetas \"%s\" no existe" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Conjunto de datos" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "No se puede parsear como un JSON válido" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Se debe proporcionar una organización" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "No es posible mover este conjunto de datos a otra organización" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organización no existe" + +#: ckan/logic/validators.py:76 +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:116 +msgid "Invalid integer" +msgstr "Entero no válido" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Debe ser un número entero" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Debe ser un número positivo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Formato de fecha incorrecto" + +#: ckan/logic/validators.py:163 +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:183 +msgid "Dataset id already exists" +msgstr "id del conjunto de datos ya existe" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Nombre o identificador de grupo desconocido." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipo de actividad" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Los nombres deben ser cadenas de caracteres" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Este nombre no se puede usar" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Debe tener al menos %s caracteres de longitud" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +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:385 +msgid "That URL is already in use." +msgstr "Ese URL ya esta siendo utilizado." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Clave duplicada \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Este nombre de grupo ya existe en la base de datos" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" + +#: 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:583 +msgid "That login name is not available." +msgstr "Este nombre de inicio de sesión no está disponible." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Este nombre de usuario no puede ser modificado." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Por favor, introduzca ambas contraseñas" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Las claves deben ser cadenas de caracteres" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Su contraseña debe tener 8 caracteres o más" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Las contraseñas introducidas no coinciden" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "El nombre debe contener al menos %s caracteres" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Este nombre de vocabulario ya está en uso." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "No se ha encontrado el vocabulario de etiquetas." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "La etiqueta %s no pertenece al vocabulario %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Falta el nombre de la etiqueta" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "La etiqueta %s ya pertenece al vocabulario %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Por favor, proporcione una URL válida" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rol no existe." + +#: ckan/logic/validators.py:768 +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:774 +msgid "Not a list" +msgstr "No es una lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "No es una cadena" + +#: ckan/logic/validators.py:811 +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:821 +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:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Existe un campo de esquema con el mismo nombre" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "El email {email} no tiene un formato válido" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Debe ser un diccionario" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "La dirección de email '{email}' pertenece a un usuario registrado." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "El valor debe ser uno de {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "El valor debería ser un objeto JSON válido" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "No se puede parsear el valor como un objeto JSON válido" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "No se puede parsear el extra '{name}' como un objeto JSON válido" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Falta el valor" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "El rol debe ser uno de \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "No autorizado a añadir colaboradores" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Colaboradores del conjunto de datos no activado" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Intentando crear una organización como un grupo" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Debe suministrar una valoración (parámetro \"rating\")" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "La valoración debe ser un valor entero." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Error enviando una invitación por mail, el usuario no está creado: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Debe haber iniciado sesión para seguir a usuarios" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Usted no puede seguirse a sí mismo" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Usted ya está siguiendo a {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "El usuario {username} no existe." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Paquete no encontrado" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "La organización no puede ser borrada mientras tenga un dataset" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id no presente en los datos" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "No se ha encontrado el vocabulario \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "No se ha encontrado la etiqueta \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +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:697 +msgid "You are not following {0}." +msgstr "Usted no está siguiendo a {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr " Capacidad debe ser una de \"{}\"" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "No autorizado a obtener colaboradores" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "No se ha encontrado el recurso." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "El parámetro no es un booleano" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "No ha especificado si quiere usar el parámetro \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Debe ser un par : " + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "El campo \"{field}\" no se ha reconocido en resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "No se ha encontrado el paquete." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "No se ha encontrado TaskStatus." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organización no encontrada." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "El usuario %s no está autorizado para crear paquetes" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "El usuario %s no está autorizado para editar estos grupos" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"El usuario %s no está autorizado para crear conjuntos de datos en esta " +"organización" + +#: ckan/logic/auth/create.py:61 +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:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +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." + +#: ckan/logic/auth/create.py:76 +#, python-format +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:108 +#, 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:119 +#, 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:129 +#, 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:145 +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:148 +msgid "Not authorized to create users" +msgstr "No está autorizado a crear usuarios" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "No se ha encontrado el grupo." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"El usuario %s no está autorizado a añadir colaboradores a este conjunto de " +"datos" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +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:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, 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:107 +#, 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:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Usuario %s no autorizado para borrar task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" +"El usuario %s no está autorizado a eliminar colaboradores de este conjunto " +"de datos" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "No estás autorizado" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "El usuario %s no está autorizado para leer estos paquetes" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "El usuario %s no está autorizado para leer el paquete %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "El usuario %s no está autorizado para leer el recurso %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +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:249 +msgid "You must be logged in to access your dashboard." +msgstr "Debe haber iniciado sesión para acceder a su panel de control." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" +"El usuario %s no está autorizado para obtener la lista de colaboradores de " +"este conjunto de datos" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "El usuario %s no está autorizado para editar el paquete %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "El usuario %s no está autorizado para editar el recurso %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"El usuario %s no está autorizado para cambiar el estado del paquete %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "El usuario %s no está autorizado para editar la organización %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "El usuario %s no está autorizado para cambiar el estado del grupo %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"El usuario %s no está autorizado para editar los permisos del grupo %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Tiene que estar conectado para editar un usuario" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "El usuario %s no está autorizado para editar el usuario %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"El usuario %s no está autorizado para cambiar el estado de la revisión" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "El usuario %s no esta autorizado para actualizar la tabla task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"El usuario %s no está autorizado a actualizar la tabla term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "título" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "No se especificó la licencia" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Otra (Abierta)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Otra (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Otra (Atribución)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Cualquiera)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Otra (No comercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Otra (No abierta)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "es dependiente de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "tiene un derivado en %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "enlaza a %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "enlazado desde %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "es hijo de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "es padre de %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "tiene un hermano %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "No existen datos de API para cargar para este recurso" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Falló carga de información de datos de API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Comience a escribir..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "No se encontraron coincidencias" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Ingreso es demasiado corto, debe tener al menos un carácter" +msgstr[1] "Ingreso es demasiado corto, debe tener al menos %(num)d carácteres" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Existen modificaciones no guardadas para este formulario" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Por favor confirme la acción" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "¿Está seguro de que desea realizar esta acción?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirmar" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancelar" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Dejar de seguir" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Seguir" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Enlace" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Enlazar a una URL de internet (también puede enlazar a una API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Subir" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Por favor seleccione de nuevo el fichero para cargar" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Quitar" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Subir un fichero a su PC" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Fichero" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Reordenar recursos" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Puedes reorganizar los recursos arrastrándolos, utilizando para ello el " +"icono de la flecha. Arrastre el recurso a la derecha y suéltelo en la " +"posición deseada de la lista. Cuando hayas terminado, haz click en el botón " +"\"Guardar orden\"." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Guardar orden" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Guardando..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Sube un archivo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ocurrió un error" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "No se pudo subir el archivo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "No se pudo autenticar subida" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Recurso subido" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "No se pudo obtener datos para el archivo subido" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Estás subiendo un fichero. Estás seguro que quieres salir y parar esta " +"subida?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Agregar Filtro" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Seleccione un campo" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editar" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mostrar más" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Esconder" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Acerca de {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Gestionado con CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Opciones de Administrador" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Ver perfil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Panel de Control (%(num)d nuevo elemento)" +msgstr[1] "Panel de Control (%(num)d nuevos elementos)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pizarra" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Ajustes del perfil" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Salir" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Cuenta" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Iniciar Sesión" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registro" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Conjuntos de datos" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Buscar conjuntos de datos" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Búsqueda" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Buscar conjuntos de datos" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Enviar" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ir al contenido" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Miga de pan" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Cargar menos" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Cargar más" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "No hay actividades dentro de este flujo de actividad" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administración" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administradores" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuración" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Papelera" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logotipo del sitio" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "¿Está seguro de que desea reiniciar la configuración?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reiniciar" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Actualizar Configuración" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opciones de configuración de CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

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 desea 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 "Confirmar Reinicio" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar CKAN" + +#: 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 "" +"

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:12 +msgid "Are you sure you want to purge everything?" +msgstr "¿Está seguro de que desea purgar todo?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Purgar todos" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"Purgar conjuntos de datos borrados, organizaciones o grupos para siempre y " +"de forma irreversible." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirmar Borrado" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Conjuntos de datos eliminados" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Organizaciones eliminadas" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Grupos eliminados" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purgar" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Este recurso no puede ser previsualizado en este momento." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Haga click aquí para más información." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Descargar recurso" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No está disponible la vista preliminar." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Más detalles..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "No se ha definido controlador para el tipo de dato: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estándar" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Ingreso Estándar" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mediano" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Ingreso de ancho mediano" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Completo" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Ingreso de ancho completo" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Largo" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Ingreso Largo" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Anteponer" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Anteponer ingreso" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo Personalizado (vacío)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo Personalizado" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Marcado" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de Texto" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Seleccionar" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +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 "Administradores" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Añadir un grupo" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulario de Grupo" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "¿Está seguro de que desea 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 "¿Está seguro de que desea 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:15 +#: 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 "Administrar" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +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 "Miembros" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Añadir grupo" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Buscar grupos..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +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 "¿Qué tal creando uno?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +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 "Editar Miembro" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Agregar Miembro" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Usuario existente" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "o" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Usuario nuevo" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Si desea invitar a un usuario, escriba su dirección de correo electrónico" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rol" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "¿Está seguro de que desea eliminar a este miembro?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Borrar" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "¿Qué son los roles?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +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 "Crear un Grupo" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Actualizar Grupo" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crear Grupo" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Buscar conjuntos de datos..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de datos en el grupo: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nombre" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mi Grupo" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Un poco de información acerca de mi grupo..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "¿Está seguro de que desea eliminar este Grupo?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Guardar Grupo" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ver {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Borrar el conjunto de datos de este grupo" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "¿Qué son los Grupos?" + +#: 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 "" +"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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eliminado" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "leer más" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bienvenida" + +#: 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 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 "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 "" +"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 "Esta es una sección destacada" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Ej: ambiente" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Buscar datos" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas populares" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadísticas" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunto de datos" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de datos" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Organizaciones" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Este campo es requerido" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Puede usar formato Markdown aquí" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Clave" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Personalizado" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "El formulario contiene entradas no válidas:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Campo requerido" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/mi-imagen.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL de la imagen" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Eliminar Carga" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Añadir una organización" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulario de la Organización" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar Conjunto de datos" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrados para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Lo sentimos, no se encontraron conjuntos de datos para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Hacer público" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Hacer privado" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Borrador" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privado" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +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 "¿Está seguro de que desea 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 "Editar Organización" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Agregar Organización" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Buscar organizaciones" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Actualmente no existen organizaciones para este sitio" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nombre de usuario" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Dirección de correo electrónico" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Actualizar miembro" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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

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

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

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} miembro" +msgstr[1] "{count} miembros" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Crear una Organización" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Actualizar Organización" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crear Organización" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +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 "¿Qué son las Organizaciones?" + +#: 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 "" +"

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 "" +"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 "Mi Organización" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Un poco de información acerca de mi organización..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"¿Estás seguro de que quieres borrar esta organización? Nota*: El borrado no " +"se puede realizar mientras conjuntos de datos públicos o privados " +"pertenezcan a esta organización" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Guardar Organización" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Ver {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Crear Conjunto de datos" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +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 "" +"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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Cambios" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "¿Estás 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 "¿Está seguro de que desea eliminar el recurso - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Ver conjunto de datos" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Editar metadatos" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +msgstr "Colaboradores" + +#: 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 "Editar vista" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Previsualización" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualizar" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Asocia este grupo con este conjunto de datos" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Añadir al grupo" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "No hay grupos asociados a este conjunto de datos" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Actualizar Conjunto de datos" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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 "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 "Añadir recurso" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +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 "Agregar vista" + +#: 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 "" +"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 por favor revise la" +" documentación de Data Explorer." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Añade" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"Estás viendo una versión antigua de este conjunto de datos. Para ver la " +"versión actual, click aquí." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos los recursos" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ver recurso" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Editar recurso" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistas" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Punto de acceso API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Ir al recurso" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Descargar" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Descripción del conjunto de datos:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fuente: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Todavía no existen vistas creadas para este recurso." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "¿No encuentra las vistas que esperaba?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"A continuación algunas razones por las que podría no encontrar las vistas " +"esperadas:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Ninguna vista ha sido creada que sea adecuada para este recurso" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Los administradores del sitio pueden no haber habilitado los plugins de " +"vista relevantes" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"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:175 +msgid "Additional Information" +msgstr "Información adicional" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Última actualización de los datos" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "desconocido" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Última actualización de los metadatos" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creado" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formato" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencia" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nueva vista" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Este recurso no tiene vistas" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Añadir nuevo recurso" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +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 "" +"Usted también puede 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 "" +"Usted también puede 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 "Todas las vistas" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver vista" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver previsualización" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Editar Colaborador" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Añadir Colaborador" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Volver a todos los colaboradores" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "¿Está seguro de que desea eliminar este colaborador?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Actualizar Colaborador" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "¿Cuáles son los roles disponibles?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Administrador: Además de poder gestionar el conjunto de " +"datos, los administradores pueden añadir y eliminar colaboradores al " +"conjunto de datos.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Editor: Los editores pueden editar el conjunto de datos " +"y sus recursos, así como acceder al conjunto de datos cuando es privado.

" +"

Miembro: Los miembros pueden acceder al conjunto de " +"datos cuando es privado, pero no editarlo.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Añadir colaboradores" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} colaborador" +msgstr[1] "{count} colaboradores" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Información Adicional" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Fuente" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Mantenedor" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versión" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Estado" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última actualización" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Antes de poder crear un data set, necesitas crear una organización" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crear una nueva organización" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"No hay organizaciones a las que le puedas asignar este conjunto de datos." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Preguntar a un administrador del sistema para crear una organización antes " +"de continuar" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "En el instante %(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ej. Un título descriptivo" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ej. mi-conjunto-de-datos" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "ej. Algunas notas útiles sobre los datos" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ej. economía, salud mental, gobierno" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "Por favor selecciona la licencia" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organización" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Sin organización" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibilidad" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Público" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Activo" + +#: 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 "" +"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, usted está 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 "¿Estás seguro de que deseas eliminar este conjunto de datos?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Siguiente: Agregar Datos" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://ejemplo.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +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 "joe@ejemplo.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email del Mantenedor" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Actualizar Recurso" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dato" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ej. Precios del Oro Enero 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Algunas notas útiles sobre los datos" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ej. CSV, XML ó JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Esto será adivinado automáticamente. Déjelo en blanco si desea" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ej. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Tamaño de Archivo" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ej. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "Tipo MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ej. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "¿Está seguro de que desea eliminar este recurso?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Anterior" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Guardar y Agregar otro" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Terminar" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +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 "" +"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene " +"datos útiles." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explorar" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Más información" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Incrustar" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Esta vista de recurso no está disponible al momento." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Incrustar vista de recurso" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Puede 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:78 +msgid "Width" +msgstr "Ancho" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Alto" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Código" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Previsualización de Recurso" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Datos y Recursos" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Este conjunto de datos no tiene datos" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crear conjunto de datos" + +#: 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/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ej: Mi Vista" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ej: Información sobre mi vista" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Quitar Filtro" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "¿Qué es una vista?" + +#: 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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Agrega conjunto de datos" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estado de Datapusher: {status}" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de Trackback" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mostrar Más {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar Solamente Populares {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Inicio" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "No se ha provisto de una licencia" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " +"Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "No existe una descripción para esta organización" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Este conjunto de datos no tiene una descripción" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Por favor intente otra búsqueda.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Hubo un error mientras se realizaba la búsqueda. Por " +"favor intente nuevamente.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +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 "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] "{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 "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] "{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 "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] "{number} grupo encontrado" +msgstr[1] "{number} grupos encontrados" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +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] "{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 "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] "{number} organización encontrada" +msgstr[1] "{number} organizaciones encontradas" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Lo sentimos, no se encontraron organizaciones" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Suscribir" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Dirección de correo electrónico" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} actualizó el grupo {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} actualizó la organización {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} actualizó el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "Ver esta versión" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} actualizó su perfil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} borró el grupo {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} borró la organización {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} borró el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "{actor} {activity_type}" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} comenzó a seguir {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} comenzó a seguir a {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} comenzó a seguir a {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} creó el grupo {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} creó la organización {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} creó el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} se registró" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" +"Establecido el autor de {pkg_link} a {new_author} (anteriormente " +"{old_author})" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "Establecido el autor de {pkg_link} a {new_author}" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "Eliminado el autor de {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" +"Ningún campo fue actualizado. Compruebe la comparativa de metadatos para más" +" detalles." + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"Establecida la dirección de correo electrónico del autor de {pkg_link} a " +"{new_author_email} (anteriormente {old_author_email})" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" +"Establecida la dirección de correo electrónico del autor de {pkg_link} a " +"{new_author_email}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "Eliminada la dirección de correo electrónico del autor de {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "Eliminado recurso {resource_link} de {pkg_link}" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" +"Modificado el valor del campo {key} a {value} en {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "Añadido campo {key} con valor {value} a {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "Añadido campo {key} a {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "Añadidos los siguientes campos a {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} con valor {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"Modificado el valor del campo {key} a {new_val}(anteriormente " +"{old_val}) en {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" +"Modificado el valor del campo {key} a {new_val}en {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "Eliminado campo {key} de {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "Eliminados los siguientes campos de {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" +"Modificada la licencia de {pkg_link} a {new_link} (anteriormente {old_link})" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" +"Modificada la licencia de {pkg_link} a {new_link} (anteriormente " +"{old_title})" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" +"Modificada la licencia de {pkg_link} a {new_title} (anteriormente " +"{old_link})" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" +"Modificada la licencia de {pkg_link} a {new_title} (anteriormente " +"{old_title})" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"Establecido mantenedor de {pkg_link} a {new_maintainer} (anteriormente " +"{old_maintainer})" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "Establecido mantenedor de {pkg_link} a {new_maintainer}" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "Eliminado el mantenedor de {pkg_link}" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" +"Establecida dirección de correo electrónico del mantenedor de {pkg_link} a " +"{new_email} (anteriormente {old_email})" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" +"Establecida dirección de correo electrónico del mantenedor de {pkg_link} a " +"{new_email}" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "Eliminado el email del mantenedor de {pkg_link}" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "Movido {pkg_link} de {old_link} a {new_link}" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "Subido un nuevo fichero al recurso {resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "Añadido recurso {resource_link} a {pkg_link}" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"Actualizada la descripción de {pkg_link} de
{old_notes}
a
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"Actualizada la descripción de {pkg_link} a
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "Eliminada descripción de {pkg_link}" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" +"Movido {pkg_link} de la organización {old_org_link} a la organización " +"{new_org_link}" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "Eliminado {pkg_link} de la organización {old_org_link}" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "Añadido {pkg_link} a la organización {new_org_link}" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "Establecida visibilidad de {pkg_link} a {visibility}" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"Actualizada la descripción del recurso {resource_link} en {pkg_link} a
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "Eliminada descripción del recurso {resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"Actualizada la descripción del recurso {resource_link} en {pkg_link} desde " +"
{old_desc}
a
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Añadido campo {key} con valor {value} al recurso " +"{resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "Añadido campo {key} al recurso {resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" +"Añadidos los siguientes campos al recurso {resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" +"Eliminado campo {key} del recurso {resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" +"Eliminados los siguientes campos del recurso {resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"Modificado el valor del campo{key} del recurso {resource_link} a " +"{new_val} (anteriormente {old_val}) en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Modificado el valor del campo {key} a {new_val} en recurso " +"{resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" +"Eliminado valor del campo {key} en recurso {resource_link} en " +"{pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" +"Establecido el formato del recurso {resource_link} a {format_link} en " +"{pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"Establecido el formato del recurso {resource_link} a {new_format_link} " +"(anteriormente {old_format_link}) en {pkg_link}" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"Renombrado recurso {old_resource_link} a {new_resource_link} en {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "Eliminada etiqueta {tag_link} de {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "Eliminadas las siguientes etiquetas de {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "{tag_link}" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "Añadida etiqueta {tag_link} de {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "Añadidas las siguientes etiquetas de {pkg_link}" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "Modificado el título de {title_link} (anteriormente {old_title})" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" +"Modificada la URL de la fuente de {pkg_link} de {old_link} a {new_link}" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "Eliminada la URL de la fuente de {pkg_link}" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "Modificada la URL de la fuente de {pkg_link} a {new_link}" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" +"Modificada la versión de {pkg_link} a {new_version} (anteriormente " +"{old_version})" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "Eliminada la versión de {pkg_link}" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "Modificada la versión de {pkg_link} a {new_version}" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Buscar Etiquetas" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "Crear Token de API" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "Tokens de API" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "No has creado ningún Token de API." + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Feed de Noticias" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mis Conjuntos de Datos" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mis organizaciones" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mis Grupos" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Actividad de los elementos que Usted sigue" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +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:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "¿Crear uno ahora?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "No eres miembro de ninguno de los grupos." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +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 "Usuarios" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +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 "" +"Su perfil le permite a otros usuarios de CKAN conocer acerca de usted y " +"sobre lo que hace." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Cambie sus detalles" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nombre completo" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ej: Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Un poco de información acerca de Usted" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Imagen del perfil" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "URL de la imagen del perfil" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Cambia tu contraseña" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Clave de administrador de sistema" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Contraseña" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirmar Contraseña" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "¿Está seguro de que desea eliminar a este miembro?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "¿Está seguro de que desea regenerar la clave API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Regenerar Clave API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Actualizar Perfil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +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 "Conectarse" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "¿Necesita una cuenta?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Entonces regístrese, solamente toma un minuto" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crear una Cuenta" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "¿Olvidó su clave?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +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 "¿Olvidaste tu contraseña?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Sesión terminada" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Usted terminó la sesión." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ya inició sesión como {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Salir" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Recordarme" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Ya inició la sesión" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Debe cerrar la sesión antes de abrir la sesión con otra cuenta." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Cerrar la sesión ahora" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registro" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Regístrese para una Cuenta" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "¿Por qué registrarse?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crear conjuntos de datos, grupos y otras cosas interesantes" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nombre de usuario" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nombre Completo" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Crear Cuenta" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Restablezca su contraseña" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Contraseña restablecida" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" +"También puede cambiar el nombre de usuario. Esto no puede ser modificado " +"después." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Actualizar contraseña" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "¿Cómo funciona esto?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simplemente ingrese una nueva contraseña y actualizaremos su cuenta" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "El usuario no ha creado ningún conjunto de datos." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Usted no ha provisto una biografía." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Este usuario no tiene una biografía." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Esto significa que solo Usted puede ver esto" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Miembro Desde" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Clave API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Restablezca su contraseña" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "Dirección de correo electrónico o nombre de usuario" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Solicitar Restablecimiento" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Ingrese su dirección de correo electrónico o nombre de usuario en el " +"recuadro y le enviaremos un email con un enlace para ingresar una nueva " +"contraseña." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Token" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Último acceso" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "Acciones" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "Revocar" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Actividad de:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de búsqueda..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Usted no está siguiendo nada" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Sin seguidores" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Buscar Usuarios" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "Purga masiva completada" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "éxito" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "Parámetro u\"{parameter_name}\" no es un enterno" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Actividad no encontrada" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "No está autorizado para ver datos sobre la actividad" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" +"El detalle sobre la actividad del conjunto de datos no está disponible" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "No está autorizado para leer el paquete" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "No está autorizado para obtener colaboradores {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "No está autorizado para borrar colaboradores {}" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "Usuario eliminado de los colaboradores" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "No está autorizado para editar colaboradores {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Usuario añadido a los colaboradores" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "No está autorizado para ver los tokens de API." + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "No está autorizado para crear tokens de API." + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"Creado Token de API: {token} " +"{copy}
¡Asegúrese de hacer una copia ahora, no podrá volver a verla de " +"nuevo!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "No está autorizado para revocar tokens de API." + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Su contraseña debe tener 8 caracteres o más." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "No se permite redirección a sitio externo." diff --git a/ckan/i18n/es_AR/LC_MESSAGES/ckan.po b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..9a08f697d87 --- /dev/null +++ b/ckan/i18n/es_AR/LC_MESSAGES/ckan.po @@ -0,0 +1,5198 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Patricio Del Boca , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Patricio Del Boca , 2021\n" +"Language-Team: Spanish (Argentina) (https://www.transifex.com/okfn/teams/11162/es_AR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: es_AR\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "No se encontró el recurso " + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "No estás autorizado para ver esta página" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completado" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendiente" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviando" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Error" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Sin actualizar aún" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Subir a DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Error en la subida:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastro del error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualización" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log de subida" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalles" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fin del log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "No se ha encontrado el recurso." + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Diccionario de datos guardado. Cualquier actualización de tipo tendrá efecto" +" una vez el recurso vuelva a ser subido a DataStore" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" no fue encontrado." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "El usuario {0} no está autorizado para actualizar el recurso {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "API de datos" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Acceso al recurso de datos mediante una API web con servicio de consulta " +"completo" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

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

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Punto de acceso API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"El API de Datos es accesible a través de las siguientes acciones de la API " +"de acción de CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Crear" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Actualizar / Insertar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Consulta (vía SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Consultando" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Ejemplo de consulta (primeros cinco resultados)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Consulta ejemplo (resultados que contienen 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Consulta ejemplo (vía sentencia SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Ejemplo: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Una simple consulta ajax (JSONP) a la data API usando jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Ejemplo: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Guardar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Campo {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Actualización de tipo" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiqueta" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descripción" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Diccionario de datos" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Columna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipo" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Cargando ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API de datos" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabla" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Diseño adaptable" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar columnas" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Esconder/Mostrar columnas" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevancia" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nombre Ascendente" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nombre Descendente" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificación" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Personalizado Ascendente" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Personalizado Descendente" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código de País" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Este grupo no tiene una descripción" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Conjuntos de Datos" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"La herramienta de previsualización de CKAN tiene algunas características " +"poderosas" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imagen" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +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://ejemplo.com/imagen.jpg (si está en blanco utiliza la url del " +"recurso)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Explorador de Datos" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Gráfico" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "error cargando la vista" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "No se pudo cargar la vista" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore ha retornado un error" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy ha retornado un error" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Tabla" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtros" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +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 "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 "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 "ej: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Eje 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (Eje 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de longitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo de GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto acercar a características" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de cluster" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Conjuntos de datos mejor valorados" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Valoración promedio" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Número de valoraciones" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ninguna valoración" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grupos más grandes" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupo" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Número de conjuntos de datos" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "No existen grupos" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Tags preferidos" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nombre de la Etiqueta" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Número de Conjuntos de Datos" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Usuarios que han creado más conjuntos de datos" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Usuario" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menú de Estadísticas" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Conjuntos de datos más editados" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Texto" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Sitio web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +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://ejemplo.com (si está en blanco usa la url del recurso)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Su navegador no soporta iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Función de autorización no encontrada: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrador" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Miembro" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Es necesario ser administrador del sistema para administrar" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Título del Sitio" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Estilo" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Lema del sitio" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Etiqueta del logotipo del sitio" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Acerca de" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Texto de la página acerca de" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Texto introductorio" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Texto en la página principal" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS personalizado" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS personalizable insertado en el encabezado de la página" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Página de inicio" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema purgando la revisión %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purga completa" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Acción no implementada." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Acceso denegado" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "No encontrado" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Solicitud incorrecta" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nombre de la acción desconocida: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Error JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Solicitud de datos incorrecta: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupo no encontrado" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organización no encontrada" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorrecto" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizaciones" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupos" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiquetas" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatos" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licencias" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "El usuario %r no está autorizado para editar %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "No autorizado para realizar una actualización masiva" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "No estás autorizado para crear un grupo" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Error de integridad" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "No estás autorizado para eliminar el grupo %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "La organización ha sido eliminada." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "El grupo ha sido eliminado." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ha sido eliminadp." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "El usuario %r no está autorizado para editar los miembros de %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "No está autorizado a crear miembros del grupo %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "No estás autorizado para borrar miembros del grupo %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Miembro del grupo ha sido eliminado." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selecciona dos revisiones antes de hacer la comparación." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Historial de Revisión Grupo CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Cambios recientes al grupo CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mensaje del log:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Ahora estás siguiendo a {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Ya no estás siguiendo a {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "No estás autorizado para ver seguidores %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Este sitio actualmente está fuera de línea. La base de datos no está " +"inicializada." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s utiliza tu correo electrónico si necesitas cambiar tu contraseña." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Busqueda incorrecta: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parámetro \"{parameter_name}\" no es un entero" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "No se encontró el conjunto de datos" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato de revisión inválido: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"No se admite la visualización de datasets de tipo \"{package_type}\" " +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "No estás autorizado a leer el paquete %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisión del conjunto de datos CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Cambios recientes al conjunto de datos CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "No está autorizado para crear el paquete" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "No está autorizado a editar este recurso" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "No estás autorizado para actualizar el conjunto de datos" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "El conjunto de datos {id} no pudo ser encontrado." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Debes añadir al menos un recurso de datos" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "No estás autorizado a crear un recurso" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "No estás autorizado para crear un recurso para este paquete" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "No se puede agregar el paquete al índice de búsqueda." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "No se puede actualizar el índice de búsqueda." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "El conjunto de datos ha sido eliminado." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "No estás autorizado a borrar el paquete %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "El recurso ha sido eliminado" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "No estás autorizado a eliminar el recurso %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "No se encontró la vista del recurso" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "No se encontraron los datos del recurso" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "No hay descargas disponibles" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "No estás autorizado a leer el conjunto de datos %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "No estás autorizado para leer el recurso %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "No estás autorizado para editar recurso" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "No se encontró la vista" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "No se encontró el tipo de Vista " + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Datos de vista de recurso no adecuados" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "No se proporcionó la vista de recurso" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "No se ha definido una previsualización." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Usuario no encontrado" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "No estás autorizado para crear un usuario" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "No estás autorizado para crear un usuario" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "No estás autorizado a eliminar el usuario con id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "No se ha especificado ningún usuario" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "No estás autorizado para editar el usuario %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Perfil actualizado" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "No estás autorizado para crear el usuario %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha erróneo. Inténtalo de nuevo." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"El usuario \"%s\" ha sido registrado, pero aún tienes la sesión iniciada " +"como \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "No estás autorizado para editar un usuario" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "La contraseña introducida no es correcta" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Contraseña anterior" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Contraseña incorrecta" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +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:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "No estás autorizado a restablecer la contraseña." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "No estás autorizado a restablecer la contraseña." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Clave de restablecimiento no válida. Inténtalo de nuevo." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Se ha restablecido tu contraseña." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "La contraseña debe tener 4 caracteres o más." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Las contraseñas introducidas no coinciden." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Debes proporcionar una contraseña" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Elemento siguiente no encontrado" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} no encontrado" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Todo" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ver" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nueva actividad en {site_title}" +msgstr[1] "{n} nuevas actividades en {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Justo ahora" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Desconocido" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Recurso sin nombre" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nuevo conjuto de datos creado." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Recursos editados." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Opciones editadas." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} vista" +msgstr[1] "{number} vistas" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vista reciente" +msgstr[1] "{number} vistas recientes" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "" +"¡No está disponible la dirección de correo electrónico del destinatario!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organización" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Falta el valor" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "No se esperaba el campo %(name)s." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Introduce un valor entero" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Debe ser un texto Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Recurso(s) del paquete invalido(s)" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "El vocabulario de etiquetas \"%s\" no existe" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Conjunto de datos" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "No se puede parsear como un JSON válido" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Se debe proporcionar una organización" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organización no existe" + +#: ckan/logic/validators.py:76 +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:116 +msgid "Invalid integer" +msgstr "Entero no válido" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Debe ser un número entero" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Debe ser un número positivo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Formato de fecha incorrecto" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "En el log_message no están permitidos los enlaces." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "id del conjunto de datos ya existe" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Nombre o identificador de grupo desconocido." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipo de actividad" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Los nombres deben ser cadenas de caracteres" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Este nombre no se puede usar" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Debe tener al menos %s caracteres de longitud" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +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:385 +msgid "That URL is already in use." +msgstr "Ese URL ya esta siendo utilizado." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Clave duplicada \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Este nombre de grupo ya existe en la base de datos" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "La etiqueta \"%s\" no debe estar en mayúsculas" + +#: 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:583 +msgid "That login name is not available." +msgstr "Este nombre de inicio de sesión no está disponible." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Este nombre de usuario no puede ser modificado." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Introduce ambas contraseñas" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Las claves deben ser cadenas de caracteres" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Su contraseña debe tener 8 caracteres o más" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Las contraseñas introducidas no coinciden" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Edición no permitida porque parece spam. Evita enlaces en tu descripción." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "El nombre debe contener al menos %s caracteres" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Este nombre de vocabulario ya está en uso." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "No se ha encontrado el vocabulario de etiquetas." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "La etiqueta %s no pertenece al vocabulario %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Falta el nombre de la etiqueta" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "La etiqueta %s ya pertenece al vocabulario %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Proporciona una URL válida" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rol no existe." + +#: ckan/logic/validators.py:768 +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:774 +msgid "Not a list" +msgstr "No es una lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "No es una cadena" + +#: ckan/logic/validators.py:811 +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:821 +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:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" es requerido cuando se ingresa \"filter_values\"" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" es requerido cuando se ingresa \"filter_fields\"" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Existe un campo de esquema con el mismo nombre" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "El email {email} no tiene un formato válido" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Falta el valor" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Intentando crear una organización como un grupo" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Debe suministrar una valoración (parámetro \"rating\")" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "La valoración debe ser un valor entero." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Error enviando la invitación por mail, el usuario no ha sido creado: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Debe haber iniciado sesión para seguir a usuarios" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "No puedes seguirte a ti mismo" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Ya estás siguiendo a {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "El usuario {username} no existe." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "La organización no puede ser eliminada mientras tenga un dataset" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id no presente en los datos" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "No se ha encontrado el vocabulario \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "No se ha encontrado la etiqueta \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +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:697 +msgid "You are not following {0}." +msgstr "No estás siguiendo a {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "No se ha encontrado el recurso." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "No ha especificado si quiere usar el parámetro \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Debe ser un par : " + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "El campo \"{field}\" no se ha reconocido en resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "No se ha encontrado el paquete." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "No se ha encontrado TaskStatus." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organización no encontrada." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "El usuario %s no está autorizado para crear paquetes" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "El usuario %s no está autorizado para editar estos grupos" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"El usuario %s no está autorizado para crear conjuntos de datos en esta " +"organización" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"No se ingresó id del conjunto de datos, no se puede comprobar autenticación." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +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 autenticación." + +#: ckan/logic/auth/create.py:76 +#, python-format +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:108 +#, 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:119 +#, 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:129 +#, 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:145 +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:148 +msgid "Not authorized to create users" +msgstr "No está autorizado a crear usuarios" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "No se ha encontrado el grupo." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "El usuario %s no está autorizado para eliminar el recurso %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +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:73 +#, 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:82 +#, 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:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "El usuario %s no está autorizado para eliminar el grupo %s" + +#: ckan/logic/auth/delete.py:103 +#, 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:107 +#, 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:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Usuario %s no autorizado para eliminar task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "No estás autorizado" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "El usuario %s no está autorizado para leer estos paquetes" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "El usuario %s no está autorizado para leer el paquete %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "El usuario %s no está autorizado para leer el recurso %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +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:249 +msgid "You must be logged in to access your dashboard." +msgstr "Tenés que iniciar sesión para acceder a tu panel de control." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "El usuario %s no está autorizado para editar el paquete %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "El usuario %s no está autorizado para editar el recurso %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"El usuario %s no está autorizado para cambiar el estado del paquete %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "El usuario %s no está autorizado para editar la organización %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "El usuario %s no está autorizado para cambiar el estado del grupo %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"El usuario %s no está autorizado para editar los permisos del grupo %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Tiene que estar conectado para editar un usuario" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "El usuario %s no está autorizado para editar el usuario %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "El usuario {0} no autorizado para actualizar al usuario {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"El usuario %s no está autorizado para cambiar el estado de la revisión" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "El usuario %s no esta autorizado para actualizar la tabla task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"El usuario %s no está autorizado a actualizar la tabla term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "No se especificó la licencia" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Otra (Abierta)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Otra (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Otra (Atribución)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Cualquiera)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Otra (No comercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Otra (No abierta)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "es dependiente de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "tiene un derivado en %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "enlaza a %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "enlazado desde %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "es hijo de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "es padre de %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "tiene un hermano %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "No existen datos de API para cargar para este recurso" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Falló carga de información de datos de API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Comience a escribir..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "No se encontraron coincidencias" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Ingreso es demasiado corto, debe tener al menos un carácter" +msgstr[1] "Ingreso es demasiado corto, debe tener al menos %(num)d carácteres" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Existen modificaciones no guardadas para este formulario" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Confirma la acción" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "¿Seguro de que deseas realizar esta acción?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirmar" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancelar" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Dejar de seguir" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Seguir" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Enlace" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Enlazar a una URL de internet (también puede enlazar a una API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Subir" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Quitar" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Subir un archivo de tu PC" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Archivo" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Guardar orden" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Guardando..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Sube un archivo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ocurrió un error" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "No se pudo subir el archivo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "No se pudo autenticar subida" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Recurso subido" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "No se pudo obtener datos para el archivo subido" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Estás subiendo un archivo. ¿Estás seguro que quieres salir y detener esta " +"subida?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Agregar Filtro" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Seleccionar un campo" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editar" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mostrar más" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Esconder" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Error %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Acerca de {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Gestionado con CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Opciones de Administrador" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Ver perfil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Panel de Control (%(num)d nuevo elemento)" +msgstr[1] "Panel de Control (%(num)d nuevos elementos)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pizarra" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Salir" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Iniciar Sesión" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registro" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Conjuntos de datos" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Buscar conjuntos de datos" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Búsqueda" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Buscar conjuntos de datos" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ir al contenido" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Cargar menos" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Cargar más" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "No hay actividades dentro de este flujo de actividad" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administración" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administradores" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuración" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Papelera" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logotipo del sitio" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "¿Seguro de que deseas restablecer la configuración?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Restablecer" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Actualizar Configuración" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opciones de configuración de CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

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 "Confirma Restablecer" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar CKAN" + +#: 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 "" +"

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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirmar Eliminación" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purgar" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Este recurso no puede ser previsualizado en este momento." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Haga click aquí para más información." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Descargar recurso" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "No está disponible la vista preliminar." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Más detalles..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "No se ha definido controlador para el tipo de dato: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estándar" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Ingreso Estándar" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mediano" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Ingreso de ancho mediano" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Completo" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Ingreso de ancho completo" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Largo" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Ingreso Largo" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Anteponer" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Anteponer ingreso" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo Personalizado (vacío)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo Personalizado" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Marcado" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de Texto" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Seleccionar" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +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 "Administradores" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Añadir un grupo" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulario de Grupo" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +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 "¿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:15 +#: 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 "Administrar" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +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 "Miembros" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Añadir grupo" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Buscar grupos..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +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 "¿Qué tal creando uno?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +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 "Editar Miembro" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Agregar Miembro" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Usuario existente" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Si quiere añadir un usuario existente, buscar el nombre del usuario abajo." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "o" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Usuario nuevo" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Si deseas invitar a un usuario, escribe su dirección de correo electrónico" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rol" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "¿Seguro de que deseas eliminar a este miembro?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Eliminar" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "¿Qué son los roles?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +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 "Crear un Grupo" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Actualizar Grupo" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crear Grupo" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Buscar conjuntos de datos..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de datos en el grupo: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nombre" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mi Grupo" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Un poco de información acerca de mi grupo..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "¿Seguro de que deseas eliminar este Grupo?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Guardar Grupo" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ver {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Eliminar el conjunto de datos de este grupo" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "¿Qué son los Grupos?" + +#: 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 "" +"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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eliminado" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "leer más" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bienvenida" + +#: 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 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 "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 "" +"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 "Esta es una sección destacada" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Ej: ambiente" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Buscar datos" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas populares" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadísticas" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunto de datos" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de datos" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Organizaciones" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Este campo es requerido" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Puedes usar formato Markdown aquí" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Personalizado" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "El formulario contiene entradas no válidas:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Campo requerido" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://ejemplo.com/mi-imagen.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL de la imagen" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Eliminar Carga" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulario de la Organización" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar Conjunto de datos" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrados para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Lo sentimos, no se encontraron conjuntos de datos para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Hacer público" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Hacer privado" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Borrador" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privado" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +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 "¿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 "Editar Organización" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Agregar Organización" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Buscar organizaciones" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Actualmente no existen organizaciones para este sitio" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nombre de usuario" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Dirección de correo electrónico" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Actualizar miembro" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} miembro" +msgstr[1] "{count} miembros" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Crear una Organización" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Actualizar Organización" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crear Organización" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +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 "¿Qué son las Organizaciones?" + +#: 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 "" +"

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 "" +"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 "Mi Organización" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Un poco de información acerca de mi organización..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"¿Estás seguro de que quieres eliminar esta organización? Nota*: La " +"eliminación no se puede realizar mientras conjuntos de datos públicos o " +"privados pertenezcan a esta organización" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Guardar Organización" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Ver {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Crear Conjunto de datos" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +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 "" +"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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Cambios" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +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 "¿Seguro de que deseas eliminar el recurso - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Ver conjunto de datos" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Editar metadatos" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Editar vista" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Previsualización" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualizar" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Asocia este grupo con este conjunto de datos" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Añadir al grupo" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "No hay grupos asociados a este conjunto de datos" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Actualizar Conjunto de datos" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +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 "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 "Añadir recurso" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +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 "Agregar vista" + +#: 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 "" +"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:85 +msgid "Add" +msgstr "Añade" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos los recursos" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ver recurso" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Editar recurso" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistas" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Punto de acceso API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Ir al recurso" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Descargar" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fuente: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Todavía no existen vistas creadas para este recurso." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "¿No encuentra las vistas que esperaba?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"A continuación algunas razones por las que podría no encontrar las vistas " +"esperadas:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Ninguna vista ha sido creada que sea adecuada para este recurso" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Los administradores del sitio pueden no haber habilitado los plugins de " +"vista relevantes" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"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:175 +msgid "Additional Information" +msgstr "Información adicional" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Última actualización de los datos" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "desconocido" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Última actualización de los metadatos" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creado" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formato" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencia" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nueva vista" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Este recurso no tiene vistas" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Añadir nuevo recurso" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +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 "" +"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 "" +"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 "Todas las vistas" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver vista" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver previsualización" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Información Adicional" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Fuente" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Mantenedor" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versión" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Estado" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última actualización" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Antes de poder crear un dataset, necesitas crear una organización" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crear una nueva organización" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"No hay organizaciones a las que le puedas asignar este conjunto de datos." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Preguntar a un administrador del sistema para crear una organización antes " +"de continuar" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ej. Un título descriptivo" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "ej. mi-conjunto-de-datos" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "ej. Algunas notas útiles sobre los datos" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ej. economía, salud mental, gobierno" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organización" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Sin organización" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibilidad" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Público" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Activo" + +#: 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 "" +"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 "¿Seguro de que deseas eliminar este conjunto de datos?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Siguiente: Agregar Datos" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://ejemplo.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +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 "joe@ejemplo.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email del Mantenedor" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Actualizar Recurso" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dato" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://ejemplo.com/dato-externo.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ej. Precios del Oro Enero 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Algunas notas útiles sobre los datos" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ej. CSV, XML ó JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Esto será adivinado automáticamente. Déjalo en blanco si deseas" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ej. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Tamaño de Archivo" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ej. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "Tipo MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ej. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "¿Seguro de que deseas eliminar este recurso?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Anterior" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Guardar y Agregar otro" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Terminar" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +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 "" +"Un recurso puede ser cualquier archivo o enlace a un archivo que contiene " +"datos útiles." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explorar" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Más información" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Pantalla completa" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Incrustar" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Esta vista de recurso no está disponible al momento." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Incrustar vista de recurso" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +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:78 +msgid "Width" +msgstr "Ancho" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Alto" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Código" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Previsualización de Recurso" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Datos y Recursos" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Este conjunto de datos no tiene datos" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crear conjunto de datos" + +#: 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/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ej: Mi Vista" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ej: Información sobre mi vista" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Quitar Filtro" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "¿Qué es una vista?" + +#: 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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Agrega conjunto de datos" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estado de Datapusher: {status}" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de Trackback" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mostrar Más {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar Solamente Populares {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Inicio" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "No se ha proporcionado una licencia" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Este conjunto de datos cumple con la Definición de Conocimiento Abierto - " +"Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "No existe una descripción para esta organización" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Este conjunto de datos no tiene una descripción" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Intenta otra búsqueda.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Hubo un error mientras se realizaba la búsqueda. Por " +"favor 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] "{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 "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] "{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 "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] "{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 "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] "{number} grupo encontrado" +msgstr[1] "{number} grupos encontrados" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +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] "{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 "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] "{number} organización encontrada" +msgstr[1] "{number} organizaciones encontradas" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Lo sentimos, no se encontraron organizaciones" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Suscribir" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Dirección de correo electrónico" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha añadido la etiqueta {tag} al conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} actualizó el grupo {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} actualizó la organización {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} actualizó el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} actualizó el recurso {resource} en el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} actualizó su perfil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} borró el grupo {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} borró la organización {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} borró el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} borró el recurso {resource} del conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} comenzó a seguir {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} comenzó a seguir a {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} comenzó a seguir a {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} creó el grupo {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} creó la organización {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} creó el conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} agregó el recurso {resource} al conjunto de datos {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} se registró" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} eliminó la etiqueta {tag} del conjunto de datos {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Buscar Etiquetas" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Feed de Noticias" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mis Conjuntos de Datos" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mis organizaciones" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mis Grupos" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Actividad de los elementos que sigues" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +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:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "¿Crear uno ahora?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "No eres miembro de ninguno de los grupos." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +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 "Usuarios" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +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 "" +"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 "Cambie sus detalles" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nombre completo" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ej: Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Un poco de información acerca tuyo" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Cambia tu contraseña" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Clave de administrador de sistema" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Contraseña" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirmar Contraseña" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "¿Seguro que deseas eliminar a este miembro?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "¿Seguro que deseas regenerar la clave API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Regenerar Clave API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Actualizar Perfil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +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 "Conectarse" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "¿Necesita una cuenta?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Entonces regístrese, solamente toma un minuto" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crear una Cuenta" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "¿Olvidaste tu contraseña?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +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 "¿Olvidaste tu contraseña?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Sesión terminada" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Cerraste la sesión." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ya inició sesión como {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Salir" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Recordarme" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Ya inició la sesión" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Debes cerrar la sesión antes de abrir la sesión con otra cuenta." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Cerrar la sesión ahora" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registro" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Regístrese para una Cuenta" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "¿Por qué registrarse?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crear conjuntos de datos, grupos y otras cosas interesantes" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nombre de usuario" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nombre Completo" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Crear Cuenta" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Restablece tu contraseña" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Restablecer Contraseña" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" +"También puede cambiar el nombre de usuario. Esto no puede ser modificado " +"después." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Actualizar contraseña" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "¿Cómo funciona esto?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simplemente ingresa una nueva contraseña y actualizaremos tu cuenta" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "El usuario no ha creado ningún conjunto de datos." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "No has proporcionado una biografía." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Este usuario no tiene una biografía." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Esto significa que solo tu puedes ver esto" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Miembro Desde" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Clave API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Restablecer tu contraseña" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Actividad de:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de búsqueda..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "No estás siguiendo nada" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Sin seguidores" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Buscar Usuarios" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "La contraseña debe tener 8 caracteres o más." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "No se permite redirección a sitio externo." diff --git a/ckan/i18n/eu/LC_MESSAGES/ckan.po b/ckan/i18n/eu/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..df0f7ad65b4 --- /dev/null +++ b/ckan/i18n/eu/LC_MESSAGES/ckan.po @@ -0,0 +1,5143 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Basque (https://www.transifex.com/okfn/teams/11162/eu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Baliabidea ez da aurkitu" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Ez duzu baimenik orrialde hau ikusteko" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Amaituta" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Zain" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Bidaltzen" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Okerra" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Oraindik eguneratu gabe" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "DataStore-ra igo" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Igoeran okerra" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Okerra:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Akatsaren aztarna:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Egoera" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Azken eguneratzea" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Inoiz" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Igoeraren log-a" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Zehetasunak" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Log-aren amaiera" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Baliabidea ez da aurkitu" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "\"{0}\" baliabidea ez da aurkitu." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "{0} erabiltzaileak ez du {1} baliabidea eguneratzeko baimenik" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "Datuen API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Datuen baliabidera sarrera erabateko kontsulta zerbitzua duen API web baten " +"bitartez" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Informazio gehiago -ean API-ren Datu nagusien eta CKAN-en DataStore-aren " +"dokumentazioa .

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "API sarbide-puntua" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Datuen API-a CKAN-en API ekintzaren hurrengo ekintzen bitartez irisgarria " +"da." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Sortu" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Eguneratu / Txertatu" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Kontsulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Kontsulta (SQL-ren bidez)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Kontsultatzen" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Kontsulta adibidea (lehenengo 5 emaitzak)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Kontsulta adibidea ('jones' duten emaitzak)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Kontsulta adibidea (SQL sententziaren bidez)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Adibidez: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "(JSONP) ajax kontsulta erraz bat API datuei jQuery erabiliz." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Adibidez: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Gorde" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Eremu {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiketa" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Azalpena" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Datuen hiztegia" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Zutabea" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Mota" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Kargatzen ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Datuen API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Taula" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsive display" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Zutabeak bistaratu" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Zutabeak bistaratu/ezkutatu" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datu multzoak orrialdeka" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Frogatzeko konfigurazioa" + +#: ckan/templates/group/read.html:13 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 "Garrantzia" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Goranzko izena" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Beheranzko izena" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Azken aldaketa" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Goranzko eremu pertsonalizatua" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Beheranzko eremu pertsonalizatua" + +#: ckan/templates/group/read.html:17 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 "Ikusienak" + +#: 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 "Testu pertsonalizatua" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "testu pertsonalizatua" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Herrialdeko kodea" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "baliabidearen testu pertsonalizatua" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Testu hau ez dago itzulita" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Talde honek ez du deskribapenik" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Datu Multzoa" +msgstr[1] "{num} Datu Multzoak" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Datu Multzo" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN -en berrikuspen tresnak ezaugarri indartsu batzuk ditu" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Jarraitzaileak" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Baliabideak" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Irudia" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Irudiaren URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"adibidez: http://adibidea.com/irudia.jpg (ituak baliabidearen url-a " +"erabiltzen badu)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Datu esploratzailea" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafikoa" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "akatsa bista kargatzean." + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Bista ez da kargatu" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStorek akats bat bidali du" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxyk akats bat bidali du" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Taula" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Iragazkiak" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Lerroko desplazamendua" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "adibidez: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Lerro kopurua" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "adibidez: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Grafiko mota" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "(1. ardatza) taldea" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serieak (2 ardatza)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Eremu mota" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude eremua" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Luzera eremua" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON eremua" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Ezaugarriei auto hurbildu" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Kluster markagailuak" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Ongien baloratutako datu multzoak" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Batez besteko balorazioa" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Balorazio kopurua" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ez dago baloraziorik" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Talde haundienak" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Taldea" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Datu multzo kopurua" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Ez dita talderik existitzen" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Etiketa gogokoenak" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Etiketaren izena" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Datu multzo kopurua" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Datu-multzo gehiago sortu duten erabiltzaileak" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Erabiltzailea" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Estatistika menua" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Gehien editatutako datu multzoak" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Testua" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Web gunea" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web orriaren Url-a" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"adibidez: http://adibidea.com (ituak baliabidearen url-a erabiltzen badu)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Zure nabigatzaileak ez du IFRAMES onartzen." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Baimen funtzioa ez da aurkitzen: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administratzailea" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Argitaratzailea" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Kidea" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Sistema administratzailea izatea beharrezkoa da kudeatzeko" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Tokiko izena" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Modua, estiloa, tankera, mota" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Tokiko leloa" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Tokiko logoaren etiketa" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Buruz" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Buruz orrialdeko testua" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Sarrera testua" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Testua hasierako orrialdean" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS pertsonalizatuta" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "" +"orriaren goiburuan txertatutako pertsonalizatu ahal den css moduko orria" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Hasiera orria" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Ezin da %s paketea purgatu berrikuste elkartuak ezabatu gabeko datu %s " +"paketeak barne dituelako %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Arazoa berrikustea purgatzeko momentuan %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purga amaitua" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Inplementatu gabeko ekintza" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Sarrera ukatua" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Ez da aurkitu" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Okerreko eskaera" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Ekintzaren izen ezezaguna: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON akatsa: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Datuen eskaera okerra: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Taldea ez da aurkitu" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Erakundea ez da aurkitu." + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Okerreko talde mota " + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Erakundeak" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Taldeak" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiketak" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatuak" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Baimenak" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "%r erabiltzaileak ez du editatzeko baimenik %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Baimenik gabe berritze masiboa burutzeko " + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Ez duzu taldeak sortzeko baimenik" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Segurtasun akatsa" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "%r erabiltzaileak ez du %s baimenak editatzeko baimenik" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ez duzu taldea %s ezabatzeko baimenik" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Erakundea ezabatu egin da" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Taldea ezabatu egin da" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ezabatu egin da" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "%r erabiltzaileak ez dauka baimenik %s editatzeko" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Ez duzu %s taldean kideak sartzeko baimenik" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ez duzu %s taldetik kideak ezabatzeko baimenik" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Taldeko kidea ezabatu egin da" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Konparaketa egin aurretik bi berrikuste aukeratu" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Berrikuste historia CKAN taldea" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Aldaketa egin berriak CKAN Taldean:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log mezua:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "{0} jarraitzen zaude" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Dagoeneko ez zaude {0} jarraitzen" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ez duzu %s jarraitzaileak ikusteko baimenik" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Gaur egun toki hau lineaz kampo dago. Datu basea ez dago hasieratua." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Mesedez eguneratu zure profila eta helbide elektronikoa." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s erabili zure posta elektronikoa zure pasahitza berreskuratu behar baduzu" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Bilaketa ez da zuzena: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametroa \"{parameter_name}\" ez da zenbaki oso bat" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Ez da datu-multzoa aurkitu" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Berrikuste formatua ez du balio :%r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"{package_type} datu multzoak ikusi {format} formatuan ez da jasangarria " +"({file} fitxategia ez da aurkitu)." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Ez duzu %s paketea irakurtzeko baimenik" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN datu multzoaren berrikuste historiala" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Aldaketa egin berriak CKAN datu multzoan" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Ez dago paketea irakurtzeko baimenduta" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Ez dago baliabide hau editatzeko baimenduta" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Ez duzu datu multzoak eguneratzeko baimenik" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "{id} datu multzoa ezin izan da aurkitu" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Gutxienez datu baliabide bat gehitu behar da" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Ez dago baliabide bat sortzeko baimenduta" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Ez dago pakete honentzako baliabide bat sortzeko baimenduta" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Ezin da da paketea bilaketa aurkibidera gehitu" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Ezin da bilaketa aurkibidea eguneratu" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Datu multzoa ezabatu da" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Ez dago %s paketea ezabatzeko baimenduta" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Baliabidea ezabatu egin da" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Ez dago %s baliabidea ezabatzeko baimenduta" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Baliabide bista ez da aurkitu" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Baliabidearen datuak ez dira aurkitu" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Ez dago deskarga erabilgarririk" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ez duzu %s datu multzoa irakurtzeko baimenik" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Ez dago %s baliabidea irakurtzeko baimenduta" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Ez dago baliabidea editatzeko baimenduta" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Bista ez da aurkitu" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Bista mota ez da aurkitu" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Baliabideare bista datuak es dira egokiak" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Baliabideen ikuspegia ezin da eman" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Aurreikuspena ez da zehaztu" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Erabiltzailea ez da aurkitu" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Ez duzu erabiltzaile bat erregistratzeko baimenik" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Ez duzu erabiltzaile bat erregistratzeko baimenik" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ez zaude baimenduta \"{user_id}\" id duen erabiltzailea ezabatzeko" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Ez da erabiltzailerik zehaztu" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Ez duzu %s erabiltzailea editatzeko baimenik" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil eguneratuta" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Ez duzu %s erabiltzailea sortzeko baimenik" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha okerra. Mesedez, berriz saiatu." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"\"%s\" erabiltzailea erregistratu egin da, baina sesioa \"%s\" bezala duzu " +"irekita oraindik" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Ez duzu erabiltzaile bat editatzeko baimenik" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Sartutako pasahitza ez da zuzena" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Aurreko pasahitza" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "okerreko pasahitza" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Ezin izan da saioa hasi. Erabiltzaile izena edo pasahitza okerra." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Ez duzu kodea reseteatzeko eskaera egiteko baimenik." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Ez duzu kodea reseteatzeko baimenik" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Berrezarpen kodea baliogabeoa. Mesedez, berriz saiatu." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Zure pasahitza berrezarri da." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Zure pasahitzak 4 karaktere edo gehiago izan behar ditu." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Idatzitako pasahitzak ez dira berdinak." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Pasahitz bat eman behar duzu" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Hurrengo elementua ez da aurkitu" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} ez da aurkitu" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Guztia / dena" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ikusi" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{site_title} -en jarduera berri 1" +msgstr[1] "{site_title} -en {n} jarduera berri" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Oraitxe bertan" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Ezezaguna" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Izenik gabeko baliabidea" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Datu multzo berri bat sortuta" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Baliabide editatuak" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Aukera editatuak" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "ikuspegi {number}" +msgstr[1] "{number} ikuspegi" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "ikuspegi egin berria" +msgstr[1] "{number} ikuspegi egin berriak" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Hartzailearen helbide elektronikoa ez dago erabilgarri!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "antolakuntza / erakundea" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "taldea" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Balorea falta da" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "%(name)s kanpoa ez zen espero" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Mesedez sar ezazu zenbaki oso bat" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Unicode testua izan behar du" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paketearen baliabidea(k) baliogabea(k)" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Estrak" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "\"%s\" etiketen lexikoa ez da existitzen" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Datu multzoa" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Ezin duzu baliozko JSON modura parseatu" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Erakunde bat ematea beharrezkoa da" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Ez da erakundea existitzen" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Erakunde honetan ezin da datu multzorik gehitu" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Zenbaki osoa ez da baliokoa" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Zenbaki oso bat izan behar du" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Zenbaki positiboa izan behar du" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Data formatua ez da zuzena" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Erregistroko mezuan ez dira loturak onartzen." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Datu multzoaren id-a jada existitzen da" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Baliabidea" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Taldearen izana edo identifikatzailea ezezaguna" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Jarduera mota" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Izenak karaktere kateak izan behar dute" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Izen hau ezin da erabili" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Gutxienez luzeraz %s karaktere izan behar ditu " + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Izenak luzeraz ezin ditu %i karaktere baino gehiago izan" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Bakarrik karaktere alfanumeriko (ascii) minuskuloak izan ditzake baita ikur " +"hauek ere: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "URL hori jada erabiltzen hari da." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "\"%s\" izenaren karaktere kopurua %s gutxienekoa baino txikiagoa da" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "\"%s\" izenaren karaktere kopurua %s gehiengoa baino haundiagoa da" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Bertsioak gehienez %i karaktere izan behar ditu" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Gako bikoiztua \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Talde izen hau dagoeneko datu basean existitzen da" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "\"%s\" etiketaren luzeera %s gutxienekoa baino txikiagoa da" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "\"%s\" etiketa %i gehiengoa baino luzeagoa da" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "\"%s\" etiketak karaktere alfanumerikoak eta ikurrak izan behar ditu: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "\"%s\" etiketa ezin da letra larritan egon" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Erabiltzaileen izenak karaktere kateak izan behar dute" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Saioa hasteko izen hau ez dago erabilgarri." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Mesedez, sar hitzazu pasahitzak" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Kodeak karakter kateak izan behar dute" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Kodeak 8 karaktere edo gehiago izan behar ditu" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Sartutako pasahitzak ez dira berdinak" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Edizioak ez du balio spam-a dirudielako. Mesedez saiatu azalpenean loturak " +"ez jartzen" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Izenak gutxienez %s karaktere izan behar ditu" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Lexiko izen hau jada erabilita dago" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Ezin da kodearen balorea %s -tik %s -ra aldatu. Kode hau irakurtzeko soilik " +"da" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Etiketen lexikoa ez da aurkitu." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "%s etiketa ez dago %s lexikoaren barnean" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Etiketaren izena falta da" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "%s etiketa %s lexikoaren barne dago jada" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Mesedez, baliozko URL bat eman" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rola ez da existitzen." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Erakunderik gabeko datu multzoak ezin dira pribatuak izan." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Ez da zerrenda bat" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Ez da kate bat" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Aita honek lotura bat sortuko lukehierarkian" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"Filter_fields \" eta \"filter_values\" luzera berdina izan behar dute" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"Filter_fields\" beharrezkoa da \"filter_values\" sartzen denean" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" beharrezkoak dira \"Filter_fields\" sartzen denean" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Izen bereko beste eskema-eremu bat existitzen da" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Emailaren formatua balioduna da" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Balorea falta da" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Talde bezalako erakunde bat sortzen saiatzen" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" +"Identifikatzaile edo izen bat emar behar duzu (parametro \"package\") " +"paketearentzako." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "(\"Rating\" parametroa) rentzat balorazio bat eman behar da" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Balorazioa zenbaki oso bat izan behar du" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Balorazioa %i eta %i ren artean izan behar du" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Akatsa gonbidapena mail bidez bidaltzean, erabiltzailea ez da sortu: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Saioa hasi behar da erabiltzaileak jarraitzeko" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Ezin duzu zure burua jarraitu" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Dagoeneko {0} jarraitzen zaude" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Saioa hasita izan behar duzu datu multzo bat jarraitzeko" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr " {username} erabiltzailea ez da existitzen." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Saioa hasita izan behar duzu talde bat jarraitzeko" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id ez da datuetan agertzen" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Ez da \"%s\" lexikoa aurkitu" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Ez da \"%s\" etiketa aurkitu " + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Saioa hasita egon behar du zerbait jarraitzeaz uzteko" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Ez zaude {0} jarraitzen" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Baliabidea ez da aurkitu" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ez duzu \"query\" parametroa erabili nahi duzun al ez zehaztu" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Pare bat izan behar du : " + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "\"{field}\" eremua ez da resource_search -ean antzeman" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Ez da paketea aurkitu." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus ez da aurkitu." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Erakundea ez da aurkitu." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "%s erabiltzaileak ez du paketea sortzeko baimenik" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "%s erabiltzailea ez du talde hauek editatzeko baimenik" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"%s erabiltzailea ez du erakunde honetan datu multzorik sortzeko baimenik" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Ez da datu multzoaren id -a sartu, ezin da baimena egiaztatu." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Baliabide honentzat ez da datu multzorik aurkitu, ezin da autoritatea " +"egiaztatu." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"%s erabiltzaileak ezu du datu multzoan baliabideak sortzeko baimenik %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "%s erabiltzaileak ez du pakete hauek editatzeko baimenik" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "%s erabiltzaileak ez du taldeak sortzeko baimenik" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "%s erabiltzaileak ez du erakundeak sortzeko baimenik" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"{user} erabiltzaileak ez du API-ren bidez erabiltzaileak sortzeko baimenik" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ez duzu erabiltzaileak sortzeko baimenik " + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Ez da taldea aurkitu." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "%s erabiltzaileak ez du kideak gehitzeko baimenik" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "%s erabiltzaileak ez du %s taldea editatzeko baimenik" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "%s erabiltzaileak ez du %s baliabidea ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Baliabide ikuspegia ez da aurkitu, ezin da baimena zehaztu." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "%s erabiltzaileak ez du %s erlazioa ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "%s erabiltzaileak ez du talderik ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "%s erabiltzaileak ez du %s taldea ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "%s erabiltzaileak ez du erakunderik ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "%s erabiltzaileak ez du %s erakundea ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "%s erabiltzaileak ez du task_status ezabatzeko baimenik" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Ez duzu baimenik" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "%s erabiltzaileak ez du pakete hauek irakurtzeko baimenik" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "%s erabiltzaileak ez du %s paketea irakurtzeko baimenik" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr " %s erabiltzaileak ez du %s baliabidea irakurtzeko baimenik" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr " %s erabiltzaileak ez du %s taldea irakurtzeko baimenik" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Saioa hasita izan behar duzu kontrol panelera sartzeko" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "%s erabiltzaileak ez du %s paketea editatzeko baimenik" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "%s erabiltzaileak ez du %s baliabidea editatzeko baimenik" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "%s erabiltzaileak ez du %s paketearen egoera aldatzeko baimenik " + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "%s erabiltzaileak ez du %s antolakuntza editatzeko baimenik" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "%s erabiltzaileak ez du %s taldeko egoera aldatzeko baimenik" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "%s erabiltzaileak ez du %s taldeko egoera aldatzeko baimenik" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "%s erabiltzaileak ez du %s taldeko baimenak editatzeko baimenik" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "%s erabiltzaileak ez du %s erabiltzailea aldatzeko baimenik" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "{0} erabiltzaileak ez du {1} erabiltzailea eguneratzeko baimenik" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "%s erabiltzaileak ez du berrikustearen egoera aldatzeko baimenik" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "%s erabiltzaileak ez du task_status taula eguneratzeko baimenik" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "%s erabiltzaileak ez du term_translation taula eguneratzeko baimenik" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Lizentzia ez da zehaztu" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Domeinu Publikoa Dedikazioa eta Lizentzia (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database Lizentzia (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Aitortu Lizentzia" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZer" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Beste bat (irekita)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Beste bat (jabari publikoa)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Beste bat (atribuzioa)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Lizentzia (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons ez-komertziala (edozein)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Beste bat (ez-komertziala)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Beste bat (ez irekia)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "%s -ren esku dago" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr " %s -ren mendekoa da" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "%s -ren deribatua da" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "%s -n du deribatu bat" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "%s lotzen du" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "%s -tik lotuta" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "%s-ren semea da" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "%s-ren aita da" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "%s anaia bat du" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Ez dira baliabide hau kargatzeko API daturik existitzen" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "API datuen informazioaren karga okerra izan da" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Hasi idazten ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Ez dira bateragarritasunak (koinzidentziak) aurkitu" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Sarrera oso laburra da, gutxienez karaktere bat eduki behar du" +msgstr[1] "" +"Sarrera oso laburra da, gutxienez %(num) karaktere bat eduki behar du" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Gordetu gabeko aldaketak daude formulario honentzat" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Mesedez, ekintza baieztatu" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Ziur zaude ekintza hau egin nahi duzula?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Berretsi" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Bertan behera utzi" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Jarraitzen utzi" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Jarraitu" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Lotura" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Interneteko URL batera lotu (API batera ere lotu daiteke)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Igo" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Kendu" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Zure ordenagailura fitxategi bat igo" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Fitxategia" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Ordena gordetu" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Gordetzen..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Fitxategi bat igo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Errore bat gertatu da" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Fitxategia ezin izan da igo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Ezin izan da igoera baimendu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Baliabidea igota" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Ezin izan dira igotako fitxategiarentzat daturik lortu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Fitxategi bat igotzen zaude. Ziur zaude atera eta igoera hau gelditu nahi " +"duzula?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Iragazkia gehitu" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Eremu bat hautatu" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editatu" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Erakutsi gehiago" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Ezkutatu" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "%(error_code)s akatsa " + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "{0} -ri buruz" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +" CKAN jabepean" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Administratzaile aukerak" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Profila ikusi" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Kontrol panela (%(num) d baliabide berria)" +msgstr[1] "Kontrol panela (%(num) d baliabide berriak)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Arbela" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Irten" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Saioa hasi" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Erregistroa" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datu multzoak" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Datu multzoak bilatu" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Bilaketa" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Edukinera joan" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Gutxiago kargatu" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Kargatu gehiago" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Jarduera korronte honen barruan ez dago jarduerarik" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrazioa" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administratzaileak" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurazioa" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Paperontzia" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Gunearen logotipoa" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Ziur zude konfigurazioa berrabiatu nahi duzula?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Berrabiatu" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Konfigurazioa eguneratu" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN-en konfigurazio aukerak" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Tokiko izenburua: Hau CKAN istatziaren izenburua da. " +"Hainbat tokitak ikusi daiteke CKAN -en barruan. " + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Berrezarpena baieztatu" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN kudeatu" + +#: 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 "" +"

Sistemaren erabiltzaile administratzaile bakoitzak CKANen kontrol osoa " +"dauka Kontuz jardun!

Erabiltzaile administratzaileen ezaugarriak " +"erabiltzeko laguntza gisa, ikusi CKAN sistemaren erabiltzaile administratzaileen gida

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Ezabaketa baieztatu" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purgatu" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Baliabide hau momentuz ezin da aurreikusi" + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Informazio gehiago jasotzeko egin klik hemen." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Baliabidea descargatu" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Aurreikuspena ez dago eskuragarri." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Xehetasun gehiago ..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Ez da kontrolatzailea definitu datu motarako: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Estandarra" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Sarrera estandarra" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Ertaina" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Zabalera ertaineko sarrera" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Osoa" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Zabalera osoko sarrera" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Luzea" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Sarrera luzea" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Lehenetsi" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Sarrera lehenetsi" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Eremu pertsonalizatua (hutsik)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Eremu pertsonalizatua " + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markatuta" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Testu eremua" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Hautatu" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Ekintza mugimendua" + +#: 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 "Administratzaileak" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Talde bat gehitu" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Talde formularioa" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Ziur - {name} taldea ezabatu nahi duzula?" + +#: 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 "Ziur - {name} kidea ezabatu nahi duzula?" + +#: 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:15 +#: 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 "Kudeatu" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Taldea editatu" + +#: 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 "Kideak" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Taldea gehitu" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Taldeak bilatu..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Momentu honetan ez da toki honentzako talderik existitzen" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Zer moduz bat sortuz?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Kide guztiak itzuli" + +#: 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 "Kidea editatu" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Kidea gehitu" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Erabiltzailea jada existitzen da" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Existitzen den erabiltzaile bat gehitu nahi baduzu, erabiltzailearen izena " +"behean bilatu" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "edo" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Erabiltzaile berria" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Erabiltzaile bat gonbidatu nahi baduzu, idatzi bere helbide elektronikoa" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rola" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Ziur erabiltzaile hau ezabatu nahi duzula?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Ezabatu" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Zer dira rolak?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administratzailea:taldeko informaziona editatu dezake, " +"baita erakundearen kideak administratu " +"ere.

kidea:taldeetako datu multzoak gehitu/ezabatu " +"ahal ditu.

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Talde bat sortu" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Taldea eguneratu" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Taldea sortu" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Datu multzoak bilatu..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datu multzoak taldean: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Izena" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Nire taldea" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Nire taldeari buruzko informazio piska bat..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Ziur talde hau ezabatu nahi duzula?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Taldea gordetu" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ikusi {izena}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Talde honen datu multzoa ezabatu" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Zer dira taldeak?" + +#: 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 -go taldeak erabili ahal dituzu datu multzoen bildumak sortu eta " +"administratzeko. Hau proiektu zehatz baten edo talde baten, edo gai " +"partikular bat datu multzoak katalogatzeko erabili daiteke, edo norberaren " +"argitaratutako datu multzoak modu oso erraz batean bilatu eta aurkitzeko." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Ezabatu da" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "gehiago irakurri" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Ongi etorri" + +#: 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 kode irekiko datu plataforma da, mundu mailan aintzindari.

CKAN erabiltzeko prest dagoen software irtenbide bat da, zein argitaretzeko, banantzeko, aukitzeko eta erabiltzeko tresnak eskainiz datuak esduragarriak eta erebligarriak eginten ditu (datu bilteguiak eta API eskaintza sendioak barne). CKAN bere datuak irekiak eta erabligarriak egin nahi dituzten hornitzailetzat (adminiztrazion nazionalak eta regionalak, kopaniak eta erakundeak ) orientatuta dago..

CKAN gobernuak eta munduko erabilgarri taldeak erabiltzen dute eta hainbat datu oficial eta komunitariok kudeatzen ditu, tokiko, estatuko eta nazioarteko gobernueen portalak sartuz, adibidez\n" +"data.gov.uk Erresuma batuetakoa, publicdata.eu Europar batasuneko; dados.gov.br Basileko; baita Danimarkako Erresuma batuko eta Holandako gobernuko portalak , Estatu batuetako, Erresuma batuetako, Argentinako, Finlandiako y eta beste lekuetako hiriak eta udalerriak

CKAN: http://ckan.org/
Tour de CKAN: http://ckan.org/tour/
Funtzioen berrikuspena: http://ckan.org/features/" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Ongi etorria CKAN -era" + +#: 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 "" +"Hau CKAN -i edo tokiari buruzko testu lagunkoia da. Ez dugu hemen doan " +"mezurik baina berehala izango dugu." + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Hau sekzio nabarmendua da" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Adibidez: Ingurumena" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Datuak bilatu" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiketa popularrak" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estadistika" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datu multzoa" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datu multzoak" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "erakundeak" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "taldeak" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Eremu hau beharrezkoa da" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"formato Markdown emen erabili daitzeke" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Balorea" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Pertsonalizatuta" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formularioak baliogabeko sarrerak ditu:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Beharrezko eremua" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://adibidea.com/nire-irudia.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Irudiaren URL -a" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Karga ezabatu" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Erakundearen formularioa" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Datu multzoa editatu" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\" -rentzat aurkitutak" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Sentitzen dugu baina ez dira \"{query}\" -rentzat datu multzorik aurkitu " + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Publikoa egin" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Pribatua egin" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Zirriborroa" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Pribatua" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Erakunde honek ez ditu berekiko elkartutako daturik" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Ziur - {name} erakundea ezabatu nahi duzula?" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "Erakundea editatu" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Erakundea gehitu" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Erakundeak bilatu" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Momentu honetan ez da toki honetarako erakunderik existitzen" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Erabiltzailearen izena" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Helbide elektronikoa" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Kidea eguneratu" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administratzaileak: datu multzoak gehitu/editatu eta " +"ezabatu ahal ditu, baita erakunde baten kideak administratu ere.

" +"

Editoreak:datu multzoak gehitu eta editatu ahal ditu, " +"baina ezin ditu erakunde baten kideak administratu.

" +"

Kideak: erakunde baten datu multzo pribatuak ikus " +"ditzake, baina ezin ditu datu multzo berririk gehitu.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} kidea" +msgstr[1] "{count} kideak" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Erakunde bat sortu" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Erakundea eguneratu" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Erakundea sortu" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Erakundeetan datu multzoak: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Zer dira erakundeak?" + +#: 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 "" +"

Erakundeak datu multzoetarako argitaletxe sail gisa jokatzen du " +"(adibidez, Osasun Saila). Honek esan nahi du datu multzoak argitaratu ahal " +"direla sail bati dagokiolako banakako erabiltzaile bati beharrean.

" +"

Erakundeen barnean, administratzaileak beren kideentzat rolak eta " +"baimenak esleitzen dituzte, banakako erabiltzaileei erakunde horri buruzko " +"datu multzoak argitaratzeko eskubidea emanez (adibidez: Nazioko Estatistika " +"Bulegoa).

" + +#: 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 -en Erakundeak sortu, kudeatu eta datu multzoen bildumak argitaratzeko " +"erabiltzen dira. Erabiltzaileek profil ezberdinak izan ditzakete erakunde " +"batean, beren sortzeko, editatzeko eta argitaratzeko baimena mailaren " +"arabera." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Nire erakundea" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Nire erakundeari buruzko informazio piska bat..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Gorde Erakundea" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Ikusi (erakunde_izena)" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Datu multzoa sortu" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Zer dira datu multzoak?" + +#: 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 -en datu multzo bat datu baliabideen bilduma da (fitxeroen entzekoak), " +"URL bati lotutako azalpen eta informazio batekin batera. Datu multzoak dira " +"erabiltzaileek datu bat bilatzen dutenean ikusten dutena. " + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Aldaketak" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ziur - {name} datu multzoa ezabatu nahi duzula?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ziur - {name} baliabidea ezabatu nahi duzula?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Datu multzoa ikusi" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Metadatuak editatu" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Ikuspegia editatu" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Aurreikuspena" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Eguneratu" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Erlazionatu talde hau datu multzo honekin" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Gehitu taldeari" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Ez dago datu multzo honekin erlazionaturiko talderik" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Datu multzoa eguneratu" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Datuak gehitu datu multzora" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Baliabide berria gehitu" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Baliabidea gehitu" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Baliabide berria" + +#: 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 "Ikuspegia gehitu" + +#: 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 "" +"Data Explorer-en bistak motelak eta fidagarritasunik gabekoa izan daitezke, " +"DataStore luzapena aktibatuta izan ezean. Informazio gehiago nahi izanez " +"gero Data Explorer -en dokumentazioa berrikusi." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Gehitu" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Baliabide guztiak" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Baliabidea ikusi" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Baliabidea editatu" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Bistak" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API sarbide-puntua" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Baliabidera joan" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Deskargatu" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Iturria: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Oraindik ez dira baliabide honentzako bistak existitzen" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Ez dituzu espero zenituen bistak aurkitzen?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Jarraian espero zenituen bistak ez aurkitzeko arrazoi batzuk:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Baliabide honentzat egokia den bistarik ez da sortu" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Tokiko administratzaileak garrantzizko bisten plugins-ak gaitu gabe izan " +"ditzakete" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Bista batek DataStore-a behar badu, orduan DataStorearen plugin-a gaitu gabe" +" egon daiteke, edo datuak DataStorean argitaratu gabe egon daitezke, edo " +"DataStoreak ez du datuak prozesatzeaz bukatu" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Informazio gehigarria" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Eremua" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Datuen azken eguneratzea" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "ezezaguna" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadatuen azken eguneratzea" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Sortuta" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formatua" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Lizentzia" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ikuspegi berria" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Baliabide honek ez ditu bistarik" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Baliabide berria gehitu" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

datu multzoak ez ditu daturik,zergatik ez duzu baten bat gehitzen?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "{format} -en iraultze osoa" + +#: 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 "" +"Erregistro honetan sar zaitezke %(api_link)s erabiliz (ikusi " +"%(api_doc_link)s) edo %(dump_link)s bat deskargatuz." + +#: 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 "" +"Erregistro honetan sar zaitezke %(api_link)s (ikusi %(api_doc_link)s) " +"erabiliz." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Ikuspegi guztiak" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ikuspegia ikusi" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Aurreikuspena ikusi" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Anformazio gehigarria" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Iturria" + +#: 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 +msgid "Author" +msgstr "Egileak" + +#: 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 "Mantentzailea" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Bertsioa" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Egoera" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Azken eguneratzea" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Data set sortu baino lehen, erakunde bat sortu behar duzu." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Erakunde berri bat sortu" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Ez dago erakunderik datu-multzo hau esleitzeko." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Erakunde bat sortu aurretik, sistemaren administratzaile bati galdetu." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Izenburua" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "adibidez. izenburu deskribatzaile bat" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "adibidez. Nire-datu-multzoa" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "adibidez. Datuei buruzko baliozko hainbat ohar " + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "adibidez. Ekonomia, buruko osaduna, gobernua" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Lizentzien esanahiak eta informazio gehigarria opendefinition.org -n " +"aurkitu daiteke" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Antolakuntza" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Erakunderik gabe" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Ikusgaitasuna" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Publikoa" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktiboa" + +#: 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 "" +"Goian aukeratu duzun lizentzia datuakdatu multzo honetan gehitzen " +"dituzun edozein baliabide fitxategien edukietan besterik ez du aplikatzen. " +"Inprimaki hau bidaltzean, inprimakian sartutakometadatosbaloreaklizentziaren menpe " +"askatzearekin ados zaude Open Database." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Ziur datu multzo hau ezabatu nahi duzula?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Hurrengoa: Datuak gehitu" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://adibidea.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Egilearen email-a" + +#: 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 "joe@adibidea.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Mantentzailearen email-a" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Baliabidea eguneratu" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Datuak" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "adibidez. Urrearen prezioak 2011ko Urtarrilean" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Datuei buruzko baliozko hainbat ohar" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "adibidez. CSV, XML edo JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Hau automatikoki igarriko da, utzi bete gabe nahi baduzu" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "adibidez. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Fitxategiaren tamaina" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "adibidez. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME mota" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "adibidez. Aplikazioa / json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Ziur baliabide hau ezabatu nahi duzula?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Aurrekoa" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Gorde eta beste bat gehitu" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Bukatu" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Zer da baliabide bat?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Baliabide bat baliozko datuak dituen edozein fitxategi edo fitxategirako " +"lotura izan daiteke." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Arakatu" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Informazio gahiago" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Txertatu" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Baliabidearen ikuspegi hau ez dago momentuz erabilgarri." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Baliabidearen ikuspegia txertatu" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Txertatze kodea CMS edo HTML gordina jasaten duen blog batean kopiatu eta " +"itsasi dezakezu" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Zabalera" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Altua" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kodea" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Baliabidearen aurreikuspena" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Datuak eta baliabideak" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Datu multzo honek ez ditu daturik" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Datu multzoa sortu" + +#: 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 "Datuak gehitu" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "adibidez: Nire ikuspegiari buruzko informazioa" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "adibidez: Nire ikuspegiari buruzko informazioa" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Iragazkia kendo" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Zer da ikuspegi bat?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Ikuspegi bat baliabide bati buruz izaten diren datuen irudikapena da" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Datu multzoa gehitu" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher -aren egoera: {status}" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback-aren URL-a" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Erakutsi gehiago {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Popularrak bakarrik erakutsi {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Ez dago bilaketa honekin bat egiten duen {facet_type}" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Hasiera" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Hizkuntza" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Joan" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Ez da lizentzia batez hornitu" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Datu multzo honek Ezagutza Irekiko Esanahiarekin bat dator - Definizioa " +"Ireki" + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Ez dago erakunde honentzako describapenik" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Datu multzo honek ez du describapenik" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr " -ren arabera antolatu" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Emaitzak iragazi" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Mesedez saiatu beste bilaketa batekin.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Akats bat gertatu da bilaketa egiten zen " +"bitartean.Mesedez saiatu berriro.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "datu multzo {number} aurkituta \"{query}\" -rentzat" +msgstr[1] "{number} datu multzo aurkitutak \"{query}\" -rentzat" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Sentitzen dugu baina ez dira \"{query}\" -rentzat datu multzorik aurkitu " + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] " datu multzo {number} aurkituta" +msgstr[1] "{number} datu multzo aurkituta" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Ez dira datu multzorik aurkitu" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "talde {number} aurkituta \"{query}\" -rentzat" +msgstr[1] "{number} talde aurkitutak \"{query}\" -rentzat" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Sentitzen dugu, ez da talderik aurkitu \"{query}\" -rentzat" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "talde {number} aurkituta" +msgstr[1] "{number} talde aurkitutak" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ez da talderik aurkitu" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "\"{query}\"rako aurkitutako {number} erakundea" +msgstr[1] " \"{query}\"rako aurkitutako {number} erakundeak" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Sentitzen dugu, ez dira erakunderik aurkitu \"{query}\" -rentzat" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "erakunde {number} aurkituta" +msgstr[1] "{number} erakunde aurkitutak" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Sentitzen dugu, ez dira erakunderik aurkitu" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Soziala" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Harpidetu" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Helbide elektronikoa" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr " {actor} ek {tag} etiketa gehitu du {dataset} datu multzoan" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} -k {group} taldea eguneratu du " + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} -k {organization} erakundea eguneratu du" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} -k {dataset} datu multzoa eguneratu du" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} -k {dataset} datu multzoaren {resource} baliabidea eguneratu du" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} -ek profila eguneratu du" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} -k {group} taldea ezabatu du " + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} -k {organization} erakundea ezabatu du " + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} -k {dataset} datu multzoa ezabatu du " + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"{actor} -k {dataset} datu multzoaren {resource} baliabidea ezabatu du " + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} {dataset} segitzen hasi da" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} {group} segitzen hasi da" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} {user} segitzen hasi da" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} -k {group} taldea sortu du " + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} -k {organization} erakundea sortu du" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} -k {dataset} datu multzoa sortu du " + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} -k {resource} baliabidea gehitu dio {dataset} datu multzoari " + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} erregistratu egin da" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} -k {dataset} datu multzoaren {tag} etiketa ezabatu du" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etiketak bilatu" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Albiste Feed-a" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Nire Datu Multzoak" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Nire erakundeak" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Nire taldeak" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Jarraitzen dituzun elementuen jarduerak" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Ez duzu datu multzorik sortu" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Sortu bat orain?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Ez zara inongo talderen kide." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Ez zara inongo erekunderen kide." + +#: 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 "Erabiltzaileak" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontuaren informazioa" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Zure profilak CKAN -en beste erabiltzaieei zutaz eta egiten duzunaz jakitea " +"uzten die." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Aldatu zure xehetasunak" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Izen osoa" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "adibidez: Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "adibidez: joe@adibidea.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Zure buruari buruzko informazio piska bat" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Jakinarazpen email-etara harpidetu" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Aldatu zure pasahitza" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Sistemaren administratzailearen gakoa" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Pasahitza" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Pasahitza baieztatu" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Ziur erabiltzaile hau ezabatu nahi duzula?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ziur API kodea birsortu nahi duzula?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "API kodea birsortu" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Profila eguneratu" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Erabiltzaile guztiak" + +#: 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 "Konektatu" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Kontu bat behar al duzu?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Orduan erregistratu, minutu bat besterik ez dizu eramango" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Kontu bat sortu" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Pasahitza ahaztu duzu?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Ez dago arazorik, erabili gure pasahitza berreskuratzeko imprimakia " +"berrezartzeko." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Pasahitza ahaztu duzu?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Saioa amaitua" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Saioa amaitu duzu." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Dagoeneko {user} moduan hasi duzu saioa" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Irten" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Gogorarazi" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Dagoeneko saioa hasi duzu" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Saioa itxi behar duzu beste kontu batekin saioa ireki baino lehen." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Saioa orain itxi" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Erregistroa" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Kontu bat erregistratu" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Zergatik erregistratu?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Datu multzoak, taldeak eta beste hainbat gauz interesgarriak sortu" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "erabiltzaile izena" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Izen osoa" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Kontua sortu" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Zure pasahitza berrezarri" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Pasahitza berrezarrita" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Pasahitza eguneratu" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Nola funtzionatzen du?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Idatzi pasahitz berri bat eta zure kontua eguneratuko dugu" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Erabiltzaileak ez du datu multzorik sortu." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Ez duzu biografiarik hornitu." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Erabiltzaine honek ez du biografiarik." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Ireki ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Honek, hau zuk bakarrik ikus dezakezula esan nahi du" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr " -tik bazkidea" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API kodea" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Zure pasahitza berrezarri" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr " -n jarduera" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Bilaketa zerrenda..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Ez zaude ezer jarraitzen hari" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Jarraitzailerik gabe" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Erabiltzaileak bilatu" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Kodeak 8 karaktere edo gehiago izan behar ditu." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Kanpoko gunera ezin da berbideratu" diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..425a3771b3193299a811e1eb74105c8e913d1ab4 GIT binary patch literal 7403 zcmeH~TW}p^9l$?sqA8+s@q!8;V8;e}PLgtIIY4bl0|c8i)1){K0<$@1bF$@}-LSi- zY1+w*Eo~BK>VxAjqd4OzjGo#_8`17BD`oF9WOjMjHti=w|g#0 z+TxQ>bkhCpcmLnNJ-@r+;wKgV9^(I}`2W_0(rWzs#U)Ddr+&%fL-1AjLHH*81pFKP z7+mwdWZsP_Tj2-jZ-bwKcff1mBXA9zfLFn|9`BRHLTHs4C3x5uC@NLMS zy6sY>J_7H8((Z%&shvFJ+=tV45h9}UpvYN)YvEU+=ra#Rj+deA6T$bx(`o-7;4a$l zK$$)gresJY=z%~vj0iQ zk?J?F1-=ehs{RBw!+$}E>pM|i`gcRI_Y`DE%|fyBPoU)6ub}LA28vw&gmUf$S1Pp? zUI#x83sB-|0?PdFL)mWu-UwfTyWklp`|czOL_QCSTzjG9%Oce9*HG;8cPM&Yf3;FW zFbhSFuR*cTQ&9H#ZrYxKJ+$ZHgYX@=9u9s~saxQFC~^246uX{;;)mCv$a^6|+yt+J zqUYzJ==U&`_}HDcpMXYyhDEsb(BKP;8*z;%b0r-z} zd^3|Jt{u1uJ_`roAEB(@Oi)W)J1Hlj#Pu`M**WA@!sMw(t)i_%dk^h=-VOp?uwBP4 z&|y_J^k?C()s>?^Cgyn?N|eA@~^B?!H;?iv_KU!A}jD%m=Z#*Q1AhwRx218@+`lg*R5UWR?4jf?b>773GH(0`38el)m?Bx&sW`L%PDCm zFgiFs#_iq{`c|OsbxNV_L$6fw#*#O`Y=wck&-W^$$y1M5fgZAL7tfSzV`(#*xW+1> zUtwI^dz>H?Rg6)FFkre`d}j=uw#V45-j_`}19iVwwj~l&kDK>=-_D1+C?e=^d{jC| zD>ysQq37uUcZTbA8G|C0wn8ob3bp5A%@NDD^62!xEvebFzARu}Xcv7a9M|2xkL_st zo*tC=>~VKnB}XD5u!%=|{A{7}z`*vtWT^>^ZI)joYP7Lfptgyil~LjbCv0=_HlA18 zydq{B#z#c4mRPG04<_(EpHK*bG0!Kyd#zE`YnO-6uGeuZ1XUl&VIHfku{LNJBhV$! zEvi175F@}aS}-0EKH8Fu!Ee4rn8;AAgCqJpBZdw}?YuKA8QF&?tu&jGodTOQ8Nn~c zbuylKy00QqYH!%&1l9`FcE4!3wJcm6QO(1F>i4~2tWmdAe+4V*yeHX?+B@vPtN8h( zE+i)ojCf<@Td7iZ12sTy=s~Nfv8v@tlH@=H%;E8y|$7tUNxMgQX1pbw4Hdo zkrwJfr(k=@(-g5U*h9Ks3Z+yu8UY%rFCvWPlL2W84x21?+@jvsK4C`lmYbxSq_+s~ z2X<-L4As)7Ed(EN(xpIkM(m+=c-eirk;1VcRA5(PO23LH;=74zj^TdsyEMk7ip;4Sf?+nOw`6d_+Jsply|Nx?fa9$#p%P(W=*tgyCqAYik=D8_QDs-M|^P z_sD*2-ebdVTgalIt)rvk_6==jzqZzv{!+!aN|}2-zZ~SWJ8GK2-5c)I$?M(gT)kO$ zw6^s2^maFF+mUT=>GG(UE(&s$=gg;G+i1yh+&fL3pv>G|35PSA8uLV=VcXAiQ!onD zvz*>ErFXf8SuRin9hO2vnwqw%DUo{RTK$Koly zY>>u$bd=firw;4*P&^qe>S!UFm3dVeQc?BPVOhS&=t0JqQjLzYB{PzV@#Lw)GS%Gh z$vir$(NWoOn!RT=i+&i*>G(x6V0NEp#tAuea`}0PJIky&g}~Et{?kU_d5!oY3No01 zQ->9TS5Xs*k;v>khj#H4TgnmA!y?2mN65GG(huSnqnW6xqaVcwqZc$MU?c=wCWCA; z&Bn%l8dVSSx}aGsn$9NXJ#N;bwrpQDrW1o5L8|xw^Pd-KSB#16t420sD?X0vJ&1-F zJQmm&rT#zPH}boEK*!Ta zHD_d7SYq?U5}YTFIg~i3inUINL68a2Fi=*b4)UKsGx1A26;)NdU#3gwnI;31VsYFn zW)=@}KsBCZB2x(AWSN{APZQO(7abjoo{jg{RZfDoHYze4;YcIkWah(3pW+89upG@6QkRn&E3-tJB+}w3+A}o)5@RrP z0b@TWmRhDSYi9U=!U(`R@|S&#=NfU&>9VkvP;z=xK_;p&mJFszH*0(u8*iJk#_4$T z>?tmu=J;fWSwm@;+EBkHjB!>5hA9+^sTjCXJjLkg{U-L6dr*~r&ZBohmXZ_k zB*B+Ps3zv(=_RfXG3n7IltM%%bB8UOOgFmJ`s9#g>eI5Rsrkl{V#I?=Qi%O|!4XRY zadbo{TBg@Iipe?kTfJ6O#H8^d1R$5mO~M=#&#eq-vlXY-eJIxCRc{lj3Dq0vo3R1#^`{V$3qgQpIgB1&YM zq}ObE1RBw?YH zB~unw%n|7un>Ur2TP309xHDPI9s~)?O|3zav+g9Hd}#%&|L}b8H|nb2#mzr%&-FXD W`3Ge3Q?v2ouzBpg->9`8vi}8${HN6b literal 0 HcmV?d00001 diff --git a/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..2adab58b22d --- /dev/null +++ b/ckan/i18n/fa_IR/LC_MESSAGES/ckan.po @@ -0,0 +1,5024 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Amir Reza Asadi , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Amir Reza Asadi , 2021\n" +"Language-Team: Persian (Iran) (https://www.transifex.com/okfn/teams/11162/fa_IR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: fa_IR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "صوت" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "آدرس فایل صوتی" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "منبع یافت نشد" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "اجازه دیدن این صفحه را ندارد" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "تاریخ آخرین به‌روز رسانی" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "API داده" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "ایجاد" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "" + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "جدول" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "نمایش ستون‌‌ها " + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "" + +#: ckan/templates/group/read.html:17 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 "" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "دنبال کنندگان" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "دقیقه" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "نقشه" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "بزرگترین گروه‌ها" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "گروه" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "تعداد داده‌ها" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "منوی آمار" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "ویدیو" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "آدرس فایل ویدیویی" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "تابع اخیار دهنده یافت نشد %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "مدیر" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "ویرایشگر" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "عضو" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "نیاز به دسترسی مدیریت برای تنظمیات مدیریتی است" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "عنوان سایت" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "استایل" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "لوگوی تگ سایت" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "درباره" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "متن صفحه درباره" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "توضیح" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "متن روی صفحه اصلی" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "css سفارشی" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "سفارشی سازی css درج شده در header صفحه" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "صفحه اصلی" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "پاک سازی کامل شد" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "عملیات مورد نظر پیاده سازی نشده است" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "دسترسی منع شده است" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "یافت نشد" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "درخواست نامناسب" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "این عمل شناخته شده نیست: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "" +"خطا در JSON:\n" +"%s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "تقاضای نامناسب داده : %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "گروه یافت نشد" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "نوع گروه اشتباه است" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "سازمان ها" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "گروه ها" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "برچسب ها" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "فرمت ها" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "اجازه ساخت گروه ندارید" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "خطای یکپارچگی" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "دسترسی لازم برای حذف گروه %s را ندارید." + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "سازمان حذف شده است" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "گروه حذف شده است" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "کاربر مورد نظر یافت نشد" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "هیج کاربری مشخص نشده است" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "پروفایل به روز رسانی شد" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "کپجا غلط وارد شده است دوباره تلاش کنید" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "گذرواژه نادرست" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "ورود نا موفق . نام کاربری یا گذرواژه درست وارد نشده است" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "درج ایمیل الزامی است. " + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "کد بازیابی غلط است مجددا تلاش کنید" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "گذرواژه شما ریست شد" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "گذرواژه می باید حداقل 4 حرف یا بیشتر باشد" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "عدم تطبیق در گذرواژه ها" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "افزوده ها" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "گروهی به این نام در دیتا بیس وجود دارد" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "نام می بایست حداقل %s کاراکتر داشته باشد" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "نمیشه که خودت رو دنبال کنی" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "همین حالا هم دنبال می‌کنید {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "برای دنبال کردن یک مجموعه داده باید وارد سایت شوید." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "گروه مورد نظر یافت نشد" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "نام" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:98 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "لایسنس" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/fi/LC_MESSAGES/ckan.mo b/ckan/i18n/fi/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..e355ec115511a0a5a8526908a0dd9f1a9c989de3 GIT binary patch literal 80889 zcmdSC2b^71x%a_kP;t5LCV^(tZmu`8liui~|r|M&MiYwxqqlo0NFKcD~m@*(p*Ywxw!UgcTO zde*bn-uvMr_IiE9f4A=$MJK|+lN4(HcSlbY9Yyd?xDb8@@_)3)h0ghKU&33U;yo8G zfUk!Kz;8g3j=m4CfIo)auxDNrZGao$oEcH{C3q|0zs`@Mt?(Tr@&G)UoBlTm{2ty< z_|e5t^r5|?=#xvL=xtnAT^>a_jvuiiiarMG@O0R1O5lpeQv(e>*+42eEtfmA3p}EqUh|ayx+eV zDxdF!YR?bC0r(lX6rO&y=cfoI*YAfa??+(_KL>T)&mi41`U6z{{t9*9{h#XjKMX2- z98@|n)P38b%5^@}b(g|p;T2HzRE8?gE1}AJGgLc%3aY(+1(lzZp62PF0hQidsPr!m zyc{atv!K!|h2zhI#}R%tJRH6o9s@rS&fgE`68;fXIgfg}=l?XQcI$vA!bMR1;+atS ze+irk-v(9g&q1~4eNg%M7S#1Wfx6$Hp{_gZ87>#?u#50HQ1UhadteEwp5Fx}7k5JC zYX{s2KMz%pbDxO}p(hu@BM5Im>8gBHcmjMORJw16C&G7!L&f`T;GT4@Qwbjp74HHld0YsU zpI)f+p9$-51X_Af_5WkI3jPVshnEcc{a*-m|JOsM^Jb`YZ-bJLk3;3>%i;WY0)GNk zpTB{+{*Ulf_z$T2w&h)qwnL@+G${EUf_uRlRDQQWwb%2Z(t8b5dT$JTJ5)Q~1{MFF z5WW{aiSYNJ;{O5a`oBY^zxR;GKLDzpj|$Pd>sz= zhB4H2r$ePbHyl3?D&D+seg!l=1eIda72#-SDZwxBlOX1z{&2TBavOwP8TcFDEU8s8eLExiM`T0HE2>0iY z@>z!}?+c;Y?fP*1&G0nBcR=ZbuR)dXKcVX3$Wgzp4em#{6YdGmgSvlDIDSzGFNX(m zd=1p~PlIZQjZpX968NHU{$Js~9KRX90NxHIADuONOO)%yr+ zho!(9;30%R1rLQ^fgSK+sCWmCd3nx(O6M}z37-a4?=OR@r|Y5W;l>cY1u7r!g-ZXU zQ1X8-)b$U-GvNN$xE?(Rs{EHgm3Ig(gwKIW_ft^m-3OJ=Z^Dz{&)}JGud3&F4m^zT z)ll&^LbczuQ2pXH@I1H!s-6B5YMk7&hOGi)C^@+bs^1Ji)$hyT;qdiPa(f%peSQoT z|MyV&{3ndzK`41$-w9RzUZ{5M567PeRo>g6%5^VPeSZxe0sj(saKrB#L#1;T)O{8~ zrN0_>!8+8q@lGf?{2^4k`~oWe@1XMkPbhoi@J+5CRzl@#1Reul5{|zW9!&UdcqIG+ zJO(}lRqn^2(%oyb*W=+(>Cb}FI~PF3Uk{bPB2>G+2`XP7hAPiJQ1`zNO1^&ymH)lB zU^Bvl;nDC4sP-;GrT=m$d*oJlI{Y-$^^ZVZzsI=e?*ORwITq@88&tW@2;rwd<>#Uh zUJlhRmqW?VHBjY$9#pwsACBJ&r7w0s^@Dq$+HogTx&9q4hYyAGr(f&obwH&*4@&-@ z4mG~K1S%i5L+PIn!Wixd=f4%ge}<~Bfy6c>3tn4Kfi??@Wku9J(okpdm2=^3Q*plXd$G!xg1iuQ^zK?|Ck3q%z zQ#gL$v;98DK*ei^O7Co_dYBK@&P$-`rw^*$o)yBSaDE&r-Iqa?>&;O0aVJ#%KLM5A zHv%6F=YIs}a{RYY_c`@Bp8nZT{o^8dGQ1KhUz^|s@VU_XU*H#@^8Zb!ct3b z{VR;&9?x~Xa4P%&;pNcI!`X!Qc%HXY2UPygg;sv3cI^w{r$Sw~F&w`pgf~Ow>HY}Lf{z3q_WUS%3gM?fmH!&3^REv4D3mwW~)KKs7d^R)<`L3j|J4zGtwX9v6lJ{-a`U*ht;DsUX0#ra#{9QbW` z5#0Z!E-#ls9ls8$Ki&y-pYOshxcAF^96bjr|NZdEa4S?ldJ~j<-3wK34@32Jxt3g^R*L)Gh_;f3(%fAMy{Jn%}W{_+gC z9~^^{=kajx4*-^;XbeN@#`RX z7~!MfK5!;H6m~%A<9YC4xE3A)p9v3wrEvUOsCX}hy6(+T@$LxWk3*&VWq1JmI#hb! zgUa78L->Gy^>m&D)qWjt1)K|&|7~y%d>ib5{{bZ@e}_Hrg4cR~ti!Vi-vrNr{~p47 zyw2uR>k_N2u#gxzXdVgclLM7OH$7hv&mzL)Fje zZ}fh3DOCLrK+88&IyXbf#eGou`W2KsoO+YXLkE=nofX1s;IV|)!+l{1cEd(Ee+%57 z@Oz-z>n?aCycKl+kA~`BGog+zhRWv^Q0eBO?pKA1w*{)+ zZh-1%JD}?GyHN7G_glQ)PlLx1UI=yHtKk*!8d!v1fNSBoZ*{qSF}#ZKXW*CM32(z! z2Y&|t46lE?xBJU(_Vhmj&*Avjq4dJO@9_Mb0oDGiq2y-_s-13x%I6ngJA4ezgeSh! z<@aKE0^th05WWIRUhahp;UA#d;k@mBpEYn3;Tn|OJ_=EN(c!mvJ-rQf621p^z+Z;& zlWt{>NB9zW6nqU-JKqY`ejkLA!@Hs6VkcBPek~mTAyoT33RSOvhDzt~+x)(#!xITF zfr^)dN`DNV2CsvPe=|HC?trSt@4*G|2r7L(yd0_?uZJrC2cYEnw@~TseY?xWQE*?v z$3w|aTj06j{H1Uoj<1G?!}UQx?CR#PbRzo?ggI#RWJP^T!oU~&Efc~!|}I=@GT*H7wjV5 z-S9H_3wQ=R=Y4K(ZGbArt*{S%AKLl%yWDLEybkWk`8UF4@GVgJ`YAjVJ{rP*3H)c^ zULRnLnn7DZ<@Z}3bpPFdLCIm~hnyv-cDoZE2JeE(@8?7K@DKa_+u#t#Plp%4SHeDc zFT9ldoOl;L6vFu(QS^3r)JKpTj^73UNC7_cQS>a~yFbDG5SY*1LmGtt{WG*Z@t^it zzwXOW?OFVs>z!9a<^Q8_5Pl6_3D5hy=krzYbi&_(s;B5)my5mN0R)eMlGjtw~J#4R9W;gzz0u`r#8$^70KRz3@Az>kj>b*W2+>=g)-dU(4ZI z*5L7QD^$E2pyGWPs@}f@4}lK`J{r#d87iNLe$mgL1{FRVN^UQOO79A&^y*OQy&S54 zyeWk5gy#_cB1R z^G|pN?D&eWOI!(c-7Qe#&jWBBJp8M!7Y5-WgkJk8NouYqcho1p6LeQ+lH99#x}2@is2f6evuMes1f&w>ZTYhW9E4%GeL z0S~8Ndhc)t+V2)`QY`n|s4>CJ+N5!KG04!VcIA4}QSg zGY6HAQK)*o4ju__g?q!hL-^m|K7_v!_+a3V;C>wc1=Rh12bJGFzUk>44OLIGq5AI< z7{g~k)z7oxYPcP$zdZ((-kfiFeO&-mKbJsV-v^I@C8+zo5FQO*7sBrj;k%*A@gE`l z6R7L{0xyDxf7{bt2UX5zLD^SBQ2qM3Q0@8_cr5%pRDK_Z%HLk!@%$YORe#4rU4JH& z{45R3LFIEBl)SzY9soZESHaK1z2Fhw^>mMg>Srdwhgei##OK*`4q@GST#sC@qp>b`%1D)*s3^zxkwZygO$i+o9zAJy7NQG*tWE4<%o}4*UmH`iK13_4rXxau-9@<4U*y_CeMA zYoYS_4k)?a5srTfO0K^G4}{-`%FizYe+N$?{AZ|kKH(>xznOs-LgnLfsOzqTO6QqS z@i#)%Z#{%x0wtfXfw#lA!IR!HeV162NR3CG_HRZn+8wcou^ z_5BTaBK!rM3HSM#=c5CveiuU3(|R}$J|l#0f)^5gM+iR*k0bmusB%R=_xm3N_a=BW z)cF&j?t3o$3cL*V!s8zC`B@3>Mfmej_44Jw2cYEk`*17#Bb45#{ld%pY^e5mB~*Fd z3N;RX9I8J&0^8tTk9z!BP}iRa_lJw1^0@-;3oj4htKmL`H$b(=5L7+Z178ePo*M)2 zgv!Tf;C}Fa_yYJ4lzcwxmwvykQ0cx1E`|RBb=}vY+V98kK=?bT`~4$?5Brtp<3yD?WUe;%q{z5yk7{{?mbJ^$15cNA3qPKLT}CX{^7 z4dGs>>o!2et3usp94a5LfRfkOh46>q!Gu2%_$8=(e;ca2k3hx$BRm}*^J}+v=fifw zIjDAhIXn&C2G4-^!42?_Q1W`^Z#=zH;B`>#^NPT?L&?`&unXP|JK-;&hzlBQY)W3TAi=eK%466Lk497>I>Y)xLPcMP0r+*FMH$&z3HmK{q z4ORZ12L2JM9`^s6-{)kg>u143;aqqOTm+ZGtDySbTcOJRPN;r<2UL0Qhte;5{N2+z z4em*}3#$L01ts54gOcADLzVx-@ErIMRQ?YChqu?MQ0*`ms+}%_D(BTuia$LB={+)diowzJO2)< zUJi<8SiDmM&xcRu_zJiHj=~te8*1G8GE_N!4UdI?hkL`LXZZOOpz^Z-s(x3)mq4ybnd7*sw#2@iw!L)GU`pyK@@oZoW~zyFhK$YhP zsDAivsQTFfB`05j?}UGYYVWu2HN)n0w?WD4*PyO@5Gr3khpLZ1L)G^`Lipgly}plt zD&Lc!^uj6OcsEr3&xN}Gl~D3jfs%taK(*Ih@B;X8I2-;q%)=+|GsF7ti=g_&N8n8O zFjPJ7wXcVdf-&J9sQP#s)cuB_xumipps=WUOWB3SE{`Ws{hKUaa{`1_!){}znlU!eNY z35U3RJr(Nw=D?fa#f0yHr@-jY8K&>rp!88MRQ)_3&V}!Vr@AG|7{2#dE^Y+pVJN1-dmv3yAi6KpM){| zF;u(lb(Ej)f=a&+s@*n0-S^#4>3juBet!*>&e2CZdjdB=#d{%Cy=)KsS~&j?sPdh9 zjNfM^lw6mg`rY%O3;Y1=bEYS?q! z3|k+38I)Z88(a+k4twCD<6Zu)gOd06!l%GT;8J+X2{UY6au}*T-Uc;(-4E4&4nNVa zTLpF9OW=9%-{AT1k5KWuPjZ&vMTFl2&w;;!%Eu`u`}wCsJC|4rBN$D7|oSo43O=q3VAO zs{d_+>L2fd(oc6n^{4xw^xgeX?YZZvEYqLEDA)%j7X>J}xh@=k zC6u0gM>u{Dlz#pSlw3Rvm&3n6$>oyMoU5VIy9!Dlk3z}uIF#JJFz`mGeB1$bpU*>G z_d}@u^!pG#Zl)jafEsrfLY4Q55Pk;KxLSuXd<|5;{2)|%-+{6Reg)M(_Bh?|cRak7 z@VW3h_>1H-;N4K||L!w9-5)^7-JhWHGxto_ z!>gg%{TitFZ-tWQZ$QcU@f|MDeNgiHQn&h$=hLZwrHl8+mp?(=gf{k>P$ zjOh7r4pjSm2)-PC6{_4%?RI@%g_7f&q0;*%Tm$!<<9ebOs-25a?ROoNeem*d{EblQ z-44~RpN5i~`=ILid*S?Ju#ND6b6szCLB(4K)s6#D@_20s-w0ok)z1c~`&|bmH?M_?cN3Hzdk0iG-wUO$KLI6w z4~6iIbG#p(5_mRL{H0Lk=?&pQDEY2Jz^>zc?6W#*Vk8g*%en$v@7AoG?pz`$t zsCs<_DxJrm?z88)e*IBU*3GgLO8!?MwElwp!Dwdq2#;$ zLLZ;jL$$+m;N|cIQ0YGam9OuH@S}mh3H&{b;-N~TJjmZ_+_v?aM!q_}tu1OBDirJa z>V~00zBpKGi*v+Cj%~^n8+ne^MkO+$JX{}{bbX-~SM%32 z3f25zym=&Fo|G67xMeXvm|mLPX4*@WyfrVKS&Qe*tSyM(NUj$5=ef~fzL>A)2fK8z zQOnoj@k*l_=S#UlG0qJRR`a!5To}^PxSS_<^$Izy-u2i{vPP`;n&vBv_ z&Fz{K%^QmcikzI^mM@Lf$J-Y4jgXH)k79Q(S1i~O&&$Ol)%?)>wwdjXYH@b0ZNcV| z@wi;6>;7@AQpzu!*PUB1uX}7kHrXxpYOZa;+G3uY#`WqrZBU__t8p!#s}78GCGiV` z^V|GTXTDmkRNEHJtJSNO@-SJ-SM%{^Y9d#T?HqMqDAH1vLZLiNA|Y;^z0q*4P)^cM zQ(H7xDwKPg7c3@G3ecS&EKm~U!)rRJgIY(-jW_3uRC6sZ<;uC?d|asx=gNg^bM-={ z9GCK?{(QA&H;U(tr8inif|cszJK0U_ZlRjFMSr7iHTgu+UuE~5kp8AZezQq&HjA@r z@mRI6DOb;DN|oGFjaTNPBs05JVV3>jYNat27s_ZsiW;SwFIDK4N#5e2 zYNZt0eQQB(((0bruFI`i3)Vz*2CG>_#VRMHM}8#?wRpf~z*;8Ua-dQy=K3qu9BoLS z)_rqHJ|NB>O4VCHVEPL6Vm>2erXNrdDo|bL;>r*Kjx1iWXf@JMtLMrC`FJ^< zX>5!Ridrhin{w4crGXe0a}<#Hh|Vy2w{BNWDphZNyyd2gM=BMxM`(p&p;p&jYlYGn z_gC5`el^cZp0?(eG@vwOZD1siK1TwEQHHsA69Yqx1|JxW2O70H%}Pm#fOZ^pO)|D1 z+l##ta>Mb;%5Y_xdMI*=WO6MeMdaqUZRjuN%A;)ys$?YX*_D9?*VavLr)-Q%sU78RilWQJ z8BmW zr#BnQ=jsi#VFx3+SGskR-L2R(9o@o2J1LX*Hdj`3@Z#W)p8Licww*UbWh`IrbQNs6 zIUcK2>$#$oR9$0Q+Ch?Ja@2uT4r-BV?yL-TQp=tFl`U95L-oy+m>?i?rQ9gh zFTEejC(yZ}VqaT$wLTgh& zBWOGQpuz0|PfU_vw`nhw2Z{|lgL12yu`(2Lz-{eDHCZimfoi3n9_A+(tzBN5-4)am zl29nokd(j@4H>}5iQCI2vec4pT+I)Y7J*?2MOhL}BdU@xk0`m~WDSwpY|OZFUAd)* zsvUK)Le+1h_OMHGo3LtCKa*Mju^d!|W$qWM6Pa|oK$^TbxEV>XGh>y_$~TIiip$r> zRq)EtP+_1D%Aj7{C>J>6Wi=Vlpq134O9eInLX67E6+7aVN+^_>VWdZzIis-}10zy* z>Wk}FnCzvxVx(Rl>*?;+J-fK3tAU2d1f&xz|GIW*qe|UiqpUAe-BYGxO*CK$ z3tGZTtiy6~aW!{sp;#cP$r%}})GR0cRjwb*HG_Wnl15#np+#5c$y61kHkfIL(0Q`9 z3`U5mRq<5A1BEfF99@rKFg{zQ^mb4&9q}SGrNkoF5noa$TgtjBU##VsWmQ|{pl4Fv z2S#({F64}ShiXlaDDU(7t8w=Nm+d}mf?Xs~=kye**x^i4mjs1nx=<$fE|N@?+Z4&B zrz~loH!WC`nOh*Y1NFFApr16A027q4T(xeU&4f~|t_fY-E)mUd$w^0fdoM|&O71Vs z=Zf_ay15x~B_v9+8G5;;AVau6y_xqlwM2iu$V^O~79+TsrmQ`bsnX^`X(ZHGgI3n? zk#^oI84qai7Ddo%dSmhqm(fQWtaQ6vqdrop7BKl_CzpJJ)e#SqJh_-~AMan)!th94 z84ML=z1hlSR-+YD)m9j26mytlR?9V0W^sGIYq%?3BduWO?CM0v^=g2waSgiB$CNP5 zTq~_&)zh3v(xbvudIaUuX~vr5uyd$VK|^%PN^A>L=m}!lwm?ISq##=4a=IkUz|GRp zTqHkW!wNO6=5Ed%;`T(#;CIN^X4CE!%nnVkZ5&p6)ds4CF}qxq>$C6HX`3wLp~4nQ zw0_;nuGB>kYe?HH2~mUAY_LP1+a^p7YlVw2r@~>ZgQ5;*qSVMbv<6RtdKlT zY?(2&d~t{yyQhP}aXLN9+wryVthsQxHgs_DByl!&R;?D8xj*IPM%EYXhzuiU91=~c30ujUNF@z3l-$PLmbm@0-ZiV& z&L*!orxP(ITHl4(1ut2a`}T zdG!KpDq!JY75B%ws|lVBys8ZI#W5C+X&}|*s{4fTa@+?5OghW*yr~sN%azULo_HpC z3uicJvps1&dBJpiQ{JILrq|4+X4pDCLrp1YxaG4-h-$G|*-S0BM(b$?>*HgjIY=RK ziY(4}045zEXG96T)P7%Lo<{q*OtNmjd^T=BSL0(@7iRo+Agk!@KrU`xh&r8gUZP?V zO=dFkgPODBa^ocJVh36RTwtBh&PclS1KBtKV?6Jg1zSh+!rl(S5h$^Qf2U~950pQFd#jtMl_{+kljp{PM_!?&6qrPhiu_#-p6S@yF}u)oB7Xr8+Y>(DFHhEZpQY;-p$BK zi|rzMs7OX44N<0~cNM#Vf$uICE+`N0A}UkLd^t}ac1M7Q6V%c!FQ67|L}VNuDk$yR zD1#AR0o1>Hc+nE($W{LuU|vn)DA;V1(%cA!_e72O8q*8qMxLgw)hbLDEkBgidzooI zD|=`L-k~#CU?9`q71l;@ zk9B#u5AkPQN*hewxCb25iUuXXv5 zVm6{V$_5KVLre_NRZSp>z{jXJEtyQp6*PbB&o)nEco<)|A+e z*!=Xe;KLNB%M0sbA6Lx6uh}sce3V6$8r74R$wNB0?zEc7LI@5g&0l1kr2@8CzPVxq zq$-h=GScQ_J9(lDy7zsi4cRj(d7pZ|jsrDfXQf=E`u+Mb>+oYpsf3n`a ztydRKZS2VS!Fbw0G`C;ct>###s^uRhTNE6a>yQEA$O!LRL&8*Rst;aXvYU|freLS9UIyJL0moT-* zTY!{NIfcPkbFE2dnblNt@hrEeW<5@1S*tEJ65UL)aixDFsz9mZ4$Ta@D~(u=llfH=w^j2b5rYDo5X5!QAwpz1#i=$dc9g;<=M3Q zE>6b1___0)i{$#6oXXW__&_G3xGYzumipJ;~J-?E7rbWG*M zn(vwqvx>)xT@G4WtjjB(XBfltXuck0IUW5`_GOA0H%z(sxTzcVGWh2GR!g^Vu9~m5 zhRklz=rb-myv9V_gsf4n=J7{sEhOWhNmIlhQ^!T20iHYO%Zfyaqn?IdG+$HA53wId6-@HX6O{@JYg@)? z1MaU?KCB6wmfE>y#oMoDOPPYzmZ)a5X_6Rg)Z{K?;lAFe^~78K$F?rJP#Rl#kg?Tb zX}Y`2TO^H<@iq3O2Pf}gN)kj<=ZdI-!EtxIc?IZJt-0q&dde0LOihthtrGkfmQD8}q4rW`k0;q1^sg;<) zWIP;j-I@lo_fw?QOUrM!W|mZ}9^6fdp*0kogl*Q-<@C;%Hx<}qCAV6nO)K^Xb=@5O{m3$NX(>h=d|LK(V{aDbVaPs!}B_J46j&5yZ3>zn+-5!4Nn1Qz*9`EX>b zxtF&ou9Yen2reJQ>8I=3-!v#hR_&W zI5BgO_wW;kV$ju)+ts2=C^CY>plt@H#Mr#s8RI!}8^Y~`wyi_57q+#TL}+`+aG516 z4g9GPYzUhk{X!dm!_Tb@`KVmH$a(t{_p$*+zf{lb^0h`073e{clt-dV%%L4Xcf#G# z)SG@%20f$YFx6`Em9+oDaFo$?iWBHKod;aa-Vgf|ua@{L7++Z!WQ)i0@)+v|cEEau zeo_7GR^?z7v!P1Sy+_yp?rXluu-x_phh(CB)2iqRW2WRw!r71B4T(3Uz!TNp+4NYK zN2*1a+K%Un>@oDwuuCfCGe3iRWOQj>tEvDmi999R|!-jO+{gk{p@^Xgyu zEi9_Z+?6`6^+cCqS=yiO^<}M#YHVRH$=ylI{>U8WM}ynRDAZz+AsVJa$<;b2X6NQ=qFwGN(~H*bz@yf*8| z)PN#o(hrxVN90|R(ZH;h&Pfg6>z}xrGakpBny}rB!N*LxL_?|OwG&FaqiuPW`{Ezc zVQYP@#k0aNA(fz0UCVnCuJ`?F9~i18#ptLKNSTGI0Yig4JJ$SI%P zYl%7yV7ucn*8Th>Y8~?tBPX>bY|puSI-8M#|H-uzPR?cmq2kTNVhHkqv4nL%jctoe zA6U-JGkRGiA78A_Q;RNBeJ~}CR;cXMX%IWK>r)N*0dvBVEwbkDSof2 z;6Bt6tA*Bw34jHX*}zJs)Aa_u$cCCIQB;ALND@BHu6+tmdnfB>Sxt;_s~+nQOwfK4 zRkAi>HIuTPH5iXli8XeyOg?KH7m_?k9i$8ENe(F?ww(Qu2F*$6g6mU;4U$cxwM(NY zZ@FTPK{r`s$EUG&`Rr(=7T2_d@4w{7vR`NkZ4_8p(Z&!%Xsn*tLR#C_NvRbz55J}A z*7#w+1jR69qkUH_Uw7Ko=;FzMX?O6n%EQ?9|CeM5Aa)06o4`QRYwOgGD_TVjBT+ULQ4L!-BSst`K}`dwPH91# zrL78TVV+6of}VMn*aGUYP;JLok(@^a*b;`lshy6}^x>w7R*47kU}R#m!LCtdT^KWo zr!6uk#>j;#D^UdL4HCUHlYMB3T4JujKBn|)DmagaS2L380QpDq#_%9x3RDXNaXZFj zp)fmpwd`&bDlu#0rGB<*_QahVqE+LW@{fC;*1^!Z`PDK{nh>rc1Nt{>=mH^LOKsUJVs zq{)ql$QJf^QP`jnt**q0a>A3s4mCwV326%n>XGcqwh2o$W@3a>bV?Nnst~;qZ z%;senY?qBNo0&ED@F~0MGnwe4Ta{S`$qhj(=}XJE^9V{s@S&I zC@?+1#X6}bNVy&sis+zMW1Q-MTnDw}r*~mL9(*?%!RcHr?!bu=@K&tH^0 zVJt#D*(f7VO**hO4+T{~_R?5sb2g7u*iy8H<%4t;Y>l?JE4iswLlO-YO^%fw(F8Av z7q_oj(!X-{6w%k3UBQeNyMy~-GvM~q{99vJq6gd8E?JUXy?jZurmDx3`p5ave6X=4 z5MQFHYxZ=a{LtXZs;%#-!L7%LjF&+2nATOxrLEg7Ta!(tIHcOudb*r8W=o0_X1LjN zGy{!YWiH-ae4^s~SnHBe=5Re$y{89S0xeZMJ6apGO*3oBkwoEO_+X!4;ou%f&P~Yi z+QgU3x_0W<-Jl+iLkUS%;tZgPmD7ygJlD?>Kgs)(zUdD+kLcIQaXh}5+jMr_zv;(L zPEQ`X*SZ@p3j0RVxdKbJ3w%fl4y0;j27=ST(lOHy6H|^(eT%!)Y?RALvCT-v0S8yLPpWrw4M?idu?@soEiB|S4J!Tr2 z1sEbvxh2>(RA)8?drCGNB6DG5bz-khj?B9U5S~OI*0>W679_%zlS1}R1$S#C2W4+x zEu$*YPF$vArdGxhMaMCp2_!$zpmR`~6BKNEHtC(|0SUk9S2q&U&#S0ht)P} zJjVA`2_ZeY??0KDad5OSX684`dE77R)t=WPz$w9WV~DMSNCG8w|Gb7$Zzgf!nr2njr1f zeEPUGkG9Qkvuian^8{l$r>>_q$!1MDweD;yq^3rOSZc=ItjPek)w93j`RXYYTo3;Q zWS;Iz-+eN(JxJ$l-bBH3TRbXO9@IXbbGJA3gV0oyPB`zgmzSsKu-D z<%Wf^6YRYQQE#Ka#7ewFV~BogU9+DHlV55qS_Fr2Fz?O7PZG%!+-np4m>!{jyTyv^w>(c%#GAtLRA{D`j=@>CTE-cNd6Ds>bxpWXDw5d+iqE}sc6ufv7`BY~ zLy0y#XEqDYRH=rw=QN#VG@o9a98dl#yC8E)+asD++aqBUqik+nQR9xfZEaKy%X=;+ zp4L!@-WiH)kC^_*`<=cQ!4BteHAQ`zvdcM+S)Y`XX&haU+R-^1sLc}~<81ko3Hc1M z=+j)K*@N|%P?Nk5z!n%LM@l9U>4VpPvm}9}C0Nb&6Pe1gI8){}AI~e;GtIaY%$%Or zU05I`z#QBRa&!q}l=cnlg%*r%)|S#O+EsuWvdz}ouS`GpF;(U;u~ZXENRtdYf|)R( zKjOm2Z)aV|?Jw<9MuX#{u`7nP-pe(3er>y$Zbv>7XPV{Fe9@WPxCUnKo&rQc12Ty9J?ZX(_`!UNoBCV*gdy%4htz$PVA*j)IPq{Xd4c~at*qj)elpU zxZa4+G`r-l)S3?ix=xs}>c^CTC#M{RNuN!SSlilW_X+hDZ!HXNqvDgzxyb^NU){2P z$R1h?Z<|H`lzZ6PO^+YC*-9SeqVg-PvecfqBQ)dm*%>vefwRYQP_VT^8-npBN}y&p zyHK*A?5QQ=pD#aKyKuKb-zZg*dbboGKbj|}r_o#Yt@sv23A`-Efws_|cb7!y57KjAg?Upzxkq<9T+Q(TVpKwLiJ|Z%mzhoo17s(CHW<4~@w#8Mi zKS_tjpjm<{2n8aLWIJNIIbA8{9;}sZV6K2)10P$JlFhA8D+-`K|E#B`d+IN)_AoGV>#BmyjYS=ClfV4liQ^B75_-0Tcw23yREOxaL4Sff&r!B35=yi(Ci(5&i53OuF7 zwvBPWAeCtKi!g?cX=1_tVwS_)BUQr0E}Otpr1Xl=BGy$VBxch`;wr&(jbO^uyuw-j z)Z?tCM407uvP6^jNBqs998$7<131nYV1mR*g(o%BU#M8C;_k7ku#JZ(x?v{q8j|qg z<8Q{E#nZ&jiB`+n^%atN~nONkHM)Xl_xN5j~2?DQb=fqg-mK2*vMz!6~ zJYIe5#^c)RxJ|&)B?9WSr4i{pIhW_imgDs&UW1=Xo7~MRd565 zSDT4dOY_=hyj-xSCN`>_Ol~)+UhHgLT7K72rmHySBbZj+Ij1U%o!>=u*!kqvQzzi| zqBet1S40h0nmv&Y9VxNvCfC#Boew=M6lYRhnNoFw8fTPe)`LXlB{clCmr_7k1yam;DjkySr1wq;7UAGG^Q821y#O zOYe+RHKz?jyCH@aFI&D{=fR@ymZ*Bne6^&_j=@c`yZPC@`mj4-1hPNlaiu#GcQ-`V zVmG`O?xK#h>M=nlnJzW`l8$-Pc4ix?ccV%y-fq>o#oWEhv#4HqyHO!kergImM_KGLhEl*16j};ax^=sLh*E6;wvHO>!IioppYyn}^whPV`H zn43h`yB6S0&@`#}UTuf4Yy_L$U16Jy?eD~8NL-Oua6OfpFpYs%ENp3IG@D{)>J?hI ziR`a!$+$v~0qT!!%8pm3b!*3xzF+~(puOHL7^dca@tAM3@IX@O9@H*qF7< z@g%>QL-vM~Ojsh(^hadQ@-~v@tLgj#JEU4ukhizVExLY;fF3N1u9jzCPR+2;({yy} ziNNG64jcKNk?-lwQ^sU!jO?gSx_0i$q%k>8w$l8p`|h8VCkH}z@qnZ0sz z=E~M0Y}UqDS;0J7(7d8y2DaqH&2ygCr#i;9ax(FCVddPW!m!M$+-9D|(gqeDlw&DZ z(>_mTq2KiYMB1)TfcThwYuG->GCS-MOVUPr?3aQiPlR&4I!ow&$ zY^kjR^V?R11L5WQd7OW2*W^xm9GX|qRd}3-SvPsL?&=Tv(PkvMxtzS*36+p!Cv770_%iuSKSbd& zL3y$|E2$?R-K4N=GS8apQ1+C4Si{srxQ`MG+kGadXC8W`NKI&`gffwF3QL9*WugtF z1rvYEs25_YIIYFBEd!ciGeR|=D^#4ccUdWttp!adg0k;#Dz&;COx~>Gcb+o7>+@!P z?oL!2LLNV&nM%{=w84YX)--yg)<%*{lA(^tSK{w#CS?1-Q1qPgmuulbMC7Cl<94mS zkQ_r|TR7c@t)RxS;-}YY;~$n`pqy zwjnkM>H9^}D!$%M)=>PJok?bZ2er=n8TT->_h~dBoq>Z1x{2(%wEjjsy=@x}xyKmSmXq7Zrzt_R``Y4pE|0B7e~y zw`6~BjSw5LnT6SWk#K&vE1o;&taI$gS##!|)j8+9&N=5=aFIq@e{nX0rVWC2d~xp; z9r0DGczm_$uNhM!%QNpe@Evlcai10F>}5PssP~w0hq>`Gi7^|(+00?-Wga0`TpkY8 zl)_Fu?(REXU^{2r6zJZ_o`zarQZ&#}LA=RkW?iX7?EQ8o=^t7I|W>h=rMY)s?G zh7A8(i_}j|4&8b~3Ux$#>6L_n{$+?v9_+PL>eSZ0Q=CsWm|HHp25Ot8N`ykB6&*2Z zXf#KOtE)umgCNZj2j$8O?fK4{y|9LS*#YlQ*nRdPjpS%p8P^2e;^`?sOoXJHO{`LX zNRaWG*t~j5yo4CLfJOO<#kN>t^C=IixT&c?ix~@BI#@_6P@%uS4rNp zF|rjFx40adnRRcomv;L5W@Al#-)xL0df%jO<4i3Fzum4X!~K1p^=3`)#)aByMFaCH zmZa7Y0(%i(a~40jS*M6&Rne@=DPlR>afuUVy6CQDdb^V^n2TZi#qg&Qm@ zTugY|vdG>;@5ZHXtlMg!hDV#RS19)Aw$W&7DW4{>N(W2ZRz-T760ZqB|DxT{oXqI- zDE7p|+DkXpaX)O+z~*z>(_B1VEN|2a>D$3ccg;lIWoqHV>Eg5q$%Gqc&rQ02_9Tf@ zBfE2p$H@)PKVf_Ln3z^w<{$!+G?I;*Eg?U-EnOVf$uy*s2tyf1HNIEvbLBDq@P6X0 z@_TNuabZ#vZICm?(Hd!N+uCSry(vU}5~BLHzG&dukuC173`9{ z>^!~)#m(oEhQFew2Zux&=Q;2Q2oT-<{gM)nf*JH_v1g$`{&HgswclQ6K7jN;96yk1MKkDK9RP71k3! zrN2-=U|D#JJk2rQ!&_b0s7z~}&mE%T&K=|R@d6GDOtl=IcXpUe`L*DUoW$pjb*Yy> zvke7j7$4Nbg{JG+B8miz@h%v=@VWGRzqZkmn9MlFa-+ml&3DA3jmaMimgjEgcJyi; z2mZu6?c(~(Et=QQY<@IYmsT)$NVm}yabi?=A?nWUac$@Jk>TB|Zyi^#Kvc{FUb32u)9iuz9+gF9-D0>_Krtk_rU&D$Bwi>$@ z`D&P&fkqwGj+Ih=SA%{b_8MPc5a&aVB-~)f|rFedSO;&RBkM!%33GKO|!Mh z@mijiq6iY2GH<}lG0D{9xV4;57D%3w7Lt->J~q6H#7A>{XlR<->#j)#CfwC)DU;S^ zc9#hWk##(Xh&}r}lZ}@lTh!k8C`~m^159l7jkI$KN3*qkl7VtTb=7R0-Kxms;_CQF zY3FvNRCPzG_&-}=(^t`y#WGPNGu_iQiQle96umJpjxzPs((HWQ#6C-tskTL-oA98I zwIiro1QzR8x0Z6Xjn43nl z$j&NzJ5{E#ymjdOp(dtEoJQaqy=mQKL~GN|?K~6Ekf70vQt8T8MsHygx{bFe@v_;> zefxH9N1UXs%^%f?wOB4UP(w*vX~t0=zU1E0i8Y!6f#-Erqo^Hz@tiF$JJN_SskD9L z6BgX%d;%28JK$W8BN{u4 zLUz$qHNO-YKrk6vb-!sdkQssWEMD@xVqUbZ+>o%{h2dlqhj>l7##ALp{xzmlGc^T(*S#brO!1&G@E7p+) z7t;l)DqzsZhpSui5!njQNY+f#(1{z&FYCE{IsMY{nvspt)lwkR@{C5!JXjXkghq2# zc+$&~ArgHV^N``S;QZry5$sP${ee9DHeiX;~Y*)HWq z24xRZV8(3LLS?6_)oV1kCh9ra$-LcFpSm>#Xu`Q^oHioMsM^NH1`psR=IoA948W4< z>MpN3WOZXjc9q6TxHb@Gg;}}PWlk`RJqtN zo#zo~eRMYO0pR^4y3E$;PLFs)a;insKbZNeFrvRN`Lh&uT?OB9&e(6l{p(p4ib=LTqww;Wo_99V()XMCB;R zn9K?drykpioK{a#Xgk2Oqv#K=SDn!erBI)mTPq=KiP%lLo&%gR1sTa%ehq4m{UCQOEsPJ{nNCiaMC80{Eryb*Mi$!Q_(!mrByKc{s4w~!>1foIHIZta?PgEa3L8;6D8a6levZJW z3b^Ht?DfgcBQ&tGhr^6uiHT1a)m^G=x=}~te;e$`0z$z!N>6R(hY>Isp3()WE#9g~ zY-HwiOAgD^*OCm=*=BglDd6RZ5<{tvmx|DNF_oG#ZhGJU*@u)nH3(w$x>>HFFzUIn(!Kbh zmkPKPBsywrycS~ftRZ%DaKLo&igdI4QEy0wUlTXyp5=nxUDJ${M#+u_+`1)RNQI}D zu!0bULbOg>1N0eSG*uaEUN(@1ezuHIipjnqCL;`yNPWA!L+DmDREvl(zuiY zi%E0h0qm9Ai|)KbZw0{b#t^xQu?{h^>9!ZKO1XKLOc^cF&P``)SfCR}D}swp{g&39 z7!JiEa~d~sF8TBpe@$4n8x_a6_yP`#-^@6^@&i5U{Pwe0t<2<+T z&Ewd`x}pMN%?51*voRWN6!p1tjd>`&3~z?srp{-VNlzaF(MMV}u^k&LL@QMXJGUpC z?E6TgOg<&INP3|QfAFHDN16O!dFZ9zexK0A(x7Y1G$;>fq79li&i1)9s`u42IAt6e zJ0-q6ySFq7~-INVP-uSW>-dq@*(GH!c3*Xc3=)c6B0^HNkltC;Ejd$K|cr zZi5}kYVhQ3rtUh`>VXX%HfF0F%-%uX2=3>6O&%B>5=x^q06~>|R_Kd-UY) zB%BrP-Mb>G*4>LujcCFix@LJHZ_&-Cl@k0FBkt!&t0(wXGUi=*VSH%=Q#!|opx2r@ zN9|FA{UED8g_v|`m$XOx_yG%7{qA=9&x(N0B$e^qMzo@l6CzKZF3nPM8 zcTw+NEixlkM{w_>_Xm7&=nor5`26+s(!r9AhH?99Q>TV$JRMV(iWM&R9FN*}O&irP z#mA<>6DU`doDAG+Ev^VkLKQW=IulHAP8Ut?CI}L4E~Ia?fvB1HYoi=1sDqWZ77~O# z^*<#pbOwZ-FQhZ*HT7nIP6+bU46m(NDPP=1hS~fm9!a_mGCN_Bk8e+p;{WHRg|hzm z^fY5{1q+q#pykj()=1fmwW2a&Ro3F4BFFxE5ADad*5LE!o3!bUX{XA>RH&eF0Uaq{ z3-KolDe-7Z8l&8d<&tKHRlk@OS4bIFslxEJYK)*VUWQ3aa6I_LBAxsts?@RZamJDz z5&b>9#3dZDGNn;z!E`K7^m=L*EuGLjv>~f+Ek*47(HFtu7Mf)G960YWy5iI} z#hRsYHAyuiq9r#PN7ps)p z>jgX16RJVUF*ER0PqlgQD253NAG4+QP;9vQk?LlDktx15U!|4!=AjM!4CV!#t@5>+ z2BM$waLy)7Z2iR!w~uKDzq7~T-W=Dwf+CGJ67O_K5V=gpy{vZUNi5!)Ia;aVr=~^C zkFDvcP3?kg=;qlW%@fj-HZ}b$8xL2vP z-Wn*OD=02mOtuZ!*biQnK(Ey?yAQ)32ii_!WaZZjTj z6)t0LS_b})?l@(#E6iY>CiCiU;g%|g?^m1GeT}|*gMF(krsc_GRW(Q9*;d>)j+!W= zmh|KrUW8}`AH_s~)smXLYdV;$9ilNc$r&`NRxAB z`(-kZ{Is01eI%M)a-!8n#xGK5iwa7W;->8qZ7{s$5BWphx*mx zu`2;N?XWmn7UHoP)$#eVFWnQx!e%d7c;;H#-u$?@3n2zye)g^+$w7>*&EjYs-`)~> zr~Q#cqaDh*(LxoapZ;RJ#@+0WLLO!*)R8xi1^=J9q&v`z0{j+rpE}VUd3Hu;H}Wdf;Ph_2G%fBR?}5ywS&!EF<~2%X zd%k&Or1gCBHhR{$x%ChGA-yKex$ix~8y79NMg8mrh&GvlH*N5YAEQgo zGM&c#V$(3&mc(N^9I|k7o-d%7wP4U}+z;qiTI<-&CMA%xEO?Z=hpSNo-N0NSIza7A<9U zuPa&b#@5rLfH_Tbdpnnk10Ci8?vrn#Z;a zAc~2F&%^o@fdvgsEvhp5wWT+wi8MRISeHcVN3_%=6$fnJ4VF9xA~|%KCoY1;mmNda z)Bc(sNt7q0X_4e+LZvXgb-68x#*hKvLtdIPSx9yuM!gx|L`xv7sbtUlA?u3iR_ZCP zVSqv5W)?tfRjMT-A9B@qIJYI5KyxbJZ=o3-8OFO(%kgGAoFe`=m7k;z_;M)LW$?o= z5>>{=8tz`M=f~&|tYh%@eO7O%UdD!22aMJ{G?|^8Pc;HZ-9sAnKcIcF4)1OA;>NE%xqY1i@{yue|cSpJ+zp7>)lSZCLNXpb$9uDw6`pH zV6+g$TMjfCOZP)tq2x-E)5mt1x2{Q3q;O|16UmaMi6Dz{*)lQoqNmOF%eE$4s%^Q< za*DZtm`ht*uqSx)trN3EKU!%03cN4e>uC56Jl(>UDP22eZ^OiZ8H5Hz^1MC5BMeY2fo0cQrF~qInRF2J3O&z(#ZVH$N9op;?AgJdHKJvqcIE!K6pp zd+*cl#w!^KNmwp39g-N9_K=JXRqiUJ$J!4@IJ`G}Iznq-nC?`ex@kC2XPmE7Sep;} zGM=yI$s9trB*ve$jXgP`G2A2K#N>sTavI7(pNL+quyC5AC>l&s{ti}{^3q{zEP&8) znXhua_U2}f@@)uuQ$BOjqXkD$Sm3e&R2x^a|Bdi^lKKCeUzqo80&aHNYz~zsYsd_p zxRaLNxxHnXnAS`8Mn=n4@6LDTJ3~X_MC1!wHOm#b+@?Y$AQgc=o?>C- zX$0FM01u-^f`Yz1??y+F#SkX`9++U=_(4n>+b}ZCNi|QH=8wzxaoJ;2fIMI!UAncp zuz8g2kfwy;h#7xfAtJ^=So$(^-0Zdny#Ncs{8N%~A4b?5g^i!>sU|P%62x(V44E!r zV;%3%M=jOHm8=^I_&X| zl?q*>85Tn5`&pwtZM=$@*>G#^SkS^g4obH5FiB#4fiq;6vsfJf;iVrFJz z%{1k-ZAMRTWf$-$9%@<>88rpAz6JnuUTgC!I>NjpDo$9R@_DFdETdUl8jSmCzhx|! zq{@&Psu3!NVP;ZRMIlY!rV$3TY~+rxR)>|Z2FHqF2r)f1)tU#JD%m$>)}{UN#S$5t z3}1Y_?}}j7CM%7JQnf*xT4o3>XhUCdd}N#t-Y09dCa_pkZ2zG!5>(mH?Df&`;}*c= zi#5&VsFu!KF6DCw%X4Qw;$DJq4 z$Fx~Xb{vA2%{35q`+blF-WelGsRH zaU#-L4I$HrDUcLaVqnmxTkgJ+2lZN;*`6y6Hd4!;k#uK>J*(HMH84!Hkde%Y<^2eU zeC6K`u+&b)ve$%hxQgnD+#B|ZD~2SucL{>5yqrd$(F*YJv6JBE66Xy=RN_d&Q_Twgpj+ifWRYKtRPqz z>9LW6bt{&e)hlck$0*>3X)Z>fV7F=c)0Ejfdlq#;&pcc5&~it$(9TBF+2%=S9Bk@6 z-lJ}B+jCvV$35AcleGc(P;ni%zOubB*WHCK%p?(lFAcC zhiJsM8?X>;6*=qqDa)eJQFkXy7tDGR(l`?iu9g+eA6n4fsZODA z^=dRzxxL#naFR)SpiDZg#Y`1FQ3@e4c34Yne?B7X&GuBn@r);%k$}hMi^OyVG}PFpl=rOv4>$p+Z|Xxq>pP`N?%qw zxdT_HD|~D>vInTr2j^SPwyF!N|NpD)%y;9uk~`dw(!)S72@DrGGeIEOnmCbQXC#dj zQxTHkXb3o~>{<|*b6f^29x7E~ga;jc_#m!y)dmU*Q%i0s_>5S~gH936j7lJPj6SQ< z3OgxBeGofiV|3aP(G&(xYJvw?cotk#CiIzFwYg}NIB(cIA}E7c+HTMu3KHiR&o8gA zb!edN*#!_@HY#87x3stEs<$mswco(LC4r0dNn#s?(v4Bzg{fZ#kRYZX{DBlin+&-6 zM99RSTgeU-UkU3=kd_Es{ETgplJ&~J9u;O0wNhDC)JZeWsfBd0fD%|Cu~u1b0`77o z&5VGQ{8bjw*D0?;W5~kQ(fvjPH|AINXLEd>i~PDCL6HuA2-*QlveX*o;ni;%)x2Cm zRW|eTd_m}T1PEIbs>>2*`4Fl648WPQr#fW%QPI@6Ib*v`vvaxQe5urO#ya_MQZYQ< z0vtPTI3vX!{1o>nCWf(?mkGZ$KX5@oV>(Ce=kVq;Suc*SI40)1{SNy(370r0vMHJb z42Na*NidV?21mzYYf@B8ProL%|DgwL8QsJK_|_%TOTb?F`a=OC>XkY_>zoeSkutDx zVtL7xjwV2lnW912ep~!%sq*F>aGmA2aO%ms=R1?~u{7#ew@;ra1dRUXutYP<@vB6! z){CyIdiCT<*8bNgu;;~M^ns(gk`O0&%A`dIod*o^Ltngcj zDw5qawzgK7`$>oShWZN;a?}*hHDfx5Ge@E2N28iIT#A!V#OW4+-K6v$uCcLn6gH-i&c3;< z!HiwWfXW>X0`V<>R5B!MDD>=tb1r4hQ`TF)dagf0xJNY3SCzI-o+=5A(0Lk5_4B3E zRg*Ym0&4w0{d9*N2Ug!SG_PV`B)TfMm2Hw9d@T7UNijo>GA+M0`J=q8)PM0^oBU+% z+u9zBu?Rb{%5(#d9LK!tV{I}=3(n{GA%!yM} zf)UU74TfhYmeb#x%>$adGkIolVogC7**x$nwqpgqK{}mZelt?s`$JIku&W*Q>jZZ4 z^WmXP&FEa5e`!w85L)3G#|v^QN$(-%;Q`45@RQS-kp7D^r0IB)6Cbcl61{scL0n#1 z_A8sY#ObEAuN^8&?(p(_Mi_5U@^Dqa$uaKsAO=$^DGXJ9;s7VOhr`23kQW4%#Jb1; zvTF<#!G4k$<`?9_09`UG6HqGmAUy+$k*1im=Rf;Ry3)hFAbS=q0wd{007#m9fz&3j z5}>Gf?r2bPjPyB4H}2)&7>$y-y{-2(4QI^ds57SZ6182LScy}zp*H@Tv551tDk4^v zkz?cG0v&HFLxi}$SH+;6wqM~A`0RS>egJkW4^r`vA}r;3sg0SLOC@HrmV!BXQZWl@ zREo2MTO%?JUCpnppL3}a`53hOs>0T0@s6xx%_)717fr4=%cX=0ghvIZj?H)RiN6lM z-zBa#)h)2ot5*?VY<&h@6t@}^hj7)IUy`8WGL=ce!2aqE(VMtMi>(y*GG}6`}hdvMchat z#{nTFJaplNR7bQ#0uW3GY5e?lM{dRgt6sigU?%ysmrK{;PPyF@FJm` zpjkwLCR1!>3b!xjC7lqU@cow6kqvI^u_1_PeDa(3}_n4B8AcQ!YZsS4W+aHn9El<{{t&zRf5-=u093^#f6_P(1)4QIQ78z%FCwL z_hAPLA9!3|P*S!!a?yD7>{2*^?owY4{D4^f9lWqos?}0bmg82Iz4&+lK&jYT*_5C* z+A(7jieSR_ON|=sg1rKl1tXT+KVz2xbj8%H@BzuE`cjzt%`*p3Jfrp6_--_&U=%Gny5hYW2Qp=5?61^CHr-2Wg0xl4j{ss1Wa zzE9$>!-dubqR{{!HfS)^wBLkR<~QIL zu+|k+y%8s*bIk$5>F@~3H>GfQ{LS+qRWNQy#SMl%30ay{U@i+VN!%^C$z{h6EbGoT zBG$OW2k}Q7ednl)pR|(vhFj-+w1AF1g~Uoh|G)qza$__{oaD~B1ayukIA`*&iP>3} zN9db&#K7+Qi}b1b30N6|ly*tl%T7m=(MVAJX&cA{@7gS*$Tw8l{Dl=LvSc}!Gn|LE zIxrU<87SLl`xS-|FA3y-wQ$Rx%KGpFoCqjGm^L~v?S=xpqTQZ~ne{444%*V;{zN;- zq)wo9V)?IUZDq1D5LvIW4?TQQ+_SDBD@0w|jFixf#Kj&i^5FKhrQgXo-8Jivh9XK~ zQi=nl`4VIIVRwQJ2Wpy-N`T|gvPBD@X}5%gD53)s=&h0t^CxxnLRmcQUVw}crzdkW zlb_B9oR!IV{PqQ4672#uyXI^lo5MocdRzBqAXKxl`Z~>GVw$78rVUVDzX#eFLvVa> zoK!qwrky$etdNNi(pfk}b3n|6pnye}>YyggE+|5Z zRpP>dB6Fw0QJ&xxV#<`mPSn9XOE?XHs~)eFI~wP&tXrk6zh#_BklAr}|^b z017_a(PtpyKzPI8G(dPjuWA$bkv4j*W_@i-5`_XaubrG;GdTr9Lt$VbY4}8V-DY+n zo2~I2DFX{EV!hzlBZ4^qhVhgWzNgmxs23nAVBm+tblN_I1TuM)s_|+^Ag)^b@-qgU3iD^A!3NwptH8h>W?PvlsijsaE-3PF!%}nrt5XQnm z8*KZAX$(l}8JNUE^(0lwpVOTXn7R8fFH`uvu6`>RDmhfBAl(S&Kw7H>k5?gPtI)V_DedbN)kURh)T-Z;9 zm%Q;|D>WlPnM(sA%*+=~9GV9tHxSyd zYP6l58sk4>`SH*!!%#togl<0iesZQ`@ldqs=bY>)=tjQ4Dc8dEpzyoIma3bUo)Qrt}TZ5tQDNLyJB z#-n9o_i&;a{|->{Um>%zY3nv%3!vVh*2Yq%ro3+pYu=oFZb@o}#? z&m^qq9IaWIx&&HUa-{f)OP<%lZlzZ?1$AF|tjy}dcL%wjZ@(fC5labFoOU#m=g2#Z z%iq~aHzOCC6A))fQ)j+vMuKx0JSx!`{#WP{aP?y5``|r@IAB@dDL@IP6r~RslXR~* zNtW_eyHekEGib{C@n~N70c>9Mh`afa>)5ME(&`;Gje@T379``2ioP$-VmO5}XH5|T z6T1X8V`pMyrIVnxq)WxNT$~vtGM8o6j<953t6DYm~L~s8{A=eFH*)an$pe zrcrr)CBV9Hg4rn~-w5-4PV2C)v&iDrHUa&teO$@gM*C#P9X>%w3049*63Hj@StF_K zEbHth<8d}n2mjbJAZ=dh-uvw+OC05W4n*K9Rm<(_ddA9f*UGnNYCW|Shn7n!2IY>G zutuF#bC$I^t(;sm$9Fd2=%s6eOTymTZFY#3Mt4>kO3eavM%vn6cyDTePFE+j{fx_G@+PA&>f|UpVg0#Gna= zWrCJelcW^1t-5Kl-snWZ+DF@{p(YtP5^QlTEkOwPQLww|>O=2M2wMc-9 zYXF+M>Gln`CeGjf=7OX>Wu5#Nm${H`P61bVESPREVsYD7STp^`C2kn3KV4%hm6Qcv zhnB*xaj>v!mb4?QcELk_>9(P-q`MLDTo7DYX%2^Fp^SH~M=*n*TP{^dWmt&ZiRM+V zx4lB8*vU@ZW;l61|3ZxKm7bN5Rtypw&DxyqFsu{1^4s(za0^9d5CHv`R8hV8v6$y&Jwm#wD{0W~N zxH#zorMZ)ex`?N`@I}{_U;%~)wq!LW!*i<8BNp6PLYxT%EszTNOex{4XBuG>ymhH3 z|1b#;lt2yI#ju0ve0oqUcZw~J-b(+95pd=vux)cU=?ZWGRutMX`#^Z907NEjb9ob{ zMBVKkr7#x!zjRK!SQRs(7e%sV5^bQ4LqcO1=TSc={ z#&@|D%a_Z}AQ+yR(29@K-zoRz`}6-f zc8Rt7$Yr)$i}Qta_3`!>zy0?6tq0rL;9IPyC(EP74tL7RIJf(0d3y5w*7D+NzV$de z@pPCt!F{%@BeC5kd9pgbn|`5ahX>Oy`O10xoFFW(k@!q{52^J%Sy9w{nA-ZiFv7X*SKWKRq*r+$CnV@x_It99<>-cI{gdP}T z@==Px!ICz^?t@v+=&xy@OW&d?_>jfjN;CHosSDA4?xt+%0);irm1#R7e-s52EY#M{ zUPc3u<)CY*EzMneTyCwx?X+^)LF5o$SOyv2%uf%%uGCpa$+Y1ha6zt+ENV70ng_*} zlb9t{fES0BXL%>*gO6pEIro;G%R~XJu7w-zIRFAn!0mF>HP+OyCo?VQ$*?<&qHF@b zABu7|Ypd50-UwV>Fz$oxaPp)j0jwN6S)8G#>hb)OhbNAF^Gh|2|0#*xzS~!lg2%hM zA5-2508-+;|D9)R-@JKcF_Z#9!9~jMLVAeieRo8ER|ONnQg~#x#T#+6!vOzSYlcYE z^wCsm%C$XYEpHU8!B&2Ojw@#49WCV5sxX&Z)3Nk}X?eGLI)l2?5uuPS+F zz&%l&TzLqi;(h7*VU%eyUR5)5Oc zAtMO@EJ^B`$KdGBqg1#Us)}X5*u%-tZ~5}P#g$MuEEl+iGxvxiu`_7q&$H77j699( zlQQP$eD8Ge_an{aO#`|4CQ=^}mgPeq8`QpbXz%mlW82*Hw~2yAMz_*jGdShQoL{K9 zL6=P#b53Uh^RCNSkhL@Td_MoDd2J<{KfT`7Cc>TCi$~Lg`1|nSU}BDo=_;Z0A_bxV zX<+Ia0(|q~oU4GAw^IolxO_NKj6X{OKA82wwB7s$YtJq)MWdR{wX8$hkCE&du#9}4 z|CzM`)@;aozg&J9YlImgIeeVk8j=Y&R8-bBj?Wx_7&~?av0x_1)et$25(5{|OM9C7 z`TZg{t^6$Yuzhyl7>@F_>Y>OOuB;beedvXWf~_Vk8`eE2eG-H(&h5k`{d6tbn`CeW zBrh&On#0CCIQI7so!bZ=rG zZda-oPaz5|XCF7J3jf+6$Ig7^lVMY(nT#pnBU zS+T{sRfT~VS=Q+4>#I6mHCdsE3IG_&f{~G_kr}$R9~(qpJbBv8|GcKv1_}XkQ^qzM z5qjXkUW|2~D&yRKHRg$@OUJcHyCquBHDFMB&uyXT8ekVnTZQ)8W9l{$(= z3{PyYO=Ht=3qv+ztqkrc4_Q#1`LShbm zVu<6`4&K(H&s6mI_IPr0IxqEK=;i6{3&MYXMJfPElL_kG96S&wTTJ8X$CO@YtC3ia zUe+|Ul5J z)I(ft#f1Y9pOG@c7~xfGWtu|m>sqya>xBoHeeFvQ{n@QYRL2#ArxN9y6Tgvq, 2020. +# +# Translators: +# Samuli Neuvonen , 2020 +# Adrià Mercader , 2020 +# Zharktas , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Zharktas , 2021\n" +"Language-Team: Finnish (https://www.transifex.com/okfn/teams/11162/fi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Äänitiedosto" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "Äänitiedoston URL" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"esim. http://example.com/audio.mp3 (jos tyhjä, käytetään resurssin URLia)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Selaimesi ei tue äänitiedosto-elementtiä. Voit kuitenkin ladata äänitiedoston." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resurssia ei löydy" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Tämän sivun näyttäminen ei ole sallittu" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Valmis" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Odottaa" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Lähetetään" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Virhe" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Tätä ei ole vielä ladattu" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Lataa DataStoreen" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Latausvirhe:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Virhe:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Virhetulostus:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Tila" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Viimeksi päivitetty" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ei koskaan" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Lataa lokitiedosto" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Yksityiskohdat" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Lokitiedoston loppu" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore-resurssia ei löytynyt" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Sanakirja tallennettu. Mitkä tahansa tyyppien kumoamiset tulevat voimaan, " +"kun resurssi seuraavan kerran ladataan DataStoreen" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Virheellinen data: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resurssia \"{0}\" ei löytynyt." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Käyttäjällä {0} ei ole lupaa päivittää resurssia {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Sisällöt on saatavilla myös kyselyrajapinnan (API) kautta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Lisätietoa CKAN:in Data API ja DataStore " +"-päädokumentaatiossa.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Päätepisteet" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Data API:a voidaan käyttää seuraavilla CKAN action API:n toiminnoilla." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Lisää uusi" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Päivitä / Lisää" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Haku" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "SQL-haku" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Hakeminen" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Hakuesimerkki (ensimmäiset 5 tulosta)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Kyselyesimerkki (tulokset sisältäen 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Kyselyesimerkki (SQL-haun kautta)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Esimerkki: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Yksinkertainen ajax (JSONP) -kysely data-API:iin käyttäen jQuery-kutsua." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Esimerkki: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Tallenna" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "tietokenttä {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Tyypin kumoaminen" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Otsikko" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Kuvaus" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Sanakirja" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Sarake" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tyyppi" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Ladataan..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Taulu" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsiivinen näyttö" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Näytä sarakkeet" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Piilota/näytä sarakkeet" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Relevanssi" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nimen mukaan nousevasti" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nimen mukaan laskevasti" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Viimeksi muokattu" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Muokattu kenttä nousevasti" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Muokattu kenttä laskevasti" + +#: ckan/templates/group/read.html:17 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 "Suositut" + +#: 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 "Muokattu teksti" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "muokattu teksti" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Maakoodi" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "muokattu resurssi teksti" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Tämä on kääntämätön teksti" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Tällä ryhmällä ei ole kuvausta" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} tietoaineistoa" +msgstr[1] "{num} tietoaineistoa" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 tietoaineistoa" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"CKAN:n tietojen esikatselun työkalussa on monta tehokasta ominaisuutta" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seuraajat" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Aineistolinkit" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Sekuntti" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Minuutti" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Tunti" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Päivä" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Vanhentumisaika" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Yksiköt" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Vanhentumisaika" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Kuva" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +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)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Kaavio" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Kartta" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "virhe ladattaessa näkymää" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Näkymää ei pystytty lataamaan" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore palautti virheen" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Dataproxy palautti virheen" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Taulokku" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Suodattimet" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rivin siirtymä" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "esim: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Rivien lukumäärä" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "esim: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Kaavion tyyppi" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Ryhmä (Akseli 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sarjat (Akseli 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Kentän tyyppi" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latituudikenttä" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longituudikenttä" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-kenttä" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Kohdista ominaisuuksiin automaattisesti" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Klusterin markkerit" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Virheellinen URL" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Korkeimman arvostelun saaneet tietoaineistot" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Arvostelujen keskiarvo" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Arvostelujen määrä" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ei arvosteluja" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Suurimmat ryhmät" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Ryhmä" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Tietoaineistojen lukumäärä" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Ei ryhmiä" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Käytetyimmät avainsanat" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tunnisteen nimi" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Tietoaineistojen lukumäärä" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Eniten tietoaineistoja luovat käyttäjät" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Käyttäjä" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Tilastovalikko" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Eniten muokatut tietoaineistot" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Teksti" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "AJAX-kutsussa tapahtui virhe. Näkymää ei voitu ladata." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Video" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Videon URL" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"esim. http://example.com/video.mpeg (jos tyhjä, käytetään resurssin URLia)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "Posterin URL" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "esim. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Pahoittelut, selaimesi ei tue upotettuja videoita. Voit kuitenkin ladata videon ja katsoa sen " +"haluamallasi ohjelmistolla." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Verkkosivusto" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page 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ä)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Selaimesi ei tue kehyksiä." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Auktorisointifunktiota ei löydy: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Ylläpitäjä - Admin" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Muokkaaja - Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Jäsen" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Hallinnointia varten pitää olla järjestelmän ylläpitäjä " + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Sivuston otsikko" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Tyyli" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Sivun slogan" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Sivun logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Tietoja" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Tietoja-sivun teksti" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Johdantoteksti" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Teksti kotisivulla" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Muokattu CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Muokattava CSS lisätty sivun header-osioon" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Kotisivu" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Ongelma näiden revisioiden poistamisessa %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Poistaminen suoritettu" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Toimintoa ei ole toteutettu." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Pääsy evätty" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Ei löytynyt" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Virheellinen pyyntö" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Toiminnon nimi tuntematon: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-virhe: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Huono datapyyntö: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Ryhmää ei löydy" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organisaatioita ei löytynyt" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Väärä ryhmän tyyppi" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisaatiot" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Ryhmät" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Avainsanat" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Muodot" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Lisenssit" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Käyttäjällä %r ei oikeutta muokata %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Ei oikeutta tehdä massapäivityksiä (bulk update)" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Ei oikeuksia luoda ryhmää" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Eheysvirhe" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ei oikeuksia poistaa ryhmää %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisaatio on poistettu" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Ryhmä on poistettu." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s on poistettu." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Käyttäjällä %r ei oikeutta muokata %s jäseniä" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Ei lupaa luoda jäseniä ryhmään %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ei oikeuksia poistaa ryhmän %s jäseniä" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Ryhmän jäsen on poistettu." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Valitse kaksi revisiota vertailuun." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN-ryhmän revisioiden muutoshistoria" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Viimeaikaiset muutokset CKAN-ryhmään:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Lokiviesti:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Seuraat nyt tätä: {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Et seuraa enää tätä: {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ei oikeuksia nähdä seuraajia %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Sivusto on tällä hetkellä pois käytöstä. Tietokantaa ei ole alustettu." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Virheellinen haku: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametri \"{parameter_name}\" ei ole kokonaisluku" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Tietoaineistoa ei löydy" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Väärä revision muoto: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Tietoaineston, jonka tyyppi on \"{package_type}\" ei ole tuettu ({file_!r}." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Ei oikeuksia lukea tietoaineistoa %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN-tietoaineiston muutoshistoria" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Viimeisimmät muutokset CKAN-tietoaineistoon:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Ei oikeuksia luoda tietoaineistoa" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Ei oikeuksia muokata tätä resurssia " + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Ei oikeuksia päivittää tietoaineistoa" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Tietoaineistoa {id} ei löydy." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Sinun täytyy lisätä vähintään yksi dataresurssi" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Ei oikeutta luoda resurssia" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +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:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Ei voitu lisätä pakettia hakuindeksiin" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Ei voitu päivittää hakuindeksiä" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Tietoaineisto on poistettu." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Ei oikeutta poistaa tietoaineistoa %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resurssi on poistettu." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Ei oikeuksia poistaa resurssia %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Resurssinäkymää ei löytynyt" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resurssin dataa ei löydy" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Ei ladattavaa saatavilla" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ei oikeuksia lukea tietoaineistoa %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Ei oikeuksia lukea resurssia %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Ei oikeuksia muokata resursseja" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Näkymää ei löydy" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Näkymätyyppiä ei löytynyt" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Virheelliset resurssinäkymän tiedot" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Resurssinäkymää ei saatavilla" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Esikatselua ei ole määritelty." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Käyttäjää ei löydy" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Ei oikeuksia rekisteröityä käyttäjäksi." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Ei oikeutta luoda käyttäjää" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ei oikeutta käyttäjän \"{user_id}\" poistamiseen." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Käyttäjää ei määritelty" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Käyttäjän %s muokkaus ei sallittu" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profiili päivitetty" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Ei oiketta lisätä käyttäjää %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Väärä Captcha sana. Yritä uudelleen." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Käyttäjä %s on nyt rekisteröity, mutta olet edelleen kirjautunut sisään " +"käyttäjänä %s" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Ei oikeuksia muokata käyttäjää." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Annettu salasana oli väärin" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Vanha salasana" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "väärä salasana" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Kirjautuminen epäonnistui. Väärä käyttäjätunnus tai salasana." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Ei oikeutta pyytää salasanan resetoimista." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "Sähköpostiosoite on pakollinen" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Virhe sähköpostin lähettämisessa. Yritä myöhemmin uudelleen tai ota yhteyttä" +" ylläpitäjään" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Resetointilinkki on lähetetty sähköpostiosoitteeseesi (jos annettu " +"käyttäjätunnus on olemassa)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Ei oikeutta salasanan resetoimiseen." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Epäkelpo resetointiavain. Yritä uudelleen." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Salasanasi on resetoitu" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Salasanasi pitää olla 4 merkkiä tai pidempi" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Syötetyt salasanat eivät ole samoja" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Sinun täytyy antaa salasanasi" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Seurattavaa kohdetta ei löytynyt" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} ei löytynyt" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Kaikki" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Näytä" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} uusi tapahtuma sivulla {site_title}" +msgstr[1] "{n} uutta tapahtumaa sivulla {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Juuri nyt" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} tavua" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Tuntematon" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Nimetön resurssi" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Uusi tietoaineisto luotu." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Tietoaineistolinkkejä muokattu." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Asetuksia muokattu." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} katselukerta" +msgstr[1] "{number} katselukertaa" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} viimeaikainen katselukerta" +msgstr[1] "{number} viimeaikaista katselukertaa" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Vastaanottajan sähköpostiosoite ei saatavilla!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisaatio" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "ryhmä" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Puuttuva arvo" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Syöttökenttää %(name)s ei odotettu." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Ole hyvä ja syötä kokonaislukuarvo" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Arvon tulee olla Unicode merkkijono" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Tietoaineiston tiedostolinkki(t) virheellisiä" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Lisätiedot" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Avainsana-sanastoa %s ei ole olemassa" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Tietoaineisto" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Ei pystytty parseroimaan JSON-muotoa." + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Organisaatio pitää antaa" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "Et voi siirtää tätä aineistoa toiseen organisaatioon" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisaatiota ei ole" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Et voi lisätä tietoaineistoa tähän organisaatioon" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Vääränlainen kokonaisluku" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Tulee olla luonnollinen luku" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Tulee olla positiivinen kokonaisluku" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Päivämäärän muoto väärä" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Linkkejä ei saa olla logiviestissä" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Tietojoukon id on jo olemassa" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Tietoaineistolinkki" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Ryhmän nimeä tai tunnistetta ei ole olemassa." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Aktiviteetin tyyppi" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Nimien tulee olla merkkijonoja" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Nimeä ei voida käyttää" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Tulee olla vähintään %s merkkiä pitkä" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nimi voi olla korkeintaan of %i merkkiä pitkä" + +#: ckan/logic/validators.py:367 +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:385 +msgid "That URL is already in use." +msgstr "Tämä URL on jo käytössä." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versio saa olla maksimissaan %i merkkiä pitkä" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplikaatti avain \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Ryhmän nimi löytyy jo tietokannasta" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Avainsana \"%s\" on pidempi kuin maksimi %i" + +#: ckan/logic/validators.py:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Avainsana \"%s\" ei saa sisältää isoja kirjaimia" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Käyttäjätunnusten tulee olla merkkijonoja" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Tämä kirjautumisnimi ei käytettävissä" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Kyseistä kirjautumisnimeä ei voi muokata." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Ole hyvä ja syötä molemmat salasanat" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Salasanojen tulee olla tulee olla merkkijonoja" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Salasanasi tulee olla vähintään 8 merkkiä pitkä" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Syötetyt salasanat eivät samat" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Muokkaus ei sallittu, koska se vaikuttaa roskapostaukselta. Ole hyvä ja " +"vältä linkkejä kuvauksessa." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Nimen tulee olla vähintään %s merkkiä pitkä" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Sanaston nimi on jo käytössä" + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Avainsana-sanastoa ei löytynyt." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Avainsana %s ei sisälly sanastoon %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Ei avainsanan nimeä" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Avainsana %s sisältyy jo sanastoon %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Ole hyvä ja anna validi URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "roolia ei ole." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Ilman organisaatiota olevat tietoaineistot eivät voi olla yksityisiä." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Ei lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Ei merkkijono" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Tämä ylätaso loisi silmukan hierarkiassa" + +#: ckan/logic/validators.py:821 +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:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" on pakollinen, kun \"filter_values\" on täytetty" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" on pakollinen, kun \"filter_fields\" on täytetty" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Saman niminen skeematieto on jo olemassa" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Sähköposti {email} ei ole oikeellisessa muodossa" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Pitää olla dict-muuttuja/-määrittely" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "Sähköpostiosoite '{email}' kuuluu rekisteröidylle käyttäjälle." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "Arvon tulee kuulua joukkoon {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "Arvon tulee olla kelvollinen JSON-objekti" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "Arvoa ei pystytty tulkitsemaan kelvolliseksi JSON-objektiksi" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" +"Ei pystytty tulkitsemaan lisäkenttää '{name}' kelvolliseksi JSON-objektiksi" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Puuttuva arvo" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "Roolin on kuuluttava joukkoon \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "Yhteistyökumppanien (collaborators) lisääminen ei ole sallittu" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Yhteistyökumppanien kirjaaminen aineistolle ei ole käytössä" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Yrittää luoda organisaatiota ryhmäksi" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Luokitus täytyy antaa (parametri \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Luokituksen tulee olla kokonaislukuarvo." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Luokituksen tulee olla väliltä %i ja %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "Virhe lähettäessä kutsusähköpostia, ei luotu käyttäjää: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Sinun tulee olla kirjautunut seurataksesi käyttäjiä" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Et voi seurata itseäsi" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Seuraat jo tätä: {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Sinun tulee olla kirjautunut seurataksesi tietoaineistoa." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Käyttäjää {username} ei ole." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Sinun tulee olla kirjautunut seurataksesi ryhmää." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Tietoaineistoa ei löydy" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" +"Organisaatiota ei voi poistaa niin kauan kun se sisältää tietoaineistoja" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id ei ole datassa" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Ei löytynyt sanastoa %s" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Ei löytynyt avainsanaa %s" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Sinun tulee olla kirjautunut lopettaaksesi jonkin asian seuraaminen." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Et seuraa tätä: {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "Roolin on kuuluttava joukkoon \"{}\"" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "Yhteistyökumppanien hakeminen ei ole sallittua" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Tietoaineistolinkkiä ei löytynyt" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "Parametri ei ole totuusarvo (boolean)" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Älä määrittele, jos käytät \"query\"-parametria" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Täytyy olla : pari(eja)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Kentää \"{field}\" ei tunnistettu toiminnossa resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Tietoaineistoa ei löytynyt" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus ei löydetty" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisaatiota ei löytynyt." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Käyttäjällä %s ei ole oikeutta luoda tietoaineistoja" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Käyttäjällä %s ei ole oikeutta muokata näitä ryhmiä" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Käyttäjällä %s ei ole oikeutta luoda tietoaineistoa tähän organisaatioon" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Tietojoukon id ei ole annettu, tekijää ei voida tarkistaa." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Tietoaineistoa ei löytynyt tälle aineistolinkille, ei voida tarkistaa " +"valtuutusta" + +#: ckan/logic/auth/create.py:76 +#, python-format +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:108 +#, 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:119 +#, 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:129 +#, 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:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Käyttäjällä {user} ei ole oikeutta luoda käyttäjiä API-rajapinnan kautta." + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ei oikeutta luoda käyttäjiä" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Ryhmiä ei löytynyt." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"Käyttäjällä %s ei ole oikeutta lisätä yhteistyökumppaneita tälle aineistolle" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Resurssinäyttöä ei löytynyt, tekijää ei voida tarkistaa." + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, 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:107 +#, 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:120 +#, 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/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" +"Käyttäjällä %s ei ole oikeutta poistaa yhteistyökumppaneita tältä " +"aineistolta" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Ei oikeutta" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Käyttäjällä %s ei ole oikeuksia lukea näitä tietoaineistoja " + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Käyttäjällä %s ei ole oikeuksia lukea tietoaineistoa %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Käyttäjällä %s ei ole oikeutta lukea resurssia %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +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:249 +msgid "You must be logged in to access your dashboard." +msgstr "Sinun pitää olla kirjautunut päästäksesi omalle työpöydällesi" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" +"Käyttäjällä %s ei ole oikeutta listata tämän aineiston yhteistyökumppaneita" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata tietoaineistoa %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Käyttäjällä %s ei oikeuksia muokata resurssia %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muuttaa tietoaineiston tilaa %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata organisaatiota %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata ryhmän tilaa %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata ryhmän oikeuksia %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Pitää olla kirjautunut sisään muokatakseen käyttäjää" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata käyttäjää %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Käyttäjällä {0} ei ole oikeuksia päivitää käyttäjää {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Käyttäjällä %s ei ole oikeuksia muokata revision tilaa" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Käyttäjällä %s ei ole oikeutta päivittää task_status taulua" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Käyttäjällä %s ei ole oikeuksia päivittää term_translation taulua" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "otsikko" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Lisenssiä ei määritelty" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Muu (avoin)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Muu (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Muu (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Muu (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Muu (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "riippuu %s:stä" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "on %s riippuvuus" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "on johdettavissa %s:sta" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "on haara %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "linkittää %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "on linkitetty %s:ta" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "on %s:n lapsi" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "on %s:n äiti" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "on sisarus %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "API:n kautta ei ole ladattavissa dataa tälle resurssille" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Data API:n tietojen lataaminen epäonnistui" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Ala kirjoittaa..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Ei yhtään osumaa" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Syöte on liian lyhyt, pitää olla vähintään yksi merkki" +msgstr[1] "Syöte on liian lyhyt, tulee olla vähintään %(num)dmerkkiä" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Lomakkeella on tallentamattomia tietoja" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Vahvista toimenpide" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Oletko varma, että haluat tehdä tämän?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Vahvista" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Peruuta" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Lopeta seuraaminen" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Seuraa" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Linkki" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Linkki URL-osoitteeseen internetissä (voit myös linkittää API:in)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Lataa" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Ole hyvä ja valitse uudelleen ladattava aineisto" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Poista" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Lataa tiedosto työasemalta" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Tiedosto" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Uudelleenjärjestele resurssit" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Voit asettaa resurssit uuteen järjestykseen raahaamalla niitä nuoli-" +"ikonista. Vedä resurssi oikealle ja aseta se haluttuun kohtaan listalla. Kun" +" olet valmis, klikkaa painiketta \"Tallenna järjestys\"." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Tallenna järjestys" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Tallentaa..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Tallenna tiedosto" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Tapahtui virhe" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Tiedoston lataaminen epäonnistui" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Lataamisen autentikointi epäonnistui" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resurssi on ladattu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Datan saaminen ladattavaan tiedostoon epäonnistui" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Olet parhaillaan lataamassa tiedostoa palvelimelle. Oletko varma, että " +"haluat poistua sivulta ja keskeyttää lataamisen?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Lisää suodatin" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Valitse tietokenttä" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Muokkaa" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Näytä enemmän" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Piilota" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Virhe %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Tietoa {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN ohjelmointirajapinta (API)" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Toteutettu CKAN-ohjelmistolla" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Järjestelmän ylläpitäjän asetukset" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Näytä profiili" + +#: ckan/templates/header.html:23 +#, 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:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Yhteenveto" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Profiiliasetukset" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Kirjaudu ulos" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Käyttäjätili" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Kirjaudu sisään" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Rekisteröidy" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Tietoaineistot" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Etsi tietoaineistoja" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Etsi" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Etsi tietoaineistoja" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Lähetä" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Siirry sisältöön" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Sivustopolku" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Lataa vähemmän" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Lataa enemmän" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ei uusia aktiviteetteja tässä näkymässä" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Ylläpito" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Järjestelmän ylläpitäjät" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Asetus" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Roskakori" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Sivun logo" + +#: ckan/templates/admin/config.html:35 +#: 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:35 +msgid "Reset" +msgstr "Oletusasetukset" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Päivitä asetukset" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN konfigurointi" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Sivun nimike: Tämä on CKAN -asennuksen nimike, joka " +"näkyy useissa paikoissa sivustolla.

Tyyli: " +"Saadaksesi nopeasti hieman muokatun teeman käyttöön voit valita " +"tyylilistalta päävärityksen yksinkertaisia muunnelmia.

Sivun " +"logo: Tämä on logo, joka näkyy kaikkien sivupohjien header-" +"osiossa.

Tietoa: Teksti näkyy tämän CKAN-sivuston tietoa sivusta -sivulla.

" +"

Esittelyteksti: Teksti näkyy etusivulla tervetuliaistekstinä kävijöille.

" +"

Muokattu CSS: Tämä on CSS tyylimuotoilu, joka näkyy " +"kaikkien sivujen <head> tagissa. Jos haluat muokata " +"sivupohjia enemmän suosittelemme, että luetdokumentaation.

Kotisivu: " +"Täältä voit valita ennalta määritellyn asettelun niille moduuleille, jotka " +"näkyvät kotisivulla.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Vahvista resetointi" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Hallinnoi CKAN:ia" + +#: 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 "" +"

Järjestelmänhoitajana Sinulla on täydet oikeudet tähän CKAN asennukseen." +" Jatka varovaisuutta noudattaen!

Ohjeistukseksi järjestelmähoitamisen" +" ominaisuuksista, katso CKAN järjestelmänhoitajan ohjetta

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" +"Oletko varma, että haluat hävittää lopullisesti kaikki poistetut kohteet?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Hävitä kaikki" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "Hävitä lopullisesti poistetut aineistot, organisaatiot tai ryhmät." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Vahvista poisto" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Poistetut aineistot" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Poistetut organisaatiot" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Poistetut ryhmät" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Tyhjennä" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Resurssille ei ole esikatselua tällä hetkellä." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klikkaa tästä saadaksesi lisätietoa..." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Lataa resurssi" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Ei esikatselua saatavilla." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Lisätietoja..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Ei käsittelijää datatyypille: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standardi" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Vakiosyöte" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Keskipitkä" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Keskipitkä syöte" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Täyspitkä" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Täyspitkä syöte" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Pitkä" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Pitkä syöte" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Etuliite" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Syötteen etuliite" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Muokattu kenttä (tyhjä)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Muokattu kenttä" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "kuvauskieli" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstikenttä" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Valitse" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktiivisuusvirta" + +#: 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 "Pääkäyttäjät" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Lisää ryhmä" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Ryhmälomake" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Haluatko varmasti poistaa ryhmän - {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 "Haluatko varmasti poistaa jäsenen - {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:15 +#: 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 "Hallinnoi" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Muokkaa ryhmää" + +#: 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 "Jäsenet" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Lisää ryhmä" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Etsi ryhmiä..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Sivulla ei ole tällä hetkellä ryhmiä." + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +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äsenlistaukseen" + +#: 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 "Muokkaa jäsentä" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Lisää jäsen" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Olemassa oleva käyttäjä" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Jos haluat lisätä olemassa olevan käyttäjän, etsi häntä käyttäjänimellä." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "tai" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Uusi käyttäjä" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Jos haluat kutsua uuden käyttäjän, niin kirjoita kutsuttavan " +"sähköpostiosoite alle." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rooli" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Haluatko varmasti poistaa tämän jäsenen?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Poista" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Mitä roolit ovat?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Ylläpitäjä: Voi muokata ryhmän tietoja ja hallinnoida " +"jäseniä.

Jäsen: Voi lisätä/poistaa tietoaineistoja " +"ryhmästä

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Luo uusi ryhmä" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Päivitä ryhmä" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Luo uusi ryhmä" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Etsi tietoaineistoja..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Ryhmän: {group} tietoaineistot" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nimi" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Minun ryhmäni" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Hieman listätietoa ryhmästäni..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Haluatko varmasti poistaa tämän ryhmän?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Tallenna ryhmä" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Näkymä {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Poista tietoaineisto tästä ryhmästä" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Mitä ryhmät ovat?" + +#: 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 "" +"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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Poistetut" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "Lisätietoja" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Tervetuloa" + +#: 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 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" +msgstr "Tervetuloa CKAN:iin" + +#: 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 "Tämä on hieno johdantokappale CKAN:sta tai sivustosta yleensä. " + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Tämä on näytteillä oleva osuus" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Esim. ympäristö" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Etsi tietoja" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Suositut avainsanat" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} tilastoa" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "tietoaineisto" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "tietoaineistoa" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisaatiot" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "ryhmät" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Tämä kenttä on pakollinen" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Voit käyttää tässä Markdown-muotoiluja" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Avain" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Arvo" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Muokattu" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Lomake sisältää virheellisiä syötteitä" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Pakollinen kenttä" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Kuvan URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Tyhjennä lataus" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Lisää organisaatio" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisaatiolomake" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Muokkaa tietoaineistoja" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "löytyi haulla \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt tietoaineistoja" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Muuta julkiseksi" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Muuta yksityiseksi" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Luonnos" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Yksityinen" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Tällä organisaatiolla ei ole tietoaineistoja" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Haluatko varmasti poistaa organisaation - {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 "Muokkaa organisaatiota" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Lisää organisaatio" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Etsi organisaatioita.." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Sivustolla ei ole tällä hetkellä organisaatioita" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Käyttäjätunnus" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Sähköpostiosoite" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Päivitä jäsen" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} jäsen" +msgstr[1] "{count} jäsentä" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Luo uusi organisaatio" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Päivitä organisaatiota" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Luo uusi organisaatio" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Tietojoukot organisaatiossa: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Mitä organisaatiot ovat?" + +#: 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 "" +"

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: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 organisaationi" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Hieman lisätietoa organisaatiostani..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Oletko varma että haluat poistaa tämä organisaation? Huomaa*: Poistaminen ei" +" ole mahdollista niin kauan kun organisaatio sisältää julkisia tai " +"yksityisiä tietoaineistoja." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Tallenna organisaatio" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Näytä {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Luo uusi tietoaineisto" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Mitä tietoaineistot ovat?" + +#: 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 "" +"Tietoaineisto tarkoittaa CKAN:issa kokoelmaa resursseja (esim. tiedostoja) " +"sekä niihin liittyvää kuvausta ja muuta metatietoa, kuten pysyvää URL-" +"osoitetta." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Muutokset" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Haluatko varmasti poistaa tietoaineiston - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Haluatko varmasti poistaa resurssin - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Tarkastele tietoaineistoa" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Muokkaa metadataa" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +msgstr "Yhteistyökumppanit" + +#: 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 "Muokkaa näkymää" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Esikatselu" + +#: ckan/templates/package/edit_view.html:21 +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 aineistoon" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Lisää ryhmään" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Aineistoon ei ole liitetty ryhmiä" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Päivitä tietoaineisto" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Lisää dataa tietoaineistoon" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Lisää uusi resurssi" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Lisää resurssi" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Uusi resurssi" + +#: 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 "Lisää näkymä" + +#: 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 "" +"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:85 +msgid "Add" +msgstr "Lisää" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"Tarkastelet parhaillaan vanhaa versiota tästä aineistosta. Nähdäksesi " +"uusimman version, klikkaa tästä." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Kaikki resurssit" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Tarkastele resurssia" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Muokkaa resurssia" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Näkymät" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API-osoite" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Mene resurssiin" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Lataa" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Aineiston kuvaus:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Lähde: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Tälle resurssille ei ole luotu vielä yhtään näkymää." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Et näe odottamiasi näkymiä?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Tässä joitakin syitä, jos et näe odottamiasi näkymiä:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Tälle resurssille ei ole luotu yhtään sopivaa näkymää" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Voi olla, ettei järjestelmänhoitaja ole ottanut käyttöön asiaan liittyviä " +"liitännäisiä" + +#: ckan/templates/package/resource_read.html:152 +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ä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:175 +msgid "Additional Information" +msgstr "Lisätietoa" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Kenttä" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Data viimeksi päivitetty" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "tuntematon" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metatieto viimeksi päivitetty" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Luotu" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Muoto" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Lisenssi" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Uusi näkymä" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Tällä resurssilla ei ole näkymiä" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Lisää uusi resurssi" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "täysi {format} dumppi" + +#: 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 "" +" Voit käyttää rekisteriä myös %(api_link)s avulla (katso myös " +"%(api_doc_link)s) tai ladata tiedostoina %(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 "" +" Voit käyttää rekisteriä myös %(api_link)s avulla (katso myös " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Kaikki näkymät" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Näytä näkymä" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Näytä esikatselu" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Muokkaa yhteistyökumppania" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Lisää yhteistyökumppani" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Takaisin yhteistyökumppanien listaan" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "Oletko varma, että haluat poistaa tämän yhteistyökumppanin?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Päivitä yhteistyökumpani" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "Mitkä roolit ovat käytettävissä?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Ylläpitäjä - Admin: Aineiston hallinnan lisäksi " +"ylläpitäjät voivat lisätä aineistolle yhteistyökumppaneita tai poistaa " +"niitä.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Muokkaaja - Editor: Muokkaajat voivat muokata aineistoa " +"ja sen resursseja sekä myös tarkastella yksityisiä aineistoja.

" +"

Jäsen - Member: Jäsenet voivat tarkastella yksityistäkin" +" aineistoa, mutta eivät muuttaa sitä.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Lisää yhteistyökumppaneita" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Lisätietoja" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Lähde" + +#: 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 +msgid "Author" +msgstr "Laatija" + +#: 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 "Ylläpitäjä" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versio" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Tila" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Viimeksi päivitetty" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"Ennen kuin voit luoda tietoaineiston, sinun täytyy luoda organisaatio." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Luo uusi organisaatio" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Järjestelmässä ei ole organisaatioita, johon sijoittaa tätä tietoaineistoa." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Pyydä järjestelmän ylläpitäjää luomaan organisaatio ennen kuin voit jatkaa." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Nimike" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "esim. kuvaava otsikko" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "esim. my-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +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:36 +msgid "Please select the license" +msgstr "Ole hyvä ja valitse lisenssi" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisaatio" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Ei organisaatiota" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Näkyvyys" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Julkinen" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktiivinen" + +#: 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 "" +"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?" +msgstr "Haluatko varmasti poistaa tietoaineiston?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Seuraavaksi: Lisää dataa" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Tekijän sähköpostiosoite" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Ylläpitäjän sähköposti" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Päivitä resurssi" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Data" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "esim. Kullan hinta tammikuussa 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Datan sanallinen kuvaus" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "esim. CSV, XML tai JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Tämä päätellään automaattisesti. Jätä tyhjäksi jos haluat" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "esim. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Tiedoston koko" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "esim. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME-tyyppi" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "esim. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Haluatko varmasti poistaa tämän resurssin?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Edellinen" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Tallenna ja lisää toinen" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Valmis" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +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 on mikä tahansa tiedosto tai linkki tiedostoon, jossa on " +"hyödyllistä dataa." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Tutki" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Lisää tietoa" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Koko näyttö" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Upota" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Tämä resurssinäyttö ei ole saatavissa tällä hetkellä." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Upota resurssinäkymä" + +#: ckan/templates/package/snippets/resource_view.html:75 +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" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Leveys" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Korkeus" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Koodi" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resurssin esikatselu" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data ja resurssit" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Tässä tietojoukossa ei ole dataa" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Luo uusi tietoaineisto" + +#: 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 "Lisää dataa" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +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äkymästäni" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Poista suodatin" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +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äkymä on esitys resurssin tiedoista" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Lisää tietoaineisto" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusherin tila: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Takaisinlinkitys URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Näytä lisää {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Näytä suosituimmat {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Aloitussivu" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Kieli" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Siirry" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Ei lisenssiä" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Tämä tietoaineisto täyttää Open Definition -määrittelyn" + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Tällä organisaatiolla ei ole kuvausta" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Tietoaineistolla ei ole kuvausta" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Suodata tuloksia" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Kokeile toisenlaisia hakutermejä.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +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} aineistoa" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +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} aineistoa" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Tietoaineistoja ei löytynyt" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "Haulla \"{query}\" löytyi {number} ryhmää" +msgstr[1] "Haulla \"{query}\" löytyi {number} ryhmää" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt ryhmiä" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "Löytyi {number} ryhmää" +msgstr[1] "Löytyi {number} ryhmää " + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ryhmiä ei löytynyt" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "Haulla \"{query}\" löytyi {number} organisaatiota" +msgstr[1] "Haulla \"{query}\" löytyi {number} organisaatiota" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Haulla \"{query}\" ei löytynyt organisaatioita" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "Löytyi {number} organisaatiota" +msgstr[1] "Löytyi {number} organisaatiota" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Organisaatioita ei löytynyt" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sosiaalinen" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Tilaa" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Sähköposti" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} lisäsi avainsanan {tag} tietoaineistoon {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} päivitti ryhmää {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} päivitti organisaatiota {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} päivitti tietoaineistoa {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "Tarkastele tätä versiota" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} päivitti resurssia {resource} tietoaineistossa {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} päivitti profiiliaan" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} poisti ryhmän {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} poisti organisaation {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} poisti tietoaineiston {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} poisti resurssin {resource} tietoaineistosta {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} alkoi seurata tietoaineistoa {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} alkoi seurata ryhmää {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} alkoi seurata käyttäjää {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} loi ryhmän {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} loi organisaation {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} loi tietoaineiston {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} lisäsi resurssin {resource} tietoaineistoon {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} kirjautui sisään" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} poisti avainsanan {tag} tietoaineistosta {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "Ei päivitettyjä kenttiä. Katso metadatan diff saadaksesi lisätietoja." + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" +"Kentän {key} arvoksi muutettiin {value} paketissa\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" +"Lisättiin kenttä {key} arvolla {value} pakettiin\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "Lisättiin kenttä {key} pakettiin {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "Lisättiin seuraavat kentät pakettiin {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} arvolla {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"Muutettiin kentän {key} arvoksi {new_val}\n" +" (aiemmin {old_val}) paketissa {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" +"Vaihdettiin kentän {key} arvoksi {new_val}\n" +" paketissa {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" +"Poistettiin kenttä {key} paketista\n" +" {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "Poistettiin seuraavat kentät paketista {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etsi avainsanoja" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "Luo API token" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "API tokenit" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "Et ole luonut yhtään API tokenia" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Uutisvirta" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Minun tietoaineistoni" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Minun organisaationi" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Minun ryhmäni" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Seuraamieni osioiden toiminta" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Et ole vielä luonut yhtään tietoaineistoa" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Luo uusi nyt?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Et ole minkään ryhmän jäsen." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Et ole minkään organisaation jäsen." + +#: 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 "Käyttäjät" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +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: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:10 +msgid "Full name" +msgstr "Koko nimi" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "esim. Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "joe@example.com" + +#: 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:17 +msgid "Subscribe to notification emails" +msgstr "Tilaa ilmoitukset sähköpostiisi" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Profiilikuva" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "Profiilikuvan URL" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Vaihda salasana" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Ylläpitäjän salasana" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Salasana" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Salasana uudelleen" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Haluatko varmasti poistaa tämän käyttäjän?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Oletko varma että haluat uudistaa API-avaimen?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Uudista API-avain" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Päivitä profiili" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Kaikki käyttäjät" + +#: 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 "Kirjaudu" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +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." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Luo käyttäjätili" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Unohditko salasanasi?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Ei ongelmaa, käytä salasanan uudelleenasetuksen lomaketta." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Unohditko salasanasi?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Uloskirjautunut" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Olet nyt kirjautunut ulos." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Olet jo kirjautunut käyttäjänä: {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Kirjaudu ulos" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Muista minut" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Olet jo kirjautunut sisään" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Sinun tulee kirjautua ulos ennen kuin voit kirjautua sisään toisella " +"tilillä." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Kirjaudu ulos nyt" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Rekisteröinti" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Luo uusi käyttäjätili" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Miksi rekisteröityä?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Luo uusia tietoaineistoja, ryhmiä ja muita kiinnostavia asioita" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "käyttäjänimi" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Koko nimi" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Luo uusi käyttäjätili" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Aseta salasana uudelleen" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Salasanan uudelleenasetus" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Voit myös vaihtaa käyttäjänimen. Sitä ei voi muokata myöhemmin." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Päivitä salasana" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Miten tämä toimii?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Anna salasanasi, niin päivitämme käyttäjätilisi tiedot" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Käyttäjä ei ole luonut yhtään tietoaineistoa." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Et ole lisännyt biografiaa." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Tällä käyttäjällä ei ole biografiaa." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Tarkoittaa sitä, että vain sinä näet tämän" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Jäsenyys alkanut" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API-avain" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Resetoi salasanasi" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "Sähköpostiosoite tai käyttäjätunnus" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Pyydä uudelleenasettamista" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Syötä sähköpostiosoitteesi tai käyttäjätunnuksesi kenttään niin lähetämme " +"sinulle sähköpostin, jossa on linkki uuden salasanan luomiseen." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Token" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Tapahtumia kohteessa:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Etsi listalta..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Et seuraa mitään" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Ei seuraajia" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Etsi käyttäjiä" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "Suuri poisto-operaatio suoritettu" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Salasanasi tulee olla 8 merkkiä tai pidempi" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Uudellenohjaus ulkopuoliseen sijaintiin ei sallittu." diff --git a/ckan/i18n/fr/LC_MESSAGES/ckan.po b/ckan/i18n/fr/LC_MESSAGES/ckan.po index b749307d887..dff68bbc533 100644 --- a/ckan/i18n/fr/LC_MESSAGES/ckan.po +++ b/ckan/i18n/fr/LC_MESSAGES/ckan.po @@ -2543,8 +2543,8 @@ msgid "" "When you are done, click the \"Save order\" -button." msgstr "" "Vous pouvez trier les resources par glisser-déposer en utilisant l'icône en " -"forme de flèches. Quand vous avez terminé, cliquez sur le bouton « " -"Enregistrer l'ordre »." +"forme de flèches. Quand vous avez terminé, cliquez sur le bouton " +"« Enregistrer l'ordre »." #: ckan/public/base/javascript/modules/resource-reorder.js:65 #: ckan/public/base/javascript/modules/resource-reorder.min.js:1 @@ -4895,8 +4895,8 @@ msgstr "" #: ckan/templates/snippets/changes/resource_desc.html:5 msgid "" -"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" msgstr "" #: ckan/templates/snippets/changes/resource_desc.html:22 @@ -4905,9 +4905,9 @@ msgstr "" #: ckan/templates/snippets/changes/resource_desc.html:38 msgid "" -"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" msgstr "" #: ckan/templates/snippets/changes/resource_extras.html:5 diff --git a/ckan/i18n/gl/LC_MESSAGES/ckan.po b/ckan/i18n/gl/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..ff15eafe34e --- /dev/null +++ b/ckan/i18n/gl/LC_MESSAGES/ckan.po @@ -0,0 +1,5040 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Galician (https://www.transifex.com/okfn/teams/11162/gl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: gl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Non se atopou o recurso" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Non está autorizado para ver esta páxina" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Rematado" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendente" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Enviando" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Erro" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Aínda non foi enviado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Enviar o almacén de datos" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Produciuse un erro de envío:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Erro:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastrexo de erros:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última actualización" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Rexistro de envío" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalles" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fin do rexistro" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Almacén de datos" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Non se atopou o recurso «Almacén de datos»" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Non se atopou o recurso «{0}»." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "O usuario {0} non está autorizado para actualizar o recurso {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "API de datos do CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Acceso ao recurso de datos mediante unha API web con servizo completo de " +"consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Puntos de acceso" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"A API de Datos é accesíbel mediante as seguintes accións da API de acción do" +" CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Crear" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Actualizar / Inserir" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Consulta (con SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Consultando" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Exemplo de consulta (primeiros cinco resultados)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Exemplo de consulta (resultados contendo «jones»)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Consulta exemplo (con sentencia SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Exemplo: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Unha consulta ajax (JSONP) sinxela á API de datos usando jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Exemplo: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Gardar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Campo {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etiqueta" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descrición" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Dicionario de datos" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Columna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipo" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API de datos" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Táboa" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Deseño adaptábel" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Amosar as columnas" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Agachar/amosar as columnas" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conxuntos de datos por páxina" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuración de proba" + +#: ckan/templates/group/read.html:13 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 "Relevancia" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome ascendente" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome descendente" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última modificación" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo personalizado ascendente" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo personalizado descendente" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código de país" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +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 non está traducido" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Este grupo non ten unha descrición" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} conxunto de datos" +msgstr[1] "{num} conxuntos de datos" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 conxuntos de datos" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"A ferramenta de vista previa do CKAN ten moitas e moi potentes " +"funcionalidades" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imaxe" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL da imaxe" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"ex.: http://example.com/image.jpg (se estiver en branco usará o URL do " +"recurso)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Navegador de datos" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Gráfico" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "produciuse un erro ao cargar a vista" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Non foi posíbel cargar a vista" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "O almacén de datos devolveu un erro" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "O proxy de datos devolveu un erro" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Grella" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtros" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Desprazamento de fila" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "ex.: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "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 "ex.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (eixe 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (eixe 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de lonxitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo de GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Achegamento automático ás funcionalidades" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de clúster" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Conxuntos de datos mellor valorados" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Valoración media" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Número de valoracións" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Sen valoración" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grupos máis grandes" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupo" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Número de conxuntos de datos" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Sen grupos" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Etiquetas máis utilizadas" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nome da etiqueta" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Número de conxuntos de datos" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Usuarios que crearon máis conxuntos de datos" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Usuario" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menú de estatísticas" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Conxuntos de datos máis editados" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Texto" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Sitio web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL de páxina web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "ex.: http://example.com (se estiver en branco usará o URL do recurso)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "O seu navegador non admite «iframes»" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Non se atopou a función de autorización: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrador" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Membro" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Para poder administrar, vostede ten que ser administrador do sistema" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Título do sitio" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Estilo" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Lema do sitio" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logotipo do sitio" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Sobre" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Texto da páxina «Sobre»" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Texto de introdución" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Texto na páxina principal" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS personalizado" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Folla de estilo CSS personalizábel inserida na cabeceira da páxina" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Páxina de inicio" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Non é posíbel purgar o paquete %s por mor de que a revisión asociada %s " +"inclúe paquetes de datos no eliminados %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Produciuse un problema ao purgar a revisión %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Rematou a purga" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Acción non incorporada." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Acceso denegado" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Non foi posíbel atopalo" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Solicitude incorrecta" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "A acción %s é descoñecida" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Erro do JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Solicitude incorrecta de datos: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Non se atopou o grupo" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Non se atopou a organización" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorrecto" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizacións" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupos" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiquetas" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatos" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licencias" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "O usuario %r non está autorizado para editar %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Non está autorizado para facer unha actualización masiva." + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Non está autorizado para crear un grupo" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Produciuse un erro de integridade" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "O usuario %r non está autorizado para editar %s autorizacións" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Non está autorizado para eliminar o grupo %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "A organización foi eliminada correctamente." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "O grupo foi eliminado correctamente." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi eliminado correctamente." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "O usuario %r non está autorizado para editar os membros de %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Non está autorizado para engadir membros no grupo %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Non está autorizado para eliminar membros do grupo %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "O membro do grupo foi eliminado correctamente." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Seleccione dúas revisións antes de facer a comparación." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Historial de revisións do grupo CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Cambios recentes no Grupo CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mensaxe do rexistro:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Está a seguir a {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Xa non está a seguir a {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Non está autorizado para ver os seguidores de %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Este sitio está desconectado neste intre. A base de datos no está preparada." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Actualice o seu perfil e engada o seu enderezo de " +"correo-e." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s utiliza o seu enderezo de correo-e se vostede necesita restabelecer o seu" +" contrasinal." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "A busca é incorrecta: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "O parámetro «{parameter_name}» non é un enteiro" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Non se atopou o conxunto de datos" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "O formato de revisión non é válido: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Non é posíbel ver os conxuntos de datos do tipo «{package_type}» " +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Non está autorizado para ler o paquete %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historial de revisión do conxunto de datos do CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Cambios recentes no conxunto de datos do CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Non está autorizado para crear un paquete" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Non está autorizado para editar este recurso" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Non está autorizado para actualizar o conxunto de datos" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Non foi posíbel atopar o conxunto de datos {id}" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Ten que engadir, polo menos, un conxunto de datos" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Non está autorizado para crear un recurso" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Non está autorizado para crear un recurso para este paquete" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Non está autorizado para eliminar o paquete %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Foi eliminado o recurso." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Non está autorizado para eliminar o recurso %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Non está autorizado para ler o conxunto de datos %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Non está autorizado para ler o recurso %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Non está autorizado para editar o recurso" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Non está autorizado para rexistrarse como usuario" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Non está autorizado para crear un usuario" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Non está autorizado para eliminar o usuario co ID «{user_id}»." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Non está autorizado para editar o usuario %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Non está autorizado para crear o usuario %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Non está autorizado para editar un usuario" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Non está autorizado para solicitar o reinicio do contrasinal." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Non está autorizado para reiniciar o contrasinal." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Agora mesmo" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Descoñecido" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Conxunto de datos" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "O usuario %s non está autorizado para crear paquetes" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "O usuario %s non está autorizado para editar estes grupos " + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"O usuario %s non está autorizado para engadir conxuntos de datos a esta " +"organización" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Non está autorizado para crear usuarios" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:98 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/he/LC_MESSAGES/ckan.po b/ckan/i18n/he/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..192df1a7e71 --- /dev/null +++ b/ckan/i18n/he/LC_MESSAGES/ckan.po @@ -0,0 +1,5198 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Yaron Shahrabani , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Yaron Shahrabani , 2020\n" +"Language-Team: Hebrew (https://www.transifex.com/okfn/teams/11162/he/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: he\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "שמע" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "כתובת שמע" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"למשל http://example.com/audio.mp3 (אם נשאר ריק כתובת המשאב תחליף אותה)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"הדפדפן שלך לא תומך ברכיב audio (שמע). אך אל דאגה, ניתן להוריד אותו." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "משאב לא נמצא" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "אין לך הרשאה לצפות בעמוד זה." + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "הושלם" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "ממתין" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "שליחה" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "שגיאה" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "עדיין לא הועלה" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "העלאה ל־DataStore (מאגר הנתונים)" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "שגיאת העלאה:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "שגיאה:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "מעקב אחר תקלה:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "מצב" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "עדכון אחרון" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "מעולם" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "יומן העלאות" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "פרטים" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "סוף יומן" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore (מאגר נתונים)" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "משאב DataStore (מאגר נתונים) לא נמצא" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"מילון הנתונים נשמר. כל דריסות הסוגים יחולו כאשר המשאב יועלה בפעם הבאה " +"ל־DataStore (מאגר הנתונים)" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "הנתונים היו שגויים: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "המשאב „{0}” לא נמצא." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "למשתמש {0} אין הרשאה לעדכן את המשאב {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "ה־API של CKAN לנתונים" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "גישה למשאב מידע דרך API מקוון עם תמיכה בשאילתות מורכבות" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"יש מידע נוסף בתיעוד של API הנתונים של CKAN ושל ה־DataStore (מאגר " +"נתונים).

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "נקודות קצה" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "אפשר לגשת ל־API של הנתונים דרך הפעולות הבאות של API הפעולות של CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "יצירה" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "הוספה / עדכון" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "שאילתה" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "שאילתה (באמצעות SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "ביצוע שאילתה" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "דוגמה לשאילתה (5 התוצאות הראשונות)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "דוגמה לשאילתה (תוצאות שכוללות ‚jones’)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "דוגמה לשאילתה (באמצעות מידע SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "דוגמה: JavaScript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "בקשת ajax‏ (JSONP) פשוטה ל־API של הנתונים באמצעות jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "דוגמה: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "שמירה" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "שדה מס׳ {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "דריסת סוג" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "תיאור" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "מילון נתונים" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "עמודה" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "סוג" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "בטעינה..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API לנתונים" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "טבלה" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "תצוגה מסתגלת" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "הצגת עמודות" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "בדיקת תצורה" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "שדה מותאם אישית יורד" + +#: ckan/templates/group/read.html:17 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 "פופולרי" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "מחרוזת זו אינה מתורגמת" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "לקבוצה זו אין תיאור" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "סדרת נתונים אחת" +msgstr[1] "{num} סדרות נתונים" +msgstr[2] "{num} סדרות נתונים" +msgstr[3] "{num} סדרות נתונים" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 סדרות נתונים" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "לכלי התצוגה המקדימה של CKAN יש מגוון תכונות רבות עצמה" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "עוקבים" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "משאבים" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "שנייה" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "דקה" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "שעה" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "יום" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "תפוגה תוך" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "יחידות" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "תפוגה במועד" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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 "" +"למשל http://example.com/image.jpg (אם נשאר ריק כתובת המשאב תחליף אותה)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "סייר נתונים" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "תרשים" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "מפה" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "טעינת התצוגה נכשלה" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "לא ניתן לטעון את התצוגה" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr " ה־DataStore (מאגר הנתונים) החזיר שגיאה" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "מתווך הנתונים (DataProxy) החזיר שגיאה" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "רשת" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "לדוגמה: 0" + +#: 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 "לדוגמה: 100" + +#: 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 "קבוצה (ציר 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "סדרה (ציר 2)" + +#: 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 "שדה GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "כתובת שגויה." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "סדרות הנתונים המדורגות ביותר" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "דירוג ממוצע" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "מספר דירוגים" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "אין דירוגים" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "הקבוצות הגדולות ביותר" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "קבוצה" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "מספר סדרות נתונים" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "אין קבוצות" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "תגיות נפוצות" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "שם תגית" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "מספר סדרות נתונים" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "משתמשים שיצרו הכי הרבה סדרות נתונים" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "משתמש" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "תפריט סטטיסטיקה" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "סדרות הנתונים עם הכי הרבה עריכות" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "טקסט" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "אירעה שגיאה עם בקשת ה־AJAX. לא ניתן לטעון את התצוגה." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "סרטון" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "כתובת סרטון" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"למשל http://example.com/video.mpeg (אם נשאר ריק כתובת המשאב תחליף אותה)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "כתובת כרזה" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "למשל http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"הדפדפן שלך אינו תומך בסרטונים מוטמעים, אך אל חשש, ניתן להוריד אותו ולצפות בו בנגן " +"הווידאו המועדף עליך! עמך הסליחה." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "למשל http://example.com (אם נשאר ריק כתובת המשאב תחליף אותה)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "הדפדפן שלך לא תומך ב-iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "פונקציית האימות לא נמצאה: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "מנהל" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "עורך" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "חבר" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "אין מה לעשות, בשביל לנהל, חייבים לקבל קודם הרשאת ניהול" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "כותרת האתר" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "סגנון" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "סלוגן האתר" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr " תגית לוגו אתר" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "על אודות" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "טקסט עמוד על אודות" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "טקסט הקדמה" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "טקסט בעמוד הבית" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS מותאם אישית" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS שניתן להתאמה אישית, הוכנס לתוך ה־Header (כותרת) של העמוד" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "עמוד הבית" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"אין אפשרות למחוק את החבילה %s מכיוון שהמהדורה %s כוללת חבילות שטרם נמחקו %s " + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "תקלה במחיקת המהדורה %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "מחיקה הושלמה" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "הפעולה לא בוצעה." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "גישה נדחתה" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "לא נמצא" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "בקשה שגויה" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "פעולה לא מוכרת: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "טעות JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "בקשה בעייתית לנתונים: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "הקבוצה לא נמצאה" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "הארגון לא נמצא" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "סוג קבוצה שגוי" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "ארגונים" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "קבוצות" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "תגיות" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "תצורות" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "רישיונות" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "למשתמש %r אין הרשאה לערוך את %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "אין הרשאה לעדכן בכמות גדולה (bulk update)" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "אין הרשאה ליצור קבוצה" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "שגיאת שלמות" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "למשתמש %r אין הרשאה לערוך את ההרשאות של %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "אין הרשאה למחוק את קבוצה %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "הארגון נמחק. " + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "הקבוצה נמחקה" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s נמחק." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "למשתמש %r אין הרשאה לערוך חברים של %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "אין הרשאה ליצור חברים בקבוצה %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "אין הרשאה להוסיף חבר לקבוצה %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "אין הרשאה למחוק את החברים בקבוצה %s " + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "חבר הקבוצה נמחק." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "יש לבחור שתי מהדורות לפני ביצוע ההשוואה." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "היסטוריית המהדורות של קבוצת CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "שינויים אחרונים בקבוצת CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "הודעה ביומן:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "התחלת לעקוב אחר {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "הפסקת לעקוב אחר {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "אין הרשאה לראות עוקבים %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "האתר אינו פעיל. מסד הנתונים לא הופעל. " + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "נא לעדכן את הפרופיל ואת כתובת הדוא״ל שלך." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s משתמש בכתובת הדוא״ל שלך, אם יהיה עליך לאפס את ססמתך" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "שאילתת החיפוש שגויה: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "המשתנה „{parameter_name}” אינו מספר שלם וחיובי" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "סדרת נתונים לא נמצאה" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "תצורת מהדורה שגויה: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "אין תמיכה בהצגת סדרות נתונים מסוג „{package_type}” ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "אין הרשאה לקריאת החבילה %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "היסטוריית המהדורות של סדרת הנתונים של CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "שינויים אחרונים לסדרת נתונים של CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "אין הרשאה ליצור חבילה" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "אין הרשאה לערוך משאב זה" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "אין הרשאה לעדכון סדרת הנתונים" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "סדרת הנתונים {id} לא נמצאה." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "חובה להוסיף לפחות משאב נתונים אחד" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "אין הרשאה ליצירת משאב" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "אין הרשאה ליצור משאב לחבילה זו" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "לא ניתן להוסיף חבילה לאינדקס החיפוש." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "לא ניתן לעדכן אינדקס חיפוש." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "סדרת הנתונים נמחקה." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "אין הרשאה למחוק חבילה %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "משאב נמחק." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "אין הרשאה למחיקת משאב %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "תצוגת המשאב לא נמצאה" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "נתוני המשאב לא נמצאו" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "אין הורדה זמינה" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "אין הרשאה לקריאת סדרת נתונים %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "אין הרשאה לקריאת המשאב %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "אין הרשאה לעריכת משאב" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "התצוגה לא נמצאה" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "סוג התצוגה לא נמצא" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "נתוני תצוגת המשאב שגויים" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "לא סופקה תצוגת משאב" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "לא הוגדרה תצוגה מקדימה." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "משתמש לא נמצא" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "אין הרשאה להירשם כמשתמש." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "אין הרשאה ליצור משתמש" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "אין הרשאה למחוק את המשתמש עם המזהה „{user_id}”." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "לא הוגדר משתמש" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "אין הרשאה לערוך את המשתמש %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "הפרופיל עודכן" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "אין הרשאה ליצור את המשתמש %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "שגיאת מבחן טיורינג. נא לנסות שוב." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "המשתמש „%s” רשום כעת אבל המשתמש אתו נכנסת הוא „%s”" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "אין הרשאה לעריכת משתמש." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "הססמה שהוקלדה שגויה" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "ססמה ישנה" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "ססמה שגויה" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "הכניסה נכשלה. שם משתמש או ססמה שגויים." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "אין הרשאה לבקש איפוס ססמה." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "נדרשת כתובת דוא״ל" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"שליחת ההודעה בדוא״ל נכשלה. נא לנסות שוב מאוחר יותר או ליצור קשר עם הנהלת " +"המערכת לקבלת עזרה" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "נשלח אליך קישור לאיפוס (אלא אם כן החשבון שצוין אינו קיים)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "אין הרשאה לאיפוס ססמה." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "מפתח איפוס שגוי. נא לנסות שוב." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "הססמה שלך אופסה." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "הססמה חייבת להכיל לפחות ארבעה תווים." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "הססמאות שמילאת אינן תואמות." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "יש לספק ססמה" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "הפריט למעקב לא נמצא" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} לא נמצא" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "הכול" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "תצוגה" + +#: ckan/lib/email_notifications.py:103 +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[2] "{n} פעילויות חדשות מהאתר {site_title}" +msgstr[3] "{n} פעילויות חדשות מהאתר {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "עכשיו" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} בתים" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "לא ידוע" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "משאב ללא שם" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "נוצרה סדרת נתונים חדשה." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "משאבים נערכו." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "הגדרות נערכו." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "תצוגה אחת" +msgstr[1] "{number} תצוגות" +msgstr[2] "{number} תצוגות" +msgstr[3] "{number} תצוגות" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "תצוגה אחרונה" +msgstr[1] "{number} תצוגות אחרונות" +msgstr[2] "{number} תצוגות אחרונות" +msgstr[3] "{number} תצוגות אחרונות" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "כתובת דוא״ל של הנמען לא קיימת!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "ארגון" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "קבוצה" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "ערך חסר" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "שדה הקלט %(name)s לא היה צפוי." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "נא למלא מספר שלם וחיובי כערך" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "חייב להיות ערך מחרוזת יוניקוד" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "משאבי החבילה שגויים" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "תוספות" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "תגית אוצר המילים „%s” אינה קיימת" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "סדרת נתונים" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "לא ניתן לנתח כ־JSON תקני" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "יש לציין ארגון" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "אי אפשר להעביר את סדרת הנתונים הזו לארגון אחר" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "ארגון לא קיים" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "אין אפשרות להוסיף סדרת נתונים לארגון זה" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "מספר שלם וחיובי שגוי" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "חייב להיות מספר טבעי" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "חייב להיות מספר שלם וחיובי" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "מבנה התאריך שגוי" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "אסור קישורים ב־log_message (הודעות יומן)." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "מזהה סדרת הנתונים כבר קיים" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "משאב" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "שם או מזהה קבוצה זה אינו קיים." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "סוג פעילות" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "שמות חייבים להיות מחרוזות" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "אין אפשרות להשתמש בשם זה" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "חייב להיות באורך %s תווים לפחות" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "אורך השם אינו יכול לעלות על %i תווים" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "חובה להשתמש אך ורק באותיות קטנות (ascii), ספרות ובסמלים האלו: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "הכתובת כבר נמצאת בשימוש." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "השם „%s” קצר מהאורך המזערי %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "השם „%s” ארוך מהאורך המרבי %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "אורך הגרסה לא יכול לעלות על %i תווים" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "מפתח כפול „%s”" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "שם הקבוצה כבר קיים במסד הנתונים" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "אורך התגית „%s” קצר מהאורך המזערי %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr " אורך התגית „%s” ארוך מהאורך המרבי %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "התגית „%s” חייבת להיות מורכבת מאותיות קטנות, מספרות או מהסמלים: -_. " + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "אסור שהתגית „%s” תהיה באותיות גדולות" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "שמות משתמשים חייבים להיות מחרוזות" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "שם הכניסה הזה אינו זמין." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "לא ניתן לערוך את שם הכניסה הזה." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "נא להקליד את שתי הססמאות" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "הססמאות חייבות להיות מחרוזות" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "על הססמה שלך להיות באורך של 8 תווים לפחות" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "הססמאות שהקלדת אינן תואמות" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"העריכה אסורה כיוון שיש חשד לפרסום זבל. נא להימנע משילוב קישורים בתיאור שלך." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "אורך שם חייב להיות %s תווים לפחות" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "השם המילוני הזה כבר בשימוש" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "אי אפשר לשנות את ערך המפתח מהערך %s לערך %s. זה מפתח לקריאה בלבד" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "לא נמצא תיוג מילוני." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "התגית %s אינה חלק מהמילון %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "אין שם תגית" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "התגית %s כבר נמצאת במילון %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "נא להקליד כתובת תקנית" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "תפקיד לא קיים." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "סדרת נתונים בלי ארגון לא יכולה להיות פרטית." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "לא רשימה" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "לא מחרוזת" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "הורה זה יכול ליצור לולאה בהררכיה" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "ל־„filter_fields” ול־„filter_values” אמור להיות אותו האורך" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "„filter_fields” נחוץ כאשר ממלאים „filter_values”" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "„filter_values” נחוץ כאשר ממלאים „filter_fields”" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "יש שדה סכמה באותו השם" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "כתובת הדוא״ל {email} אינה במבנה תקני" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "חייב להיות מילון" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "כתובת הדוא״ל ‚{email}’ שייכת למשתמש רשום." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "הערך חייב להיות אחד מתוך {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "הערך אמור להיות פריט JSON תקני" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "לא ניתן לפענח את הערך כפריט JSON תקני" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "לא ניתן לפענח ‚{name}’ נוסף כ־JSON תקני" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "ערך חסר" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "התפקיד חייב להיות אחד מתוך „{}”" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "אין הרשאה להוסיף משתתפים" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "משתתפים לסדרות הנתונים אינם מופעלים" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "מתבצע ניסיון ליצירת ארגון כקבוצה" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "יש לספק מספר או שם חבילה (משתנה „package”)" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "יש לספק דירוג (משתנה „rating”)" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "הדירוג חייב להיות מספר שלם וחיובי." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "הדירוג חייב להיות בין %i ל־%i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "אירעה שגיאה בשליחת הודעת הדוא״ל להזמנה, המשתמש לא נוצר: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "עליך להיכנס למערכת כדי לעקוב אחר משתמשים" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "אין לך אפשרות לעקוב אחר עצמך" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "{0} כבר נמצא ברשימת המעקב שלך" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "עליך להיכנס לחשבון כדי לעקוב אחר סדרת נתונים." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "משתמש {username} לא קיים." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "עליך להיכנס כדי לעקוב אחר קבוצה." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "החבילה לא נמצאה" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "אי אפשר למחוק את הארגון, עוד יש בו סדרות נתונים" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "המספר לא קיים בנתונים" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "המילון „%s” לא נמצא" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "התגית „%s” לא נמצאת" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "עליך להיכנס כדי לבטל מעקב." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "{0} אינו ברשימת המעקב שלך." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "הקיבולת חייבת להיות אחת מתוך „{}”" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "אין הרשאה לקבל משתתפים" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "המשאב לא נמצא." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "המשתנה אינו בוליאני" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "לא לציין אם נעשה שימוש במשתנה „query”" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "חייבים להיות זוגות של : " + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "השדה „{field}” אינו מזוהה ב־resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "החבילה לא נמצאה." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus לא נמצא." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "ארגון לא נמצא." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "למשתמש %s אין הרשאה ליצור חבילות" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "למשתמש %s אין הרשאה לערוך את הקבוצות הללו" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "למשתמש %s אין הרשאה להוסיף סדרת נתונים לארגון זה" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "לא צוין מזהה סדרת נתונים, לא ניתן לבדוק אימות." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr " לא נמצאה אף חבילה עבור המשאב הזה, לא ניתן לבדוק אימות." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "למשתמש %s אין הרשאה ליצור משאבים בסדרת הנתונים %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "למשתמש %s אין הרשאה לערוך את החבילות הללו" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "למשתמש %s אין הרשאה ליצור קבוצות" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "למשתמש %s אין הרשאה ליצור ארגונים" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "למשתמש {user} אין הרשאה ליצור משתמשים דרך ה־API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "אין לך הרשאה ליצור משתמשים" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "הקבוצה לא נמצאה." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "למשתמש %s אין הרשאה להוסיף חברים" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "למשתמש %s אין הרשאה לערוך את הקבוצה %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "למשתמש %s אין הרשאה להוסיף משתתפים לסדרת נתונים זו" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "למשתמש %s אין הרשאה למחוק את המשאב %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "תצוגת המשאב לא נמצאה, לא ניתן לבדוק אימות." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "למשתמש %s אין הרשאה למחוק את ההקשר %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "למשתמש %s אין הרשאה למחוק קבוצות" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "למשתמש %s אין הרשאה למחוק את הקבוצה %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "למשתמש %s אין הרשאה למחוק ארגונים" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "למשתמש %s אין הרשאה למחוק את הארגון %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "למשתמש %s אין הרשאה למחוק task_status (מצב משימה)" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "למשתמש %s אין הרשאה להסיר משתתפים מסדרת נתונים זו" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "אין הרשאה" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "למשתמש %s אין הרשאה לקרוא את החבילות הללו" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "למשתמש %s אין הרשאה לקרוא את החבילה %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "למשתמש %s אין הרשאה לקרוא את המשאב %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "למשתמש %s אין הרשאה לקרוא את הקבוצה %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "חובה להתחבר כדי לגשת ללוח המחוונים שלך" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "למשתמש %s אין הרשאה להציג משתתפים בסדרת נתונים זו" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "למשתמש %s אין הרשאה לערוך את החבילה %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "למשתמש %s אין הרשאה לערוך את המשאב %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "למשתמש %s אין הרשאה לשנות את מצב החבילה %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "למשתמש %s אין הרשאה לערוך את הארגון %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "למשתמש %s אין הרשאה לשנות את מצב הקבוצה %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "למשתמש %s אין הרשאה לערוך את הרשאות הקבוצה %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "עליך להיכנס כדי לערוך משתמש" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "למשתמש %s אין הרשאה לערוך את המשתמש %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "למשתמש {0} אין הרשאה לעדכן את המשתמש {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "למשתמש %s אין הרשאה לשנות את מצב המהדורה" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "למשתמש %s אין הרשאה לעדכן את טבלת task_status (מצב משימה)" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "למשתמש %s אין אישור לעדכן את טבלת term_translation (תרגום ביטויים)" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "כותרת" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "לא צוין רישיון" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "הקדשה ורישוי נחלת הכלל של מידע פתוח (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "רישיון מסד נתונים פתוח עבור מידע פתוח (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "רישיון Open Data Commons Attribution" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "ייחוס-שיתוף זהה" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "רישיון תיעוד חופשי GNU" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "אחר (פתוח)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "אחר (נחלת הכלל)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "אחר (ייחוס)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "רישיון ממשל פתוח - הממלכה המאוחדת (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "רישיון שימוש לא מסחרי (הכול)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "אחר (לא מסחרי)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "אחר (לא פתוח)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "תלוי ב־%s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "מספק תלות עבור %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "נגזר מ־%s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "ממנו נגזר %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "מקושר ל־%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "מקושר מ־%s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "הוא צאצא של %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "הוא הורה של %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "יש לו אח %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "אין נתוני API כדי לטעון את המשאב הזה" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "טעינת פרטי ה־API של הנתונים נכשלה" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "ניתן להקליד כאן…" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "לא נמצאו התאמות" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "הקלט קצר מדי, חייב להיות באורך של תו אחד לפחות" +msgstr[1] "הקלט קצר מדי, חייב להיות באורך של %(num)d תווים לפחות" +msgstr[2] "הקלט קצר מדי, חייב להיות באורך של %(num)d תווים לפחות" +msgstr[3] "הקלט קצר מדי, חייב להיות באורך של %(num)d תווים לפחות" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "ישנם שינויים שלא נשמרו לטופס הזה" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "נא לאשר את הפעולה" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "לבצע את הפעולה הזו?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "אישור" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "ביטול" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "ביטול מעקב" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "לעקוב" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "קישור" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "קישור לכתובת באינטרנט (ניתן לקשר גם ל־API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "העלאה" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "נא לבחור את הקובץ כדי להעלות שוב" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "הסרה" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "העלאת קובץ מהמחשב שלך" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "כתובת" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "קובץ" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "לסדר משאבים מחדש" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"ניתן לשנות את סדר המשאבים על ידי גרירתם באמצעות סמל החץ. ניתן לגרור את " +"המשאבים לשמאל ולהציב אותם במיקום המבוקש ברשימה. כשסיימת, יש ללחוץ על כפתור " +"„שמירת הסדר”." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "שמירת הסדר" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "מתבצעת שמירה…" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "העלאת קובץ" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "אירעה שגיאה" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "לא ניתן להעלות קובץ" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "לא ניתן לאמת את ההעלאה" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "המשאב הועלה" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "לא ניתן לקבל נתונים מהקובץ שהועלה" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "הוספת מסנן" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "בחירת שדה" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "לערוך" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "להציג עוד" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "הסתרה" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "שגיאה %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "על אודות {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "מנשק המכונה (API) של CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "עמותת CKAN" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"מופעל על גבי CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "הגדרות מנהל מערכת" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "הצגת פרופיל" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "לוח מחוונים (פריט %(num)d חדש)" +msgstr[1] "לוח מחוונים (%(num)d פריטים חדשים)" +msgstr[2] "לוח מחוונים (%(num)d פריטים חדשים)" +msgstr[3] "לוח מחוונים (%(num)d פריטים חדשים)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "לוח מחוונים" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "הגדרות פרופיל" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "יציאה" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "חשבון" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "כניסה" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "הרשמה" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "סדרות נתונים" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "חיפוש סדרות נתונים" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "חיפוש" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "חיפוש סדרות נתונים" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "הגשה" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "דילוג לתוכן" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "אשפה" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "לוגו האתר" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "לאפס את הגדרות המערכת?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "איפוס" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "עדכון הגדרות" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "אפשרויות התצורה של CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 כפי שהוא מופיע " +"ברחבי ה־CKAN.

סגנון: יש לבחור מרשימה של סוגים שונים " +"של תבניות צבע כדי להפעיל במהירות תבנית מותאמת אישית.

לוגו " +"תגית האתר: זה הלוגו שמופיע בכותרת של כל התבניות של CKAN.

" +"

על אודות: הטקסט הזה יופיע במופעי CKAN הללו עמוד על אודות.

טקסט " +"מקדים: הטקסט הזה יופיע בדף הבית של " +"עותק CKAN זהכהקדמה למבקרים.

CSS מותאם אישית: זהו " +"מקטע של CSS שיופיע בתגית<head> של כל עמוד. אם מעניין אותך" +" להתאים את התבניות יותר נמליץ על המדריכים המפורטים שלנו.

עמוד " +"הבית: על מנת לבחור סידור מותאם מראש לתבניות שיופיעו בדף הבית.

" + +#: 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" + +#: 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 הזה. המשך מעבר לנקודה" +" זו הוא על אחריותך!

לקבלת הדרכה על השימוש בתכונות ניהול המערכת יש " +"לפנות אל מדריך ניהול המערכת " +"של CKAN

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "למחוק הכול לחלוטין?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "למחוק הכול לחלוטין" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"מחיקה של סדרות הנתונים, הארגונים או הקבוצות לחלוטין היא פעולה בלתי הפיכה." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "אישור מחיקה" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "סדרות הנתונים נמחקו" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "הארגונים נמחקו" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "הקבוצות נמחקו" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "יש ללחוץ כאן למידע נוסף." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "לא הוגדר סוג הטיפול (handler) המתאים לסוג הנתונים: %(type)s." + +#: 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/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 "סימון Markdown" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "הוספת קבוצה" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "טופס קבוצה" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "למחוק את הקבוצה הזאת - {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 "למחוק את חבר הקבוצה - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "הוספת חבר לקבוצה" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "משתמש קיים" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "אם ברצונך להוסיף משתמש קיים, ניתן לחפש את שם המשתמש להלן." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "או" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "משתמש חדש" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "אם ברצונך להזמין משתמש חדש, נא למלא את כתובת הדוא״ל של המשתמש." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "תפקיד" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "למחוק את החבר הזה מהקבוצה?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "מחיקה" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr " מה הם תפקידים?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "חיפוש בסדרות הנתונים…" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "סדרות נתונים בקבוצה: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "שם" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "הקבוצה שלי" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "קצת מידע על הקבוצה שלי..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "למחוק את הקבוצה הזו?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "שמירת קבוצה" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "הצגת {name}" + +#: 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 כדי ליצור ולנהל אוספים של סדרות נתונים. יכול " +"להיות למשל לטובת סידור סדרות נתונים בקטגוריות לטובת מיזם או קבוצה מסוימת או " +"בנושא מסוים או כדרך פשוטה כדי לעזור לאנשים למצוא ולחפש מידע בסדרות הנתונים " +"שפרסמתם. " + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "נמחק" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 היא פלטפורמת המידע הפתוחה המובילה בעולם

CKAN היא פתרון שלם " +"ישר מהקופסה שהופך מידע לנגיש ושימושי - על ידי כלים שמאפשרים פרסום, שיתוף " +"חיפוש ושימוש במידע (כולל אחסון המידע וכלי API מתקדמים). CKAN מיועדת לגופים " +"המפרסמים מידע (ברמה הלאומית והאזורית, חברות וארגונים) שמעונינים להפוך את " +"המידע שלהם לפתוח וזמין.

CKAN נמצאות בשימוש ממשלות וקבוצות משתמשים " +"ברחבי העולם ומפעילה מגוון אתרים רשמיים וקהילתיים כולל מידע מקומי, לאומי " +"ובינלאומי. בין היתר ניתן למצוא את data.gov.uk ואת האיחוד האירופי publicdata.eu, הברזילאיdados.gov.br, אתרים ממשלתיים של גרמניה " +"והולנד, כמו למשל אתרים עירוניים ואזוריים בארה״ב, בריטניה, ארגנטינה, פינלנד " +"ומקומות רבים אחרים.

CKAN: http://ckan.org/
סיור ב־CKAN: http://ckan.org/tour/
אפשרויות " +"המערכת: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "ברוך בואך ל־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 "" +"זוהי פסקת הקדמה נחמדה על CKAN או על האתר באופן כללי. אין לנו טקסט מובנה " +"להכניס כאן בינתיים, אבל בקרוב יהיה" + +#: 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 "סטטיסטיקה של {0}" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "סדרת נתונים" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "סדרות נתונים" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "ארגונים" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "קבוצות" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "שדה זה נדרש" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"ניתן להשתמש כאן בתחביר Markdown" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "מפתח" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "ערך" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "מותאם אישית" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "הטופס מכיל רשומות שגויות:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "שדה נדרש" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "כתובת לתמונה" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "ניקוי העלאה" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "הוספת ארגון" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr " נמצאו בחיפוש אחר „{query}”" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "לא נמצאו סדרות נתונים בחיפוש אחר „{query}”, עמך הסליחה" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "הפיכה לפומבי" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "הפיכה לפרטי" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "טיוטה" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "פרטי" + +#: ckan/templates/organization/bulk_process.html:98 +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 "למחוק את הארגון הזה - {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 "עריכת ארגון" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "שם משתמש" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "כתובת דוא״ל" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "עדכון חבר קבוצה" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "חבר {count}" +msgstr[1] "{count} חברים" +msgstr[2] "{count} חברים" +msgstr[3] "{count} חברים" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "סדרות נתונים בארגון: {group}" + +#: 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 משמשים כדי ליצור, לנהל ולפרסם אוספים של סדרות נתונים. " +"למשתמשים יכולים להיות תפקידים שונים בארגון בהתאם לרמת ההרשאות שלהם כדי " +"ליצור, לערוך ולפרסם." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"למחוק את הארגון הזה? לתשומת לבך*: לא ניתן למחוק כאשר סדרות נתונים פרטיות או " +"ציבוריות שייכות לארגון הזה." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "שמירת ארגון" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "הצגת {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 היא אוסף של משאבי נתונים (כמו קבצים) המופיע בכתובת " +"קבועה. הסדרה כוללת גם תיאור ופירוט נוסף. סדרות נתונים הן מה שמשתמשים רואים " +"כאשר הם מחפשים מידע. " + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "שינויים" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "למחוק את סדרת הנתונים - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "למחוק את המשאב - {name} ?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "הצגת סדרת נתונים" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "עריכת פרטי על" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "תצוגה מקדימה" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"תצוגות סייר הנתונים עשויות להיות אטיות ובלתי מהימנות אלמלא הרחבת ה־DataStore" +" (מאגר הנתונים) מופעלת. למידע נוסף, מומלץ לעיין בתיעוד של סייר " +"הנתונים." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "הוספה" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "עריכת משאב" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "תצוגות" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "נקודת קצה ל־API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "מעבר למשאב" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "הורדה" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "כתובת:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "תיאור סדרת נתונים:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "מקור: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "עדיין לא נוצרו תצוגות למשאב הזה." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "התצוגות שציפית להן לא מופיעות?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "להלן מספר סיבות אפשריות לכך שהתצוגות הצפויות אינן מופיעות:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "לא נוצרה תצוגה שמתאימה למשאב זה" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "יכול להיות שמנהלי האתר לא הפעילו את תוספי התצוגה המתאימים" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"אם תצוגה דורשת DataStore (מאגר נתונים), אין אפשרות להפעיל את תוסף הנתונים של" +" DataStore, או שהנתונים לא נדחפו אל ה־DataStore או שה־DataStore לא סיים לעבד" +" את הנתונים עדיין" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "מידע נוסף" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "שדה" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "עדכון הנתונים האחרון" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "לא ידוע" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "עדכון אחרון של נתוני העל" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "מועד היצירה" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "תצורה" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "רישיון" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "תצוגה חדשה" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "למשאב זה אין תצוגות" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "הוספת משאב נוסף" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

אין נתונים בסדרת נתונים זו, אפשר " +"לעניין אותך להוסיף כאלו?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "תיעוד API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "ייצוא {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 "" +"ניתן לגשת לספרייה הזו גם דרך %(api_link)s (למידע נוסף %(api_doc_link)s) או " +"להוריד את %(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 "" +"ניתן גם לגשת לספרייה הזו דרך %(api_link)s (למידע נוסף %(api_doc_link)s). " + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "עריכת משתתף" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "הוספת משתתף" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "חזרה לכל המשתתפים" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "למחוק משתתף זה?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "עדכון משתתף" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "מה הם התפקידים הזמינים?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

הנהלה: בנוסף לניהול סדרת הנתונים, מנהלים יכולים להוסיף " +"ולהסיר משתתפים מתוך או אל סדרת נתונים.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

הרשאות עריכה: מקנות יכולת לערוך את סדרת הנתונים ומשאביה," +" לרבות גישה אל סדרת הנתונים אם היא פרטיות.

חברות: " +"מקנה יכולת לגשת לסדרת הנתונים אם היא פרטית אך לא לערוך אותה.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "הוספת משתתפים" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "משתתף אחד" +msgstr[1] "{count} משתתפים" +msgstr[2] "{count} משתתפים" +msgstr[3] "{count} משתתפים" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "מצב" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "עדכון אחרון" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "בטרם יצירת סדרות נתונים עליך ליצור ארגון." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "יצירת ארגון חדש" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "אין ארגונים אליהם ניתן לשייך את סדרת הנתונים הזו." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "כדאי לבקש מהנהלת המערכת ליצור ארגון בטרם המשך התהליך." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "ב־%(timestamp)s,‏ %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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 "לדוגמה: my-dataset" + +#: 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:36 +msgid "Please select the license" +msgstr "נא לבחור את הרישיון" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"הגדרות הרישוי ומידע נוסף נמצאים בopendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "ארגון" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "ללא ארגון" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "מצב חשיפה" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "פומבי" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "השלב הבא: הוספת מידע" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "שרול ישראלי" + +#: 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 "joe@example.com" + +#: 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:26 +msgid "Data" +msgstr "נתונים" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "לדוגמה: מחירי זהב בינואר 2020" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "למשל הערות שימושיות על המידע הזה" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "לדוגמה: CSV,‏ XML או JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "נתון זה יוסק אוטומטית. אפשר להשאיר ריק." + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "לדוגמה: 02-09-2020" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "גודל קובץ" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "לדוגמה: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "סוג MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "לדוגמה: application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "למחוק את המשאב הזה?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "הקודם" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "לשמור ולהוסיף עוד אחד" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "עיון" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "מידע נוסף" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "מסך מלא" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "הטמעה" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "תצוגת משאב זו אינה זמינה כרגע." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "הטמעת תצוגת משאב" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"ניתן להעתיק ולהדביק את קוד ההטמעה לתוך מערכת ניהול תוכן או בלוג עם תמיכה " +"ב־HTML גולמי." + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "רוחב" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "גובה" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "קוד" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "תצוגת משאב מקדימה" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "נתונים ומשאבים" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "הוספת סדרת נתונים" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "מצב דוחף הנתונים: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "כתובת לחזרה (Trackback)" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "להציג עוד {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "להציג {facet_type} פופולאריים בלבד " + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "אין {facet_type} תואמים לחיפוש זה" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "ראשי" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "שפה" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ביצוע" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "לא סופק רישיון" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "מסד נתונים זה עומד בהגדרת מידע פתוח (Open Definition)." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "סידור לפי" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "סינון תוצאות" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

נא לנסות חיפוש אחר.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "סדרת נתונים אחת נמצאה בחיפוש אחר „{query}”" +msgstr[1] "{number} סדרות נתונים נמצאו בחיפוש אחר „{query}”" +msgstr[2] "{number} סדרות נתונים נמצאו בחיפוש אחר „{query}”" +msgstr[3] "{number} סדרות נתונים נמצאו בחיפוש אחר „{query}”" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "לא נמצאו סדרות נתונים בחיפוש אחר „{query}”" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "נמצאה סדרת נתונים אחת" +msgstr[1] "נמצאו {number} סדרות נתונים" +msgstr[2] "נמצאו {number} סדרות נתונים" +msgstr[3] "נמצאו {number} סדרות נתונים" + +#: 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] "קבוצה אחת נמצאה בחיפוש אחר „{query}”" +msgstr[1] "{number} קבוצות נמצאו בחיפוש אחר „{query}”" +msgstr[2] "{number} קבוצות נמצאו בחיפוש אחר „{query}”" +msgstr[3] "{number} קבוצות נמצאו בחיפוש אחר „{query}”" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "לא נמצאו קבוצות בחיפוש אחר „{query}”" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "נמצאה קבוצה אחת" +msgstr[1] "נמצאו {number} קבוצות" +msgstr[2] "נמצאו {number} קבוצות" +msgstr[3] "נמצאו {number} קבוצות" + +#: 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] "ארגון אחד נמצא בחיפוש אחר „{query}”" +msgstr[1] "{number} ארגונים נמצאו בחיפוש אחר „{query}”" +msgstr[2] "{number} ארגונים נמצאו בחיפוש אחר „{query}”" +msgstr[3] "{number} ארגונים נמצאו בחיפוש אחר „{query}”" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "לא נמצאו ארגונים מתאימים לחיפוש אחר „{query}”" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "ארגון אחד נמצא" +msgstr[1] "{number} ארגונים נמצאו" +msgstr[2] "{number} ארגונים נמצאו" +msgstr[3] "{number} ארגונים נמצאו" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "דוא״ל" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr " התגית {tag} התווספה לסדרת הנתונים {dataset} על ידי {actor}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} עידכן את הקבוצה {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} עדכן את הארגון {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr " סדרת הנתונים {dataset} עודכנה על ידי {actor}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "הצגת הגרסה הזאת" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr " המשאב {resource} בסדרת הנתונים {dataset} עודכן על ידי {actor}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "הפרופיל של {actor} עודכן" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "הקבוצה {group} נמחקה על ידי {actor}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "הארגון {organization} נמחק על ידי {actor}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "סדרת הנתונים {dataset} נמחקה על ידי {actor}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr " המשאב {resource} נמחק מסדרת הנתונים {dataset} על ידי {actor}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "{actor} {activity_type}" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "החל מעקב אחר {dataset} על ידי {actor}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "החל מעקב אחר {group} על ידי {actor}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "החל מעקב אחר {user} על ידי {actor}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "הקבוצה {group} נוצרה על ידי {actor}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "הארגון {organization} נוצר על ידי {actor}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "סדרת הנתונים {dataset} נוצרה על ידי {actor}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr " המשאב {resource} נוסף לסדרת הנתונים {dataset} על ידי {actor}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "הרישום של {actor} בוצע" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr " התגית {tag} נמחקה מסדרת הנתונים {dataset} על ידי {actor}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "המחבר של {pkg_link} הוגדר בתור {new_author} (לשעבר {old_author})" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "המחבר של {pkg_link} הוגדר בתור {new_author}" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "המחבר הוסר מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "לא עודכנו שדות. יש לעיין בתיעוד השינויים לפרטים נוספים." + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"הדוא״ל של המחבר של {pkg_link} הוגדר לכדי {new_author_email} (לשעבר " +"{old_author_email})" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "הדוא״ל של המחבר של {pkg_link} הוגדר לכדי {new_author}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "דוא״ל המחבר הוסר מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "המשאב {resource_link} נמחק מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "ערך השדה {key} השתנה לכדי {value} בתוך {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "השדה {key} נוסף עם הערך {value} אל {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "השדה {key} נוסף אל {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "השדות הבאים נוספו אל {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} עם הערך {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"ערך השדה {key} השתנה לכדי {new_val} (לשעבר {old_val}) " +"תחת {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "ערך השדה {key} השתנה לכדי {new_val} תחת {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "השדה {key} הוסר מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "השדות הבאים הוסרו מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "הרישיון של {pkg_link} הוחלף ברישיון {new_link} (לשעבר {old_link})" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "הרישיון של {pkg_link} הוחלף ברישיון {new_link} (לשעבר {old_title})" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "הרישיון של {pkg_link} הוחלף ברישיון {new_title} (לשעבר {old_link})" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "הרישיון של {pkg_link} הוחלף ברישיון {new_title} (לשעבר {old_title})" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"האחראי של {pkg_link} הוגדר בתור {new_maintainer} (לשעבר {old_maintainer})" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "האחראי של {pkg_link} הוגדר בתור {new_author}" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "האחראי הוסר מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" +"הדוא״ל של האחראי של {pkg_link} הוגדר לכדי {new_email} (לשעבר {old_email})" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "הדוא״ל של המחבר של {pkg_link} הוגדר לכדי {new_email}" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "דוא״ל האחראי הוסר מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "{pkg_link} הועבר מ־{old_link} ל־{new_link}" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "הועלה קובץ חדש למשאב {resource_link} בתוך {pkg_link}" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "המשאב {resource_link} נוסף אל {pkg_link}" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"התיאור של {pkg_link} עודכן מהתיאור
{old_notes}
לכדי
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"התיאור של {pkg_link} עודכן לכדי
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "הוסר התיאור מעל {pkg_link}" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "{pkg_link} הועבר מהארגון {old_org_link} לארגון {new_org_link}" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "{pkg_link} הוסר מהארגון {old_org_link}" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "{pkg_link} נוסף לארגון {new_org_link}" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "מצב ההצגה של {pkg_link} הוגדר להיות {visibility}" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"תיאור המשאב {resource_link} שבחבילה {pkg_link} עודכן לכדי
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "תיאור המשאב {resource_link} שבחבילה {pkg_link} הוסר" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"תיאור המשאב {resource_link} שבחבילה {pkg_link} עודכן מהתיאור
{old_desc}
לכדי
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"השדה {key} עם הערך {value} נוסף למשאב {resource_link} שבחבילה " +"{pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "השדה {key} נוסף למשאב {resource_link} שבחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "השדות הבאים נוספו למשאב {resource_link} שבחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "השדה {key} הוסר מהמשאב {resource_link} שתחת {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "השדות הבאים הוסרו מהמשאב {resource_link} שבחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"ערך השדה {key} של המשאב {resource_link} השתנה לכדי {new_val} " +"(לשעבר {old_val}) בחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"ערך השדה {key} השתנה לכדי {new_val} במשאב {resource_link} " +"בחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "ערך השדה {key} שבמשאב {resource_link} בחבילה {pkg_link} הוסר" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" +"תצורת המשאב {resource_link} הוגדרה לכדי {format_link} בחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"תצורת המשאב {resource_link} הוגדרה לכדי {new_format_link} (לשעבר " +"{old_format_link}) בחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"שם המשאב {old_resource_link} השתנה לכדי {new_resource_link} תחת {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "התגית {tag_link} הוסרה מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "התגיות הבאות הוסרו מעל {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "{tag_link}" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "התגית {tag_link} נוספה אל {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "התגיות הבאות נוספו אל {pkg_link}" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "הכותרת הוחלפה לכדי {title_link} (לשעבר {old_title})" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "כתובת המקור של של {pkg_link} הוחלפה מ־{old_link} ל־{new_link}" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "כתובת המקור הוסרה מהחבילה {pkg_link}" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "כתובת המקור של {pkg_link} הוחלפה ל־{new_link}" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "הגרסה של {pkg_link} הוחלפה ל־{new_version} (לשעבר {old_version})" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "הגרסה הוסרה מתוך {pkg_link}" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "הגרסה של {pkg_link} הוחלפה ל־{new_version}" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "חיפוש תגיות" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "יצירת אסימון API" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "אסימוני API" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "לא יצרת כלל אסימוני API." + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 אחרים להכיר אותך ואת פועלך." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "החלפת פרטים" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "שם מלא" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "לדוגמה: ישראל ישראלי" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "לדוגמה: joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "מעט מידע על עצמך" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "הרשמה להתראות בדוא״ל" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "תמונת פרופיל" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "כתובת תמונת פרופיל" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "החלפת ססמה" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "ססמת מנהל המערכת" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "ססמה" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "אישור ססמה" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "למחוק את המשתמש הזה?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "לייצר את מפתח ה־API מחדש?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "יצירת מפתח API מחדש" + +#: ckan/templates/user/edit_user_form.html:59 +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 "כבר נכנסת בתור {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "יציאה" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "לזכור אותי" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "כבר נכנסת" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "עליך לצאת בטרם כניסה עם חשבון אחר." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "יצירת חשבון" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "איפוס הססמה שלך" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "איפוס ססמה" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "ניתן גם לשנות את שם המשתמש. לא ניתן לשנות אותו בהמשך." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "עדכון ססמה" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "איך זה עובד?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "עליך פשוט להקליד ססמה חדשה ואנו נעדכן את החשבון שלך" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "לא נוצרו סדרות נתונים על ידי המשתמש." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "לא מילאת תקציר על עצמך." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "למשתמש זה אין תקציר." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "המשמעות היא שרק לך יש אפשרות לראות זאת" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "חשבון קיים מאז" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "מפתח API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "איפוס הססמה שלך" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "דוא״ל או שם משתמש" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "בקשת איפוס" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"נא למלא את כתובת הדוא״ל או את שם המשתמש בתיבה ואנו נשלח לך הודעת דוא״ל עם " +"קישור למלא ססמה חדשה." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "אסימון" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "גישה אחרונה" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "פעולות" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "שלילה" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "חיפוש משתמשים" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "מחיקה מוחלטת הושלמה" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "הצלחה" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "המשתנה u\"{parameter_name}\"‎ אינו מספר שלם וחיובי" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "לא נמצאה פעילות" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "אין הרשאה לצפות בנתוני פעילות" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "פירוט הפעילות בסדרת הנתונים הזאת אינו זמין" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "אין הרשאה לקרוא חבילה" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "אין הרשאה לקרוא את המשתתפים {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "אין הרשאה למחוק משתתפים {}" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "המשתמש הוסר מהמשתתפים" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "אין הרשאה לערוך משתתפים {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "המשתמש נוסף למשתתפים" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "אין הרשאה לצפות באסימוני API." + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "אין הרשאה ליצור אסימוני API." + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"נוצר אסימון API:‏ {token} " +"{copy}
עליך לוודא שהעתקת אותו כיוון שלא תהיה לך אפשרות לצפות במידע הזה " +"שוב!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "אין הרשאה לשלול אסימוני API." + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "על הססמה שלך להיות באורך של 8 תווים לפחות." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "אסור להפנות לאתר חיצוני." diff --git a/ckan/i18n/hr/LC_MESSAGES/ckan.po b/ckan/i18n/hr/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..294723e8f02 --- /dev/null +++ b/ckan/i18n/hr/LC_MESSAGES/ckan.po @@ -0,0 +1,5123 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Croatian (https://www.transifex.com/okfn/teams/11162/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\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" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resurs nije pronаđen" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nemаte ovlаsti za pristup ovoj strаnici" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Završeno" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "U tijeku" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Slanje" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Greškа" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Nije još učitano" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Učitaj u DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Pogreška učitavanja:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Greškа:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Zadnje аžurirаnje" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikad" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log učitavanja" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalji" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Kraj log-a" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore resurs nije pronаđen" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resurs \"{0}\" nije pronađen." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Korisnik {0} nema ovlasti za ažuriranje resursa {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN API podataka" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Pristup resursima podataka kroz web API uz široku podršku upita" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Završne točke" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "API-ju podataka je moguće pristupiti korištenjem CKAN API akcija" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Kreiraj" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Ažuriraj / Umetni" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Upit" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Upit (kroz SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Slanje upita" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Primjer upita (prvih pet rezultata)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Primjer upita (rezultati koji sadrže 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Primjer upita (kroz SQL naredbu)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Primjer: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Jednostavan ajax (JSONP) upit prema API-ju podataka korištenjem jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Primjer: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Spremi" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Opis" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Učitаvаnje ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API podаtаkа" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tablica" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: 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 "" + +#: ckan/templates/group/read.html:13 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 "Važnost" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Ime uzlazno" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Ime silazno" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Zadnja izmjena" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Korisnički opis polja uzlazno" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Korisnički opis polja silazno" + +#: ckan/templates/group/read.html:17 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 "Popularno" + +#: 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 "Korisnički definiran tekst" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "korisnički definiran tekst" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kod zemlje" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "korisnički tekst" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Ova grupa nema opis" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Skup podataka" +msgstr[1] "{num} Skupa podataka" +msgstr[2] "{num} Skupova podataka" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Skupova podataka" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN nudi niz korisnih funkcionalnosti za pregled podataka" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sljedbenici" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resursi" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Slikа" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graf" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Karta" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filteri" + +#: 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 "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 "Broj redova" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "npr. 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tip grafa" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupa (Os 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serije (Os 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tip polja" + +#: 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 "Grupiraj oznake" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Nаjbolje ocijenjeni skupovi podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Prosječnа ocjenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Broj ocjenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Bez ocjene" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Nаjveće grupe" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupа" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Broj skupovа podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Nema grupa" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Nаjčešće oznake" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Naziv Taga" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Broj skupova podataka" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Korisnik" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Izbornik statistika" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Nаjviše uređivani skupovi podаtаkа" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Tekst" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Adresa web stranice" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "npr. http://example.com (ako je prazno koristi se url od resursa)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Vaš preglednik ne podržava iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Urednik" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Član" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Sаmo sistem аdministrаtor može administrirati" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Naslov stranice" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Linija oznake stranice" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logo oznake stranice" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "O servisu" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Tekst O stranici" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Uvodni tekst" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Tekst na početnoj stranici" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Korisnički definiran CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS umetnut u zaglavlje stranice s mogućnošću izmjena" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Početna stranica" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem pri odbаcivаnju verzije %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Odbаcivаnje završeno" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Akcijа nije implementirаnа" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Pristup odbijen" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nije pronаđeno" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Loš zаhtjev" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Ime аkcije nije poznаto: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Greškа: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Neisprаvаn zahtjev: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupа nije pronаđenа" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizacija nije pronađena" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Neispravan tip grupe" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizacije" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupe" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Oznake" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formati" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licence" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Korisnik %r nije ovlаšten za izmjene %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nemate ovlasti za grupno ažuriranje" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nemаte ovlаsti zа kreirаnje grupe" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Greškа integritetа" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nemate ovlasti za brisanje grupe %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizacije je izbrisana." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Grupa je obrisana" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s je obrisan" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nemate ovlasti za dodavanje člana grupi %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nemate ovlasti za brisanje članova grupe %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Član grupe je izbrisan." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Odаberite dvije verzije prije usporedbe." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Povijest verzijа CKAN grupа" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Zadnje promjene u CKAN Grupi:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log porukа:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Vi sada slijedite {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Više ne slijedite {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nemate ovlasti za pregled sljedbenika %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametar \"{parameter_name}\" treba biti cijeli broj" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Skup podаtаkа nije pronаđen" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neisprаvаn formаt verzije: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Neovlаšteno čitаnje pаketа %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Povijest verzijа skupа podаtаkа" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Zadnje promjene nа CKAN skupu podаtаkа:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Neovlаšteno kreirаnje pаketа" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nemate ovlasti za izmjenu ovog resursa" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nemate ovlasti za ažuriranje skupa podataka" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Skup podаtаkа {id} nije pronаđen." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Morate dodati barem jedan resurs podataka" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nemate ovlasti za kreiranje resursa" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Nemate prava za izradu resursa u odabranom paketu" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Nije moguće dodаti pаket u indeks pretrаge." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Nije moguće аžurirаti indeks pretrаge." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Skup podataka je obrisan." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nemate ovlasti za brisanje paketa %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resurs je obrisan." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nemate ovlasti za brisanje resursa %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Resurs nije pronаđen" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resurs podataka nije pronаđen" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Preuzimanje nije moguće" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nemate ovlasti za čitanje skupa podataka %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemаte ovlasti za čitanje resursa %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Nemate ovlasti za izmjenu resursa" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Pogled nije pronađen" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tip pogleda nije pronađen" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Nije definiran pregled." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Korisnik nije pronаđen" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Neovlаštena registracija korisnikа." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Neovlаšteno kreirаnje korisnikа" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Neovlašteno brisanje korisnika sa id-jem \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Korisnik nije specificirаn" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Neovlаšteno mijenjаnje korisnikа %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil аžurirаn" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Neovlаšteno kreirаnje korisnikа %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Pogrešno upisani znakovi. Molimo Vаs pokušаjte ponovo." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Korisnik \"%s\" je sаdа registriran, аli vi ste i dаlje prijavljeni kаo " +"\"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Neovlаštena izmjena korisnikа." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Neispravna lozinka" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Stara lozinka" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Neispravna lozinka" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Prijava nije uspjela. Pogrešno korisničko ime ili lozinka." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Neovlašten zahtjev za resetiranje lozinke." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Neovlašteno resetiranje lozinke." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Neispravan kod za resetiranje. Molimo pokušаjte ponovo." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Vаšа lozinkа je resetirana." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Vаšа lozinka morа biti duljine 4 ili više znakova." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Lozinke koje ste upisali se ne poklаpаju." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Morate upisati lozinku" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Prateća stavka nije pronađena" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nije pronađeno" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Sve" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Pregled" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Upravo sad" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Nepoznаto" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Resurs bez naziva" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nаprаvljen novi skup podаtаkа." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Izmijenjeni resursi." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Izmijenjene postavke." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} pogled" +msgstr[1] "{number} pogleda" +msgstr[2] "{number} pogleda" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nedavni pogled" +msgstr[1] "{number} nedavna pogleda" +msgstr[2] "{number} nedavnih pogleda" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nije dostupnа e-mаil аdresа primаtelja!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizacija" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupа" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Nedostаje vrijednost" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Polje zа unos %(name)s nije očekivаno." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Molimo unesite cjelobrojnu vrijednost" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Resurs pаketа neisprаvаn" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Dodаci" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Oznaka - riječnik \"%s\" ne postoji" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Skup podаtаkа" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Nemoguće prevesti u ispravan JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizacija ne postoji" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Ne možete dodati skup podataka ovoj organizaciji" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Neisprаvаn broj" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Mora biti prirodan broj" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Mora biti pozitivan cijeli broj" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Neisprаvаn formаt dаtumа" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Nisu dozvoljeni linkovi u log poruci." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "ID za skup podataka već postoji" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resurs" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Ime grupe ili ID ne postoje." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tip аktivnosti" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Imena moraju biti u tekstualnom obliku" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "To ime se ne može koristiti" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Mora sadržavati najmanje %s znakova " + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Tаj URL je već u upotrebi." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Dupli ključ \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Grupа sа tim imenom već postoji u bаzi." + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Oznaka \"%s\" ne smije biti velikim slovima" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Korisnička imena moraju biti u tekstualnom obliku" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "To korisničko ime nije slobodno." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Molimo Vаs unesite obje lozinke" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Lozinke moraju biti u tekstualnom obliku" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Lozinke koje ste unijeli se ne poklаpаju" + +#: ckan/logic/validators.py:639 +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:648 +#, 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:656 +msgid "That vocabulary name is already in use." +msgstr "To ime riječnikа je već u upotrebi." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Oznaka - riječnik nije pronаđen." + +#: ckan/logic/validators.py:684 +#, 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:690 +msgid "No tag name" +msgstr "Nemа imenа oznake" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Oznaka %s već pripаdа riječniku %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Molimo unesite ispravan URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "uloga ne postoji." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Skupovi podataka bez organizacije ne mogu biti privatni." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Nije lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Nije tekst" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ovaj nadređeni bi kreirao petlju u hijerarhiji" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Nedostаje vrijednost" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Pokušavate kreirati organizaciju kao grupu" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Morаte osigurati ocjenu (pаrаmetаr \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Ocjenа morа biti cjelobrojnа vrijednost." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Ocjenа morа biti između %i i %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Morate biti prijavljeni da bi slijedili korisnike" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Ne možete slijediti sami sebe" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Već slijedite {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Morate biti prijavljeni da bi slijedili skup podataka." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Korisnik {username} ne postoji." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Morate biti prijavljeni da bi slijedili grupu." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id nije u podаcimа" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Riječnik \"%s\" nije pronаđen" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Oznaka \"%s\" nije pronаđena" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Morate biti prijavljeni da bi prestali slijediti." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Ne slijedite {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resurs nije pronаđen." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nemojte navesti ako koristite \"query\" parametar" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Mora biti : par(ova)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Polje \"{field}\" nije prepoznato u pretrazi resursa." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pаket nije pronаđen." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus nije pronаđen." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizacija nije pronađena." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Korisnik %s nije ovlаšten dа kreirа pаkete" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Korisnik %s nije ovlаšten dа mijenjа ove grupe" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Korisnik %s nije ovlašten za dodavanje skupa podataka ovoj organizaciji" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +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." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, 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:119 +#, 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:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Korisnik %s nije ovlašten za kreiranje organizacija" + +#: ckan/logic/auth/create.py:145 +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:148 +msgid "Not authorized to create users" +msgstr "Neovlаšteno kreirаnje korisnikа" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupа nije pronаđenа." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Korisnik %s nije ovlašten za dodavanje članova" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Korisnik %s nije ovlаšten zа izmjenu grupe %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Korisnik %s nije ovlašten za brisanje grupa" + +#: ckan/logic/auth/delete.py:86 +#, 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:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Korisnik %s nije ovlašten za brisanje organizacija" + +#: ckan/logic/auth/delete.py:107 +#, 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:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Korisnik %s nije ovlаšten za brisanje statusa zadatka" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Nemate ovlasti" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Korisnik %s nije ovlаšten za čitаnje ovih pаketa" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Korisnik %s nije ovlаšten zа čitаnje pаketa %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Korisnik %s nije ovlаšten zа čitаnje resursa %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Trebate biti prijavljeni za pristup oglasnoj ploči." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu pаketa %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Korisnik %s nije ovlašten za izmjenu resursa %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu statusa pаketа %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Korisnik %s nije ovlašten za izmjenu organizacije %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu statusa grupe %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Korisnik %s nije ovlаšten za uređivanje dozvola grupe %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Morate biti prijavljeni za izmjenu korisnika" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Korisnik %s nije ovlаšten za izmjenu korisnikа %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Korisnik %s nije ovlаšten za izmjenu stаtusa verzije" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Korisnik %s nije ovlаšten za аžurirаnje tablice statusa zadataka" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Korisniku %s nije ovlašten za аžurirаnje tablice term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Ostаlo (Otvoreno)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Ostаlo (Jаvna domena)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Ostаlo (Prilog)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Ostаlo (Ne-komercijаlnа)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Ostаlo (Zatvoreno)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "ovisi o %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "je u ovisnosti o %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "potječe od %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "potječe od %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "veže se nа %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "je povezan sа %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "je nasljednik od %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "je prethodnik od %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "ima srodno %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Ne postoji API sa podacima za punjenje ovog resursa" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Pogreška pri dohvatu informacija o API-ju podataka" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Počnite upisivati..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Nije pronađeno" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Postoje izmjene ovog obrasca koje nisu spremljene" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Molimo potvrdite akciju" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Jeste li sigurni da želite izvršiti ovu akciju?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Potvrdi" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Otkаži" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Prestani slijediti" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Slijedi" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Veza" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Kreirajte link na URL na internetu (također možete kreirati link na API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Učitaj" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Ukloni" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Učitajte datoteku sa vašeg računala" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Datoteka" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Spremi redoslijed" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Spremanje..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Učitaj datoteku" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Došlo je do pogreške" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Nije moguće učitati datoteku" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Nije moguće potvrditi učitavanje" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resurs učitan" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Nije moguće dohvatiti podatke za učitanu datoteku" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"U tijeku je učitavanje datoteke. Jeste li sigurni da želite otići sa ove " +"stranice i prekinuti učitavanje?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Dodaj filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Uređivаnje" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Prikaži više" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Sakrij" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Greška %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "O {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Pokreće CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Postavke sistem administratora" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Pogledaj profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Oglasna ploča (%(num)d nova stavka)" +msgstr[1] "Oglasna ploča (%(num)d nove stavke)" +msgstr[2] "Oglasna ploča (%(num)d novih stavki)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Oglasna ploča" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Odjаva" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Prijavi se" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registracija" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Skupovi podаtаkа" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Traži skupove podataka" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Trаži" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Učitaj manje" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Učitaj više" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Nema aktivnosti unutar ovog tijeka aktivnosti" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administracija" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sistem administratori" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfiguracija" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Smeće" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Jeste li sigurni da želite resetirati konfiguraciju?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Resetiraj" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Ažuriraj Konfiguraciju" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN opcije konfiguracije" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Naslov stranice: Ovo je naslov CKAN instance koji se " +"pojavljuje na različitim mjestima kroz CKAN.

Stil: " +"Odaberite listu jednostavnih varijacija standardne sheme boja za brzo " +"postavljanje korisničke teme.

Logo stranice: Ovo je " +"logo koji se pojavljuje u zaglavlju svih predložaka CKAN instance.

" +"

O stranici: Ovaj tekst će se pojavljivati na CKAN " +"instanci o stranici.

Uvodni " +"tekst: Ovaj tekst će se pojaviti na CKAN instanci početna stranica kao pozdravna poruka " +"posjetiteljima.

Korisnički CSS: Ovo je CSS blok koji" +" se pojavljuje u <head> oznaci svake stranice. Ako želite" +" potpunije izmjene predložaka predlažemo da pročitate dokumentaciju.

" +"

Početna: Ovo služi za odabir predefiniranog predloška za" +" module koji se pojavljuju na vašoj početnoj stranici.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potvrdi resetiranje" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administriraj CKAN" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Potvrdi brisanje" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Trajno brisanje" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Ovaj resurs trenutno nije moguće pregledavati." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Kliknite ovdje za više informacija." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Preuzmi resurs" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Nije moguć pregled." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Više detalja..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Ne postoji definiran alat za tip podatka: %(type)s. " + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardni unos" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Srednje" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Srednje sa unosom" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Puno" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Puno sa unosom" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Široko" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Široki unos" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Dodaj na početak" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Unos dodan na početak" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Korisnički definirano polje (prazno)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Korisnički definirano polje" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Smanjenje" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstualno polje" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Odaberi" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Tijek aktivnosti" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "Administrаtori" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Dodаj grupu" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Obrazac grupe" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Jeste li sigurni da želite izbrisati grupu - {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 "Jeste li sigurni da želite izbrisati član - {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:15 +#: 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 "Uredi" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Izmijeni grupu" + +#: 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 "Člаnovi" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Dodаj grupu" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Traži grupe..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Trenutno ne postoje grupe za ovu stranicu" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "A da kreirate?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Natrag na sve članove" + +#: 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 "Izmijeni Člana" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Dodaj član" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Postojeći korisnik" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Ako želite dodati postojećeg korisnika, potražite korisničko ime ispod." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ili" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Novi korisnik" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ako želite pozvati nove korisnike, unesite njihove e-mail adrese." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Uloga" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Jeste li sigurni da želite izbrisati ovaj član?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Izbriši" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Što su uloge?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administrator: Može izmijeniti informacije o grupi i " +"upravljati članovima organizacije.

Član: Može " +"dodati/maknuti setove podataka iz grupa

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Kreiraj grupu" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Ažuriraj grupu" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Kreiraj grupu" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Traži skupove podataka..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Skupovi podataka u grupi: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Ime" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moja grupa" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Malo informacija o mojoj grupi..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Jeste li sigurni da želite izbrisati ovu grupu?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Spremi grupu" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Pregledaj {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Makni skup podataka iz ove grupe" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Što su grupe?" + +#: 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 "" +"Možete koristiti CKAN Grupe za kreiranje i upravljanje kolekcija skupova " +"podataka. Ovo može biti katalog skupova podataka za određeni projekt ili " +"tim, ili za određenu temu, ili jednostavno služi za olakšavanje korisnicima " +"pretraživanje i pronalazak vaših objavljenih skupova podataka." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Obrisano" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "pročitaj više" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Dobrodošli" + +#: 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 je vodeća svjetka open-source platforma za podatkovni portal.

" +"

CKAN je kompletno out-of-the-box softversko rješenje koje čini podatke " +"dostupnima i upotrebljivima – dajući na raspolaganje alate za efikasno " +"objavljivanje, dijeljenje, pretragu i korištenje podatka (uključujući " +"pohranu podataka i pristup robusnim API-ima za podatke). CKAN je namijenjen " +"tijelima koja objavljuju podatke (državna i lokalna uprava, poduzeća i " +"organizacije) za koje žele te da su javni i dostupni.

CKAN koriste " +"vlade i grupe korisnika širom svijeta. On pokreće raznovrsne službene i " +"društvene podatkovne portale za lokalnu, državnu i internacionalnu upravu, " +"kao što su Vlada Velike Britanije data.gov.uk Europska Unija publicdata.eu, Brazilska vlada dados.gov.br, Portal Nizozemske Vlade, kao" +" i gradske i međugradske web stranice u Ujedinjenom Kraljevstvu, SAD-u, " +"Argentini, Finskoj...

CKAN: http://ckan.org/
CKAN Obilazak: http://ckan.org/tour/
Istaknuti " +"pregled: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Dobrodošli u 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 "" +"Ovo je uvodni paragraf o CKAN-u ili stranici općenito. Nemamo još tekst koji" +" bi tu stavili ali uskoro ćemo imati" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Ovo je glavna sekcija" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Pretraga" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popularne oznake" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} stаtistike" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "skup podataka" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "skupovi podаtаkа" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizacije" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupe" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Oov polje je obavezno" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vrijednost" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Korisnički definirano" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formа sаdrži neisprаvan unos:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Obvezno polje" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL slike" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Očisti učitavanje" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Obrazac Organizacije" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Uredi skupove podataka" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " pronađeno za \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Nažalost, nisu pronađeni Skupovi podataka za \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Učini javnim" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Učini privatnim" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Skica" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privatno" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Ova organizacija nema pridružene skupove podataka" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Jeste li sigurni da želite obrisati organizaciju - {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 "Izmijeni Organizaciju" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Dodaj Organizaciju" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Traži organizacije..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Trenutno nema organizacija za ovu stranicu" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Korisničko ime" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email adresa" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Ažuriraj Člana" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administrator: Može dodati/izmijeniti i obrisati " +"skupove podataka, te upravljati članovima organizacije.

" +"

Urednik: Može dodati i izmijeniti skupove podataka, ali " +"ne može upravljati članovima organizacije.

Član: " +"Može vidjeti privatne skupove podataka organizacije, ali ne može dodavati " +"nove skupove podataka.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Kreiraj Organizaciju" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Ažuriraj Organizaciju" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Kreiraj Organizaciju" + +#: ckan/templates/organization/snippets/feeds.html:2 +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 "Što su Organizacije?" + +#: 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 Organizacije se koriste za kreiranje, upravljanje i objavu kolekcija " +"skupova podataka. Korisnici mogu imati različite uloge unutar Organizacije. " +"ovisno o njihovoj razini prava za kreiranje, izmjenu i objavu." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moja Organizacija" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Malo informacija o mojoj Organizaciji" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Spremi Organizaciju" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Pogledaj {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Kreiraj skup podataka" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Što su skupovi podataka?" + +#: 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 skup podataka je kolekcija resursa podataka (kao što su datoteke), sa " +"opisom i ostalim informacijama, na fiksnom URL-u. Skupovi podataka su ono " +"što korisnici vide kad pretražuju podatke." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Promjene" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Jeste li sigurni da želite obrisati skup podataka - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Jeste li sigurni da želite obrisati resurs - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Pogledaj Skup podataka" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Uredi metаpodаtke" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Izmjeni pogled" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Pregled" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Ažuriraj" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Pridruži ovu grupu ovom skupu podataka" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Dodaj grupi" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Ne postoje pripadajuće grupe za ovaj skup podataka" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Ažuriraj Skup podataka" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Dodaj podatke Skupu podataka" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Dodaj novi Resurs" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Dodаj resurs" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Novi resurs" + +#: 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 "Dodaj pogled" + +#: 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:85 +msgid "Add" +msgstr "Dodаj" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Svi resursi" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Pogledaj resurs" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Uredi resurs" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Pogledi" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API završna točka" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Idi na resurs" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Preuzimаnje" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Izvor: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Dodаtne informаcije" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Polje" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "nepoznato" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Kreirаno" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formаt" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencа" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Novi pogled" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Dodaj novi resurs" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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а" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "puno {format} odbacivanje" + +#: 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 "" +" Također možete pristupiti registru koristeći %(api_link)s (vidi " +"%(api_doc_link)s) ili preuzeti %(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 "" +" Također možete pristupiti registru koristeći %(api_link)s (vidi " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Svi pogledi" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Dodatne informacije" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Izvor" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Održаvа" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verzijа" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stаtus" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Zadnja izmjena" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Naslov" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "npr. Opisni naslov" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "npr. moj Skup podataka" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "npr. Neke korisne bilješke o podacima" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "npr. ekonomija, mentalno zdravlje, vlada" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizacija" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Nema organizacije" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Vidljivost" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Javno" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktivno" + +#: 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 "Jeste li sigurni da želite obrisati ovaj Skup podataka?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Sljedeće: Dodaj podatke" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Autor e-maila" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Održavatelj e-maila" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Ažuriraj Resurs" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "npr. Siječanj 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Neke korisne bilješke o podacima" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "npr. CSV, XML ili JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "npr. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Veličina datoteke" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "npr. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Tip" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "npr. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Jeste li sigurni da želite obrisati ovaj Resurs?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Prethodno" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Spremi i dodaj novo" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Kraj" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Što je resurs?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Resurs može biti bilo koja datoteka ili link na datoteku koja sadrži korisne" +" podatke" + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Istraži" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Više informаcija" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Ugrаđeno" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "Širina" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Visina" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kod" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Podaci i Resursi" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Ovaj Skup podataka je prazan" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Kreiraj Skup podataka" + +#: 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 "Dodaj podatke" + +#: 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:28 +msgid "Remove Filter" +msgstr "Ukloni filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +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 "Pogled je način prikaza podataka unutar resursa" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Dodаj Skup Podаtаkа" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Status tijeka podataka: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Prati URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Prikaži više {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Prikaži samo popularno {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Početаk" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jezik" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Idi" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Ne postoji licenca" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ovаj skup podаtаkа zаdovoljаvа Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Ne postoji opis za ovu organizaciju" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ovaj Skup podataka nema opis" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtriraj rezultate" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Molimo pokušajte drugu pretragu.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} Skup podataka pronađen za \"{query}\"" +msgstr[1] "{number} Skupa podataka pronađena za \"{query}\"" +msgstr[2] "{number} Skupova podataka pronađeno za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Nisu pronađeni skupovi podataka za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "Pronađen {number} skup podataka" +msgstr[1] "Pronađena {number} skupa podataka" +msgstr[2] "Pronađeno {number} skupova podataka" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Nisu pronađeni skupovi podataka" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "Pronađena {number} grupa za \"{query}\"" +msgstr[1] "Pronađene {number} grupe za \"{query}\"" +msgstr[2] "Pronađeno {number} grupa za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nisu pronađene grupe za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "Pronađena {number} grupa" +msgstr[1] "Pronađene {number} grupe" +msgstr[2] "Pronađeno {number} grupa" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nisu pronađene grupe" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "Pronađena {number} organizacija za \"{query}\"" +msgstr[1] "Pronađene {number} organizacije za \"{query}\"" +msgstr[2] "Pronađeno {number} organizacija za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Nisu pronađene organizacije za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "Pronađena {number} organizacija" +msgstr[1] "Pronađene {number} organizacije" +msgstr[2] "Pronađeno {number} organizacija" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nisu pronađene organizacije" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Društvo" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Pretplata" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Emаil" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} je dodao oznaku {tag} za skup podataka {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} je ažurirao grupu {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} je ažurirao organizaciju {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} je ažurirao skup podataka {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} je ažurirao resurs {resource} u skupu podataka {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} je аžurirаo svoj profil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} je izbrisao grupu {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} je izbrisao organizaciju {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} je izbrisao skup podataka {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} je izbrisao resurs {resource} iz skupa podataka {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} je počeo slijediti {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} je počeo slijediti {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} je počeo slijediti {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} je kreirao grupu {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} je kreirao organizaciju {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} je kreirao skup podataka {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} je dodao resurs {resource} skupu podataka {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} je prijavljen" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} je maknuo oznaku {tag} iz skupa podataka {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Traži oznake" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Novosti" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moji Skupovi podataka" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje Organizacije" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje Grupe" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivnosti sa stavki koje slijedim" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Niste kreirali nijedan Skup podataka." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Kreirajte sada?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Niste član niti jedne grupe." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Niste član niti jedne organizacije." + +#: 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 "Korisnici" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informacije o korisničkom računu" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Vaš profil omogućava drugim CKAN korisnicima da znaju tko ste i čime se " +"bavite" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Izmijenite detalje" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Puno ime" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "npr. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Malo informacija o vama" + +#: 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:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Promijenite lozinku" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Lozinkа" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Potvrdi lozinku" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Jeste li sigurni da želite izbrisati ovog korisnika?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Da li ste sigurni da želite izraditi novi API ključ" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Izradi novi API ključ" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Ažuriraj profil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Svi korisnici" + +#: 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 "Prijаvite se" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Trebate korisnički račun?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Prijavi se odmah, traje samo minutu." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Kreiraj korisnički račun" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Zаborаvili ste lozinku?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Nema problema, koristite našu formu za resetiranje lozinke." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zаborаvili ste lozinku?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Odjavljen" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Odjavljeni ste." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Već ste prijavljeni kao {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odjаvite se" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapamti me" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Već ste prijavljeni" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Trebate se odjaviti da bi se prijavili sa drugm korisničkim računom." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Odjavite se sada" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registracija" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Ragistriraj se za korisnički račun" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Zašto se učlaniti?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Kreirajte skupove podataka, grupe i ostale zanimljive stvari" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "korisničko ime" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Puno ime i prezime" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Kreirajte korisnički račun" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Resetirajte vašu lozinku" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Resetiranje lozinke" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Ažurirajte lozinku" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Kako ovo funkcionira?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Jednostavno unesite novu lozinku i ažurirat ćemo vaš korisnički račun" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Korisnik nije kreirao nijedan skup podataka" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Niste dodali biografiju" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Ovaj korisnik nema biografiju" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Otvoren ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Ovo znači da samo vi možete vidjeti" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Član od" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Ključ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Resetirajte Vаšu lozinku" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivnost od:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista pretraživanja..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Ne slijedite ništa" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Nema sljedbenika" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Traži korisnike" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Preusmjeravanje na vanjske adrese nije dozvoljeno." diff --git a/ckan/i18n/hu/LC_MESSAGES/ckan.po b/ckan/i18n/hu/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..29015732d41 --- /dev/null +++ b/ckan/i18n/hu/LC_MESSAGES/ckan.po @@ -0,0 +1,5024 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Hungarian (https://www.transifex.com/okfn/teams/11162/hu/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Erőforrás nem található" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Az oldal megtekintése nem engedélyezett" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Hiba" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Hiba:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Mentés" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Leírás" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Betöltés ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Név növekvő sorrendben" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Név csökkenő sorrendben" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Utóljára módosítva" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Erőforrások" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Legmagasabbra értékelt adatkészletek" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Értékelések átlaga" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Értékelések száma" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Nincs még értékelve" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "A legnépesebb csoportok" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Csoport" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Adatkészletek száma" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Leggyakoribb címkék" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Felhasználó" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "A leggyakrabban szerkesztett adatkészletek" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "%s nevű authorizációs funkció nem található" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Adminisztrátor" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Szerkesztő" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Tag" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "A rendszer kezeléséhez adminisztrátornak kell lennie" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Oldal cím" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stílus" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Oldal Tag sor" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Oldal Tag Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Rólunk" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Névjegy oldal szöveg" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Bevezető szöveg" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Szöveg a kezdőlapon" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Egyedi CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Egyedi css beszúrva az oldal fejlécébe" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Kezdőlap" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Takarítás kész" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Művelet nincs végrehajtva." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Hozzáférés megtagadva" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nem található" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Hibás kérés" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "%s nevü tevékenység nem található" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Hiba: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Hibás kérés adat: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Ismeretlen csoport" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Inkorrekt csopor típus" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Szervezetek" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Csoportok" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Cimkék" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formátumok" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenszek" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, 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:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nem jogosult tömeges frissítés elvégzésére" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nincs joga a csoport létrehozásához" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritási hiba" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nem jogosult csoport törlésére %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Szervezetek törlésre kerültek." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Csoport törlésre került." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, 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:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Csoport tag törlésre került" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Válasszon ki két verziót az összehasonlításhoz." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN csoport változásnaplója" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "A CKAN Csoport legújabb változásai:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Naplóbejegyzés: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Jelenleg követ {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Többé nem követ {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nem jogosult a(z) %s követő megtekintésére" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Adatkészlet nem található" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Hibás verzió formátum: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "A %s csomag olvasás nem engedélyezett." + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Adathalmaz Revizió történet" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "A CKAN Adathalmaz aktuális változásai:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nincs joga a csoport készítéshez" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nem jogosult ezen erőforrás szerkesztésére" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nem jogosult az adathalmaz frissítésére" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "A(z) {id} adathalmaz nem található." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +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:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nem jogosult erőforrás létrehozására" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +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:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Nem sikerült a keresési index frissítése." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Az Adathalmaz törlésre került." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nem jogosult a(z) %s csomag törlésére" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Az Erőforrás törlésre került." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, 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:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Erőforrás adat nem található" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Nincs elérhető letöltés" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nem jogosult a(z) %s Adathalmaz olvasására." + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nem jogosult a(z) %s erőforrás olvasására" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Nem jogosult az erőforrás szerkesztésére." + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Nézet nem található" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Nincs előnézet definiálva." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Felhasználó nem található" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Nem jogosult felhasználóként regisztráláshoz." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Felhasználó létrehozása nem engedélyezett" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nem jogosult a(z) \"{user_id}\" id-vel rendelkező felhasználó törléséhez." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Felhasználó nincs meghatározva" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "%s felhasználó szerkesztése nem engedélyezett" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil frissítve" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "%s felhasználó létrehozása nem engedélyezett" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Hibás Captcha. Kérjük próbalkozzon újra" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"\"%s\" felhasználó most regisztrálva, de még mindig \"%s\"-ként van " +"bejelentkezve, mint előtte" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Nem jogosult felhasználó szerkesztésére." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "A megadott jelszó hibás" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Régi jelszó" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "helytelen jelszó" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Belépés sikertelen. Rossz felhasználónév vagy jelszó." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nincs jogosultsága a jelszó megváltoztatásának kérésére" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +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:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "A jelszó visszaállításra került." + +#: ckan/controllers/user.py:565 +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:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "A megadott jelszavak nem egyeznek." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Köteles megadni egy jelszót" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Nézet" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Épp most" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bájt" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Ismeretlen" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Névtelen erőforrás" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Létrehozott új Adathalmaz." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Szerkesztett erőforrás." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Szerkesztett beállítások." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Acímzett e-mail címe nem elérhető!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "szervezet" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "csoport" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Hiányzó érték" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Adjon meg egész értéket" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Kiegészitők" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Adatkészlet" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Érvénytelen egész szám" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Dátumformátum hibás" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Hivatkozások nem engedélyezettek a log_message-ben." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Erőforrás" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Már létező kulcs \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Ilyen nevü csoport már létezik az adatbázisban" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "A \"%s\" cimke nem lehet nagybetűs" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Ez bejelentkezési név nem áll rendelkezésre." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Írja be mindkét jelszót" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "A megadott jelszavak nem egyeznek" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:648 +#, 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:656 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Hiányzó érték" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Meg kell adni értékelést (\"rating\" paraméter)." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Az értékelés egész számnak kell lennie." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Erőforrás nem található." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "A csomag nem található" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Csoport nem található." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Nem jogosult" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "A(z) '%s' felhasználó nem jogosult az %s módosítására" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "%s felhasználó nem jogosult az módosítására" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "%s-től függ" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "%s függősége" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "%s leszármazottja" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "%s származik belőle" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "%s hivatkozása" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "hivatkozás innen: %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "%s gyermeke" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "%s szülője" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "%s testvére" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Mégse" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Fájl feltöltése" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Módosítás" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Kijelentkezés" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Regisztrálás" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Adatkészletek" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Keresés" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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 "Rendszergazdák" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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 "Tagok" + +#: 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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Törlés" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Név" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Törölt" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Üdvözöljük" + +#: 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:11 +msgid "dataset" +msgstr "adathalmaz" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "adatkészletek" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "szervezetek" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "csoportok" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Ez a mező kötelező" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Érték" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Egyéni" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Az űrlap hibás mezőket tartalmaz:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Kötelező mező" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Kép URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Feltöltés törlése" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Szervezeti forma" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Adathalmaz szerkesztése" + +#: 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:47 +msgid "Make public" +msgstr "Nyilvánossá tétel" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Priváttá tétel" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Vázlat" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privát" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Ehhez a szervezethez nem tartozik adathalmaz" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Biztos hogy szeretné törölni a(z) {name} szervezetet?" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "Szervezet szerkesztése" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Szervezet hozzáadása" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Szervezetek keresése...." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Jelenleg nincsenek szervezetek az oldalhoz" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Tag frissítése" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Szervezet létrehozása" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Szervezet frissítése" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Szervezet létrehozása" + +#: ckan/templates/organization/snippets/feeds.html:2 +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 "Mik a Szervezetek?" + +#: 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 "Szervezetem" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Kevés információ a szervezetemről..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Szervezet mentése" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Változások" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Előzetes nézet" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Hozzáadás" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "További információ" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Mező" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formátum" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licenc" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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ó" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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 "Forrás" + +#: 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 +msgid "Author" +msgstr "Szerző" + +#: 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 "Karbantartó" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verzió" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Állapot" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Cím" + +#: 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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Adathalmaz hozzáadása" + +#: 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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Főoldal" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ez a csomag teljesíti a Nyílt Tudás Definíció követelményeit." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Nincs leírás ehhez a szervezethez" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ennek az adathalmaznak nincs leírása" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} a {tag} címkét hozzáadta a {dataset} adatkkészlethez" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} frissítette a(z) {group} csoportot" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} frissítette a(z) {organization} szervezetet" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} frissítette a(z) {dataset} adatkészletet " + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 "Felhasználók" + +#: 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:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Belépés" + +#: 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 "Elfelejtette a jelszavát?" + +#: 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 "Kilépés" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Jelszó visszaállítása" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Külső oldalra való átirányítás nem engedélyezett" diff --git a/ckan/i18n/id/LC_MESSAGES/ckan.mo b/ckan/i18n/id/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..580d12f4cde17e468ba7760faa9b94175600cb47 GIT binary patch literal 21848 zcmd6u3y>vOdEZ+>;;}L>J&_R5TCvg&+L?WL^%_Zwc6WA1tDV_hc4wuCsE~W+_T1^c z_jX@(-`?GkvKEd_3fabv9SJa0;R4~Zg~5+NOo)j^h#(jdV{AnQqRhj#f=!eHxe`n) zo8jIgfE4E0e=iW16BTi!gJtR7Y4!0;Y;8p@IrVo-0btGq1rhL z&xLowm%-SlGk6i{`=HwUW%vsCUZ4JT_+ru@gKvbNfcy)-#*fN<556A$2&(9gUbQ03kLHSQ}R|ANi@=snX=a#(~aS3vdS zUbq!L0M*{_L-pf7K*{~9a3lO5kblAJUlRly;I&ZlxC>6gMX2|F5WW(A#6SPHQ0+Vh z)&95PtKnZmm4D8s&t?)NpNpX6z6q+ITcG4~9aR0@a18E;s$atM;7>xy;g{e+_-?58 z{1^Bt_(Q1nUUsRQuUC0q1f@5Z`Sev#<;S7Q?||pSJy7Gi)8{8p^WKHq;BlyS9`VmV z0VSW`hZ@)CeE!#c{-1k312sQCfYQecnRK;#1yp-uKD`}kz9ymMzYnTE8Pt5;57plX zq5AuND0%$0=O=vrr=Z&ZPf-2)Q_nwx$4Gw%s@=m(nm7-ozd7Vl@E)jseBAT1Q2qW2 zlzx5F=RX5AU(Z2}<3%X7%DnC!y-U1FHPH zpxS-V^FvVb_#OBL_&F#!JPoDC-}O8np>HC66I6Zz$KfwS_3JYb)eJrlZCp_0o`KiG z3u#>an}M2-JD~LR6qMdQ0HsIohx`jZ%8%szB`AG;652X|lIL?!?W_xfU;=J|8t2_m z?{7klvj;W5{|sURf_Fo`=VMUi{s2nf9*3H*Z$p*)2dMRO!R79KuY+oT6TB5}hlnOP z1y%3;5S0u*303Y-JfHIXb4Zti??TPjy7g{8E`=J;VYX08|O<$nef6%8t z2)B~{4XANE<)44oKmS{(as0@q&t@@b-p_@~zX)ChFY}y&*OP8Tjqlfd{$rlcK!y@r zz+|ic*TJ*lQHY5O-U=oE9^_x}FZhw%eh*3?zY6ufXMOsTD_wir;G4)l3i%hjogbC^ zb$B)WGSvH?gX-5MJPhIW@Md@?wDk?oA^mYExqb?2e!k@M|1(s7zYatAE%+jM)<*Z< zbD-Ma!2R$S;N|csxCQ<_l)WBDSli)GK&2mo3?=viq)706&r1=W>P^8-u!Ji2 zA*ga+gt7_!a;BG8XGz($i4u>=)o1{EtxeFGHx(t7*>$oF@HK@XKcf z!5>1&=U15gJK+c6E8%lcdVKCRF8xaQW2D~zUj{cp)w>o-K0BcLJ>z){N*?co($n|A z3*ZN!#{F^6N8x#-ABURPZ$P#8mp=VBQ1AI6d?S={X*?UC^m`Z7eBKUU1(%`h#?M0O z&xfJ;EvWXt33tP%;W0RdvS~aILg~u~pvpZA_1;II8qRJ&jD{1d48{wmaaz5~rq!F8n1VX5HMpbv?Wg&O()2 zfUki|P>hEttz4!MZODcE_s=dGU`7g(4VCsU`Ldo-1D1H42 zsCxH6mA@ZqoDcc@N1)#SNhrBK3iZA}gnIuIQ1bgal>U9&=byL3*^^74%3lpNu4|#* zcOz80`=IK-1xlWGcs8Kc)jd#p`yf>Pf9KPmg;$dPukdPk-kaU{c0i541=ZdM;HB_4 zq2~Yd5YrTV4IYB$-r~l47aSwqg(~+xcm@0zl)iig>iM^z?9;lPZr(11lH+Em_uT?F zz*#r}3#f5^2ucng@%-0N^8O6eJUT#vxZ;g@~- zS$G-gi>F+B+oAe-Bb44BhI-%IeEt&Dc%?Zh%ih z>HFWqtKf!PU3wN?L;5(B{67k%_kRS{&fh`xcjG?SzXm*q^aD`ke-TPvzYAXsABB?R z=V1sRhwA?`a2xzS9D`Tf=K4JgHST+$`t@%3Cin+X<^I~|pTFPb-v~ATi%{>)q1MUU zq2B*Xa2zkHY^3WxsaMIKR<_w~&4W?u6fknEGJTtc$~% zQ2Ov5xE+20;&Ow3fbu)r4+O!F!w%H*4?>no@T5;)a?r{90L0Y>KLb_%(@^!l4^?lB zMRyB)8$?xtUxj+_(@^XBqPMtlZ1%h!YF>7FPQ$B7&-(PT=l$>%v6l>G03dhgFe z)qg)!d%p!$?$hv<@Q-}{H+=pxP@9cW zU}u9i8jY$O_V;w2m0kNQ3hTcUy(emi`_jcM??g&bq?7pHr0C^QFUxsv*+?>edrMjF zk=$$L!^JY~cWN;!(}wG5iFoeKvW~>G7)QMlSp_?f$9dF@Lz+#}X0R)2guA0|Z(%8# z2oJSmgckPle4E^smSkl8EV{yzd!Ll60Y6Hc+lKOUD~=J5~W-v(Oapw!Xlu5%be7 zJ1Nj)_mnQ%4bzFmBt-+GX1IPsv3@lFc(xGDm+c5qR*zH3)wN0Y)s!Jb^O&<@D$22d#ldMb^X#n;EK4xXk2u%qu&cEG@#Fy>}kZ8l;>!bW2hSljV85peA^$X$&Y9@}z6hoQiu`D4NNv@uC|q zB#X;wvm zK9keVvQ`mlX2PNyb?PM>9nX>m`6*A6)R{w6yz1eEwP)+ViKnP@kc?EyXJA|Q$lCHd zj~T>PYB9F6X0RvE^-#YUh-e|6XRS@T3~(~i`j`xFi;hR`wf($9%NVVcH1&#LZxXi~ z?l)Y2-=b2d*4t1Kan?+ef_^fFY9{Y4;wWEOn($T3yzb2;mB1m!I_}N#CRW7UMdb$G ztXxcLu(xct!vjd({UxIwOdmKJ?#<&^exZ~NccyeES%}ku$8mPsk%I?9>s~OON8Kg& z>&&||-_EdY+<6j%v~`Ty(!=)qd97x9hLy+~n3$LdX0m43ArL@}lcA*)9FU7gw%>4(<$=Qw9u+&0B7xbc8_dQmu{=D2b%}kV2xgPC#52q$g&B_9yJ&^b5Yi$2 zEq%hU%Y8_94`30FcI79S>pO8_%Fvs#Jh_)F1W{nZtY7A}^xT=11EpyfGa<`kI?~Uo z`&bvsvlB&dup6hQQY(cFVYOIJFIDHrz*XhKjR&XZXU1Hk`=)|}c{56V#5$DVy%yYT z9EeY-=JJN4ih=B2sJGS`Ly1G>JU$i6jwhqYAs-Z0Gsk+s6qyOCpN-hxLw+a0bGM}+ zd{qc>C{AT40v{;f6opH9ym+(R_6}!bybH>+MXbb4o1+~TzOi?44~Dif6Jgbm_7FKG zD--GB;Nhq9#DKMtDXM4PJUcG;5UC0_R!09&)>Y&g9FpyfPr&53;>|;O#){~Kij@_X z)TVVqVRn?~>UCIIODD(RkcHL@RRH`J#WKNR+dlL?$Vk^GMhncxy%RC&gEP^ES^VD)|2H6P32m`V-o!*FcA zoJCEp5fzjjJ-ysOj@GvewN%N1I%{g6$jD6dBE79>ImwRd%-j+o7faP#mG3le2=mWS z^{m;CB@xBGsgbw)Qn)N?$$6+D^{sX-zJxvVj!F_EwstQV=z3MZl3u?fC|1PYOJnl} zb27Z|6b-no5z1x(P5m@vJxk>#tw>@Krv)S-Q6jw@BTV&yZhR6iM+l>SYTxe6tR48M zl{m+}HQaWp6LC7R#$sv?QFxyh7Oee(9w@|#&0~a9G5dBqb@64LsF$o?9RJjNCf5>; zVNuwg=TTa;6-0)FA@TwCqE1XUVRL&~_FW-C?U7x9f;df+vrw{wOna2e78l0}LgEQ? zwdOK;uF120Va1sw-#3c~eAniatf_s-GS8A8kf;32eP{ZcH<0 zH>PC~7Qg5vY-%w8O&+jfQD3uCc4p?hLZAlOE;++6BzcpKM)iCp>S)uPXjQ@6nxQ5! z-a5c5F;FeYWjEGxdpsiF1gj6-ncd^gTi(w!QvWsJUL9%DNQ zLyD!Os~wgT{7Rkm6pw{(oLE z50qVlsI7EqdU_^FoVK7{jTLnN^rd~~qHa`c=&3h}12f0oPFv8`=dY@Qyzj0&jLy#o z>S6uUtB8_KH#r7Omn-kak)5?H*WosOO3Ke#ei7Vmrw6waLn;9F?1x^@vt7TPZABK` zt_{Q;ahtd@4v3knU9Yo-wy7!N_M$ynB7!x6`%MYG4F|lIYTNd|AaKJGMzsNE-$ImQ zamdE{j5J*DWxjrF!kQnhtFWHXZLqw{^2PfHGNBykyfz;gbe)XTk%6bxiNyAi_*0Q# zoKFNkmMDTo%#O1mZ?6^HAY?sGVBtSf1aWgBTBGnnNpTdSyhhH zVvZx0;sn9EU1V^debqQckl5xVCS!6qKVB)bsB=4ZBsP-dF&hMq%1%{^@3nn2o4K%4 z{n31v%`cAiK0Ap&wf?j=edX0kIU76DzO!_rZyhLl#@3$ajT~s#=Ov@B7<_ixs0Saq zimP>Fu;lafhNCPgj45U<-+|15Ng6JrlzVup3R6w?bxIFU*|#9{%Y8vLHM~!e^W7ZR zw&PQyMHJAVUWnt1W9%u$_cg}7t(y$_9GHgNCT^J6GQVZr;ke7O_xNnlOd8|6%4RV> zmraIyW_RwJxn<|n)Zslxj;uR$aBkdv9OHWyu^Fep+qP`mGQQ=y@oihfty?Fz|M=CU zw@`5Wu-}G{l-qJcxb>RJE!SPWh5y#+G;>3vw zb1KOqvAc{>)>=$A_oz^8-nw<`wc9o)jm=~04z-(u=i%DKjPF{WBdJM(oNZwNN@?*g!EX*SC=(riZUsKXA~pQNRY zC_I+5BAqHloZNGg&@NSsEnC?lBVFc$TRY@H469k~Gp)3)3G6RBIx9<^3AK-mS<8J7 zDiZtXsJjF8m4W?yX?NLk44xK)oh=!2wi;PGYUzlZp0udiOBzv&{1%@Em&(M>*C^Y6 zP+uO13cAl}&0Nyu7_Vh(fX`%eQD;743uhSVr_Y?uF~Wm?`%478#pOmT-X-9ehc7&w zWp?IE`#Q!^Nx~Oq4wVZ!Q+J(%cS+K^ez3=3Dtl=YXqFRkbR*=w$oCD-8F7Vav&Ez^ zlhL?-_$+UC3fO_SqooPHasW-sLN*_T?WoE5AJsV3??vR!mwDL=v=!19*r8l|{o&+9 zv`qVM#r36OHFRnijFgaQLVK`_M%xJ2rX%Xoh?J>BwqZ)AlCWiS+ThR(cgI&)ekXW? zCYlX7F++9JV7Lu=q$05~bt7h3m6xSsZFY6}dz>?m zrKnrl4Fp7^9x{LXbq8U8*3LS?42`w;a5UVH)Xh@=BErg#5$inB3vK2SxP53=+u?z@ zDQ(y#RnQMASf=hT7D9h<=sE&2ZBTiM@B54aiM5!@Bu$s2V2Yasv@o=u!ucpKolqL~ z`2U+r34|kPo4=cI`lW+0yBnmyFW4UuADZVH9vh3uKCleQXmsg}R2ddd&szw;%+6Sr z*^|_h&3t1LnFw28!L3XNKd6r`CbYPiP$c}NYYD+^lw{WUtW@w>spaeqfq7f@ zvTs)h0&jO+fuoK_xkSIT6dEP>6tu)mbM|2H^f83PhlGyQBDNA( z<|U$0Th|$ls*P z$!2_0H)(77od9-WFc~I#+6i{)-WggRneCmATXB920ZhvaastSSdDHzl=QPKs)^t;0 z^m2o{q`;nv4s;^7j_m3Ji)|s|PL5Z7f|)viu>6(Xnc^qbhdYmQ4dA=2msb!owz znaOBQ_PAh7{1KU^P9+_?v!Dgq&utJDbIX&W#qG^`Il{N*cjj{@Oqw6da zrm=tPq2Im>OE9WFx^Uep%;%X&CN$bqnSCEs=_6jNi29MFVp@e=u2()r9LO7r{9bq39XSN_j1UA$SMg-k$aU_mAUba z*MkmjD?3E31c(D+P?gDyxR|%fV2vjKPp(iXM)wye?9Uk&f$^EQf4_4qsB=eePz*e% z?oiZO?iNLzbQdT>y9UtGJqm@neI3wxbav7`=?w=o1o+i03Uk?h3x<7an0@P^!%ITi=sZPHp>|qZywz)#*fQ(Rem$(N=3Mf+{~9`r+XK)<2DysY8Ijo zTV!pUCRZqBe#v7 zUdG+N7}2tUQk6NXjMf<*O$Ts(qsh|=s*#v)3@EebAuE2`E{$dJt1D5lmVC0Gw) z;;3@>=$Kg@{7KZZ^9P$(yDg;6y@J`Ye-mRg1ah%19-aykmHY04BW)5rcjzIl*WL>| zxF#=GmopcKHznNgF0poY16MMJl&bb#QG3zf&%ll=WWY;uEo0lR*4^->aH)Kd9eHd?Y>6*3 z^0Z+tw0_;_c%1u_t6#BiwmMud>=M|d?r6lhYm{>;wrE^HP(B^y*C>SF!+rra4nnOav%rqPvN$QCjdMzwJ%sqxfB_)SCW0l}#W$IvbsAujF!@_2ZC+m_cHp(hu5xMie)mmh)N~wOJgl+Rh6_@wp zOgkd5wXS11BdVO@^9N76sNZ~;71NVhH0o$?{C4l##=*4lkle>ewH z#Ip0KGONOQZ2szTisTjo5fom|;wS}C+M2t1wy*LokC|o&&O5T*_1eu69G-tKWh8NW z;S~h!i}w$uhbnTN%jR;$igvWya-P(=J2Tt=Hx1Mi-tYU`yWrx!fnlGa>cA>l)2m#0 zw_?^*A#E<{kkEOuwTr}6(j^wG@e8dsa3NxCQt*@i0;i2gUH;84%{5BHRl?+At8ite z*#9T*wK^F07c@ZE*%w@^UTlMF>5NJ>WVF^KnUze~3#j-4N7nZ!TzuiI?FDPhX$_2A zsOe9OivtQpbFzM%&}x&W?;a~#%-W|{C!Ey*THT~O+;Z1z+^;_bs!xzsIXZF|Y-V%} z!7j*s)oc)5vX9)U0L$69DiCppI)pmx2%LH5{7(s2*o{lhfY8I=x*?{phFoONv*l_x z%heG#MHb9jcsY2H#-8aO%_`Luhq9w44)9ye!OCog$z8AWf`LQqI-(vpO&tg;E%0*v z95_td-akdNj@m|MA{d@2d>4mYw?Bj(tdOWn7+b z^0{mHd$VR{jH6Ni6#-MBgME}oy3?&s0GvzWt0=YYo{-CEp=5Hk>K(#&Q_BWk9d<3L z{eb_^u-tLg>w%$FSp;W%)~-^RJkG%tgjYGV>CgA, 2020. +# +# Translators: +# Adrià Mercader , 2020 +# adjarriawan , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: adjarriawan , 2021\n" +"Language-Team: Indonesian (https://www.transifex.com/okfn/teams/11162/id/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Suara" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Sumberdaya tidak ditemukan" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Tidak diizinkan untuk melihat halaman ini" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Lengkap" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Tertunda" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Mengirim" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Kesalahan" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Belum diunggah" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Diunggah ke kumpulan data" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Kesalahan dalam mengunggah" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Kesalahan:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Kesalahan traceback" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Terakhir diperbarui" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Tidak pernah" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Log unggah" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detail" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Akhir dari log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Kumpulan data" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Sumber kumpulan data tidak ditemukan" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Data tidak valid:{}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Data \"{0}\" tidak ditemukan" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Buat" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Kueri" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Contoh: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Contoh: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Simpan" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Deskripsi" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Kamus Data" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolom" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipe" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Memuat..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API data" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabel" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Tampilan responsif" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Tampilkan Kolom" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Sembunyi/Tampilkan Kolom" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Kumpulan data per halaman" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + +#: ckan/templates/group/read.html:13 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 "Relevansi" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Terakhir Dimodifikasi" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "Populer" + +#: 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 "Kode Negara" + +#: 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 "Ini adalah kalimat yang belum diterjemahkan" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Grup ini belum memiliki deskripsi" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Kumpulan data" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Kumpulan data" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Pengikut" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Sumberdaya" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Detik" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Menit" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Jam" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Hari" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Gambar" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Tautan gambar" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"contoh: http://example.com/image.jpg (jika kosong, gunakan alamat data)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafik" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Peta" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Kesalahan dalam memuat pratayang" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "Jumlah baris" + +#: 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 "Tipe grafik" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grup (Axis 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sumbu (Axis 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipe Kolom" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Kolom lintang" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Kolom garis bujur" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Kolom GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Otomatis menyorot pada fitur" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Peringkat Tertinggi Kumpulan data" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Peringkat rata-rata" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Jumlah peringkat" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Tidak ada peringkat" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grup Terbesar" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grup" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Jumlah kumpulan data" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Tag Tertinggi" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Pengguna" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Kumpulan Data Paling Sering Diedit" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Video" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Fungsi otorisasi tidak ditemukan: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Admin" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Harus menjadi administrator sistem untuk mengelola" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Tentang" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Masalah membersihkan revisi %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Pembersihan selesai" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Aksi tidak diimplementasikan." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Akses ditolak" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Tidak ditemukan" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Permintaan buruk" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nama aksi tidak diketahui: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Masalah JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Data permintaan buruk: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grup tidak ditemukan" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisasi" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grup" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tag" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Pengguna %r tidak ada izin untuk mengedit %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Tidak punya izin untuk membuat grup" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritas Bermasalah" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Pilih dua revisi sebelum melakukan perbandingan." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Riwayat Revisi Grup CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Perubahan terbaru Grup CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log pesan:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Situs ini sedang luring. Basisdata tidak diinisialisasikan." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Kumpulan data tidak ditemukan" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format revisi cacat: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Tidak punya izin untuk membaca paket %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Riwayat Revisi Kumpulan Data CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Perubahan terbaru Kumpulan Data CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Tidak punya izin untuk membuat paket" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Tidak dapat menambahkan paket ke indeks pencarian." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Tidak dapat memperbarui indeks pencarian." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Tidak ada unduhan tersedia" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Tidak ada izin untuk membaca sumberdaya %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Pengguna tidak ditemukan" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Tidak punya izin untuk membuat pengguna" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Tidak ada pengguna dispesifikasikan" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Tidak ada izin untuk mengedit pengguna %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil diperbarui" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Tidak punya izin untuk membuat pengguna %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha salah. Silahkan coba lagi." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Pengguna \"%s\" sekarang terdaftar tetapu anda masih masuk sebagai \"%s\" " +"dari sebelumnya" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Gagal masuk. Username atau password tidak benar." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Kunci setel ulang cacat. Silahkan coba lagi." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Password anda sudah disetel ulang." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Password anda harus sedikitnya 4 karakter atau lebih." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Password yang anda masukkan tidak cocok." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Lihat" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Tidak dikenal" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Kumpulan data baru yang dibuat." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Sumberdaya yang diedit." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Setelan yang diedit." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Tidak ada alamat email penerima tersedia!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Nilai hilang" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Field masukan %(name)s tidak diharapkan." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Silahkan masukkan sebuah nilai integer" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paket sumberdaya(s) cacat" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Ekstra" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Kosakata tag \"%s\" tidak ada" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Kumpulan data" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Integer cacat" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Format tanggal salah" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Tidak diperkenankan ada tautan dalam log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Sumberdaya" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Nama grup atau ID tersebut tidak ada." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipe aktivitas" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Nama tersebut tidak dapat digunakan" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nama maksimal hingga %i karakter panjangnya" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "URL tersebut sudah digunakan." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Panjang nama \"%s\" kurang dari minimal %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Panjang nama \"%s\" melebihi maksimal %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versi harus maksimal %i karakter panjangnya" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Kunci duplikat \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Nama grup sudah ada di basisdata" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Panjang tag \"%s\" kurang dari minimal %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Panjang tag \"%s\" lebih besar dari maksimal %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" harus berupa karakter alfanumerik atau simbol: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" tidak boleh huruf besar" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Nama login tersebut tidak tersedia." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Silahkan masukkan kedua password" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Password yang anda masukkan tidak cocok" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Nama sedikitnya harus %s karakter panjangnya" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Perbendaharaan nama tersebut sudah digunakan." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Perbendaharaan tag tidak ditemukan." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s bukan milik perbendaharaan %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Tidak ada nama tag" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s sudah menjadi perbendaharaan %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Mohon sediakan sebuah URL yang sah" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Nilai Hilang" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Anda harus menyediakan sebuah peringkat (parameter \"rating\")" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Peringkat harus berupa nilai integer." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Peringkat harus antara %i dan %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Anda tidak dapat mengikuti diri anda sendiri" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id tidak berada dalam data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Tidak dapat menemukan perbendaharaan \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Tidak dapat menemukan tag \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Sumberdaya tidak ditemukan." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Jangan spesifikasikan bila menggunakan parameter \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Harus berupa pasangan(s) :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Field \"{field}\" tidak dikenali dalam resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Paket tidak ditemukan." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus tidak ditemukan." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Pengguna %s tidak punya izin untuk membuat paket" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Pengguna %s tidak punya izin untuk mengedit grup ini" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Tidak ada paket ditemukan untuk sumberdaya ini, tidak dapat memeriksa " +"otorisasi." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, 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:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Pengguna %s tidak punya izin untuk membuat grup" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grup tidak ditemukan." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Pengguna %s tidak punya izin untuk mengedit grup %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, 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:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Pengguna %s tidak punya izin untuk menghapus task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Pengguna %s tidak punya izin untuk membaca paket ini" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Pengguna %s tidak punya izin untuk membaca paket %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Pengguna %s tidak punya izin untuk membaca sumberdaya %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Pengguna %s tidak punya izin untuk mengedit paket %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Pengguna %s tidak punya izin untuk mengubah kondisi dari paket %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Pengguna %s tidak punya izin untuk mengubah kondisi dari grup %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Pengguna %s tidak punya izin untuk mengedit perizinan dari grup %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Pengguna %s tidak punya izin untuk mengedit pengguna %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Pengguna %s tidak punya izin untuk mengubah kondisi revisi" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Pengguna %s tidak punya izin untuk memperbarui tabel task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Pengguna %s tidak punya izin untuk memperbarui tabel term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Lainnya (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Lainnya (Domain Publik)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Lainnya (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Lainnya (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Lainnya (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "tergantung pada %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "tergantung dari %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "diperoleh dari %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "punya turunan %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "bertautan ke %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "ditautkan dari %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "cabang dari %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "induk dari %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "punya kembaran %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Batal" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Tidak ikuti" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Ikuti" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Unggah" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Unggah file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Edit" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dasbor" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Keluar" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Daftar" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Kumpulan data" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Cari" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Sampah" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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 "Administrator" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Tambah Grup" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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 "Anggota" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Tambah Grup" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Hapus" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nama" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Selamat datang" + +#: 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:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "kumpulan data" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Nilai" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Terdapat entitas cacat pada formulir:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL gambar" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Perubahan" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Pratayang" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Tambah" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Unduh" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Informasi Tambahan" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Field" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Dibuat" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Lisensi" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: 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 "Sumber" + +#: 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 +msgid "Author" +msgstr "Pembuat" + +#: 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 "Pemelihara" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versi" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Kondisi" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Judul" + +#: 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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisasi" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Publik" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Tanam" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kode" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Tambah Kumpulan data" + +#: 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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Beranda" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Kumpulan data ini memenuhi kriteria Definisi Terbuka." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} memperbarui profil mereka" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} mendaftar" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 "Pengguna" + +#: 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:10 +msgid "Full name" +msgstr "Nama lengkap" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Masuk" + +#: 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 "Lupa password anda?" + +#: 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 "Keluar" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Pendaftaran" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Daftar untuk Akun baru" + +#: 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 "Buat kumpulan data, grup dan hal menarik lainnya" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Nama pengguna" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nama lengkap" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Buat akun" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Setel ulang sandi anda" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Setel ulang sandi" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Perbaharui sandi" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Bagaimana ini bekerja?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Pengguna belum sama sekali membuat kumpulan data" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Anda belum mengisi biografi" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Pengguna ini tidak memiliki biografi" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Ini artinya hanya anda yang dapat melihat ini" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Anggota sejak" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Kunci API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Setel ulang password anda" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Tidak ada pengikut" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Cari Pengguna" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/is/LC_MESSAGES/ckan.po b/ckan/i18n/is/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..159811b2f50 --- /dev/null +++ b/ckan/i18n/is/LC_MESSAGES/ckan.po @@ -0,0 +1,5133 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Icelandic (https://www.transifex.com/okfn/teams/11162/is/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: is\n" +"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Tilfang fannst ekki" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Þú hefur ekki heimild til að opna síðuna" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Lokið" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Í bið" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Sendi" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Villa" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Upphleðslu er ekki lokið" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Hlaða inn í DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Villa í upphleðslu:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Villa:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Staða" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Síðast uppfært" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldrei" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upphleðsluskrá" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Upplýsingar" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Endir á skrá" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Tilfang DataStore fannst ekki" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Tilfangið „{0}“ fannst ekki." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Notandinn {0} hefur ekki heimild til að uppfæra tilfangið {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Opnaðu tilfangsgögn í gegnum nettengt API með öflugum leitarstuðningi" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Viðmið" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Hægt er opna Data API með eftirfarandi aðgerðum CKAN action API." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Stofna" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Uppfæra / Færa inn" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Fyrirspurn" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Fyrirspurn (með SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Athugar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Dæmi um fyrirspurn (fyrstu 5 niðurstöður)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Dæmi um fyrirspurn (niðurstöður sem innihalda 'jones') " + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Dæmi um fyrirspurn (með SQL yfirlýsingu)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Dæmi: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Einföld ajax (JSONP) fyrirspurn til data API með jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Dæmi: Kyrkislanga" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Vista" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Lýsing" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Hleð..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tafla" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Gagnapakkar á hverri síðu" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Prófunarstillingar" + +#: ckan/templates/group/read.html:13 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 "Samsvörun" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nöfn í stafrófsröð" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Öfug stafrófsröð" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Síðast breytt" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Viðbótarupplýsingar í vaxandi röð" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Viðbótarupplýsingar í lækkandi röð" + +#: ckan/templates/group/read.html:17 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 "Vinsælt" + +#: 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 "Valfrjáls texti" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "valfrjáls texti" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landskóði" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "valfrjáls tilfangstexti" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Engin lýsing á safninu" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} gagnapakki" +msgstr[1] "{num} gagnapakkar" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 gagnapakkar" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Gagnaforskoðunartól CKAN býður upp á mikla möguleika" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Fylgjendur" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Tilföng" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Mynd" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Slóð á mynd" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"t.d. http://example.com/myndin-min.jpg (ef tómt er vefslóð tilfangs notuð)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Gagnaskoðandi" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Myndrit" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Kort" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Síur" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "raðahliðrun" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "t.d. 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Fjöldi raða" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "t.d. 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Gerð myndrits" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Hópur (ás 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Röð (ás 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Gerð svæðis" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Breiddargráðureitur" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Lengdargráðureitur" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-reitur" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Sjálfvirk þysjun að eiginleikum" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Klasamerkingar" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Gagnapakkar með hæstu einkunn" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Meðaleinkunn" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Fjöldi einkunna" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Engar einkunnir" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Stærstu söfn" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Safn" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Fjöldi gagnapakka" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Engin söfn" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Algengustu efnisorðin" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Heiti efnisorðs" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Fjöldi gagnapakka" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Notandi" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Talnagögn" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Gagnapakkar sem hafa verið uppfærðir oftast" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Texti" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Vefsíða" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Vefsíðuslóð" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "t.d. http://example.com (ef tómt er vefslóð tilfangs notuð)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Vafrinn þinn styður ekki iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Virkni aðgangsheimildar fannst ekki: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Kerfisstjóri" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Útgefandi" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Meðlimur" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Þú þarft að vera kerfisstjóri til að geta stjórnað" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Titill síðu" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Útlit" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Slagorð vefsins" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Merki vefsins" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Um vefinn" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Texti um vefinn" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Kynningartexti" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Texti á heimasíðu" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Sérsniðið CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Sérsníðanlegt CSS var sett inn í haus síðunnar" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Heimasíða" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Vandamál við að eyða útgáfu %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Hreinsun lokið" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Aðgerð ekki framkvæmd." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Aðgangur óheimill" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Fannst ekki" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Villa í fyrirspurn" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Heiti aðgerðar ekki þekkt: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-villa: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Gagnavilla fyrirspurnar: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Safn fannst ekki" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Stofnun fannst ekki" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Röng safnategund" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Stofnanir" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Söfn" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Efnisorð" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Snið" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Leyfi" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Notandinn %r hefur ekki heimild til að breyta %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Heimild vantar til að framkvæma uppfærslu á magni" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Þú hefur ekki heimild til að stofna safn" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Villa í heilindum gagna" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Þú hefur ekki heimild til að eyða safninu %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Stofnuninni hefur verið eytt" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Safninu hefur verið eytt." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s hefur verið eytt" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, 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:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, 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:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Meðlimi safns hefur verið eytt." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Veljið tvær útgáfur til að hefja samanburð." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Útgáfusaga CKAN safnsins" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nýlegar breytingar á CKAN safninu:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Skilaboð úr kerfisskrá:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Þú fylgist nú með {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Þú ert ekki lengur að fylgjast með {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ekki heimild til að að skoða fylgjendur %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Breytan „{parameter_name}“ er ekki heiltala" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Gagnapakki fannst ekki" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ógilt snið á útgáfu: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Ekki heimild til að lesa pakkann %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Útgáfusaga CKAN gagnapakka" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nýlegar breytingar á CKAN gagnapakka:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Þú hefur ekki heimild til að búa til pakka" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Þú hefur ekki heimild til að uppfæra gagnapakka" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Gagnapakkinn {id} fannst ekki." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +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:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Þú hefur ekki heimild til að búa til tilfang" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Þú hefur ekki heimild til að búa til tilfang fyrir þennan pakka" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +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:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Ekki tókst að uppfæra uppflettitöflu leitarvélar." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Gagnapakka hefur verið eytt." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Óheimilt að eyða pakka %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Tilfangi hefur verið eytt." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Þú hefur ekki heimild til að eyða tilfanginu %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Tilfangssýn fannst ekki" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Tilfangsgögn fundust ekki" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Engar skrár til niðurhals" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Óheimilt að lesa gagnapakka %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Þú hefur ekki lesaðgang að tilfanginu %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Þú hefur ekki heimild til að breyta þessu tilfangi" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Sýn fannst ekki" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Sýnartegund fannst ekki" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Villa í tilfangssýnargögnum" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Tilfangssýn ekki uppgefin" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Forskoðun hefur ekki verið skilgreind." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Notandi fannst ekki" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Þú hefur ekki heimild til að skrá þig sem notandi." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Þú hefur ekki heimild til að stofna notanda" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Þú hefur ekki heimild til að eyða notanda með auðkenninu „{user_id}“." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Enginn notandi var tilgreindur" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Þú hefur ekki heimild til að breyta notandanum %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Prófíllinn var uppfærður" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Þú hefur ekki heimild til að stofna notanda %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Villa í stafarugli. Reyndu aftur." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "Notandinn „%s“ hefur verið stofnaður en þú ert ennþá inni sem „%s“" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Þú hefur ekki heimild til að breyta notanda." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Innslegið lykilorð er rangt" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Gamalt lykilorð" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "rangt lykilorð" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Innskráning mistókst. Rangt notandanafn eða aðgangsorð." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Þú hefur ekki heimild til að biðja um endurstillingu aðgangsorðs." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Þú hefur ekki heimild til að endurstilla aðgangsorð." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Ógildur endurstillingarkóði. Reyndu aftur." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Aðgangsorðinu þínu hefur verið breytt." + +#: ckan/controllers/user.py:565 +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:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Aðgangsorðin sem þú slóst inn stemma ekki." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Þú verður að slá inn aðgangsorð" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Eftirfarandi atriði fannst ekki" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} fannst ekki" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Allt" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Skoða" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Rétt í þessu" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bæti" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Óþekkt" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Nafnlaus skrá" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Stofnaði nýjan gagnapakka." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Breytti tilföngum." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Breytti stillingum." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} fletting" +msgstr[1] "{number} flettingar" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nýleg fletting" +msgstr[1] "{number} nýlegar flettingar" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Netfang viðtakanda vantar!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "stofnun" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "safn" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Gildi vantar" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Ekki gert ráð fyrir innsláttarsvæðinu %(name)s hér." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Vinsamlegast sláðu inn heiltölu" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Tilföng pakkans eru ógild" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Viðbætur" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Efnisorðið „%s“ er ekki til" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Gagnapakki" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Tókst ekki að greina sem gilt JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Stofnun er ekki til" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Þú getur ekki bætt gagnapakka við þessa stofnun" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Ógild heiltala" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Þarf að vera náttúruleg tala" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Þarf að vera jákvæð heiltala" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Snið dagsetningar er ekki rétt" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Engir tenglar eru leyfðir í log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Auðkenni gagnapakka er nú þegar til" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Skrá" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Ekkert safn með þetta heiti eða auðkenni." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tegund virkni" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Nöfn þurfa að vera strengir" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Það er ekki hægt að nota þetta heiti" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Þarf að vera að minnsta kosti %s stafir" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Verður að vera skrifuð með enskum lágstöfum, tölustöfum eða þessum táknum: " +"-_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Þessi slóð er nú þegar skráð." + +#: ckan/logic/validators.py:390 +#, 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:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Lykillinn „%s“ er nú þegar til" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Safn með þessu heiti er þegar til staðar í gagnapakkanum" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Efnisorðið „%s\" má ekki vera í hástöfum" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Notendanöfn þurfa að vera strengir" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Þetta notandanafn er ekki laust." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Vinsamlegast sláðu inn bæði aðgangsorðin" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Aðgangsorð þurfa að vera strengir" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Aðgangsorðin sem þú slóst inn stemma ekki" + +#: ckan/logic/validators.py:639 +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:648 +#, 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:656 +msgid "That vocabulary name is already in use." +msgstr "Þetta heiti er þegar í notkun." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Efnisorðið fannst ekki." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Efnisorðið %s tilheyrir ekki orðasafninu %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Ekkert efnisorð" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Efnisorðið %s tilheyrir nú þegar orðasafninu %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Vinsamlegast gefðu upp gilda vefslóð" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "hlutverkið er ekki til." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Gagnapakkar með engar stofnanir geta ekki verið lokaðir." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Ekki listi" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Ekki strengur" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Þetta foreldri myndi skapa lykkju í stigveldinu" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" og \"filter_values\" ættu að vera af sömu lengd" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" er nauðsynlegt þegar \"filter_values\" er útfyllt" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" er nauðsynlegt þegar \"filter_fields\" er útfyllt" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Það er til skemareitur með sama nafni" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Gildi vantar" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Reyni að stofna stofnun sem safn" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Þú verður að tilgreina einkunn (breytan „rating“)." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Einkunn verður að vera heiltala." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +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:1369 +msgid "You cannot follow yourself" +msgstr "Þú getur ekki fylgst með sjálfum þér" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Þú fylgist nú þegar með {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +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:1474 +msgid "User {username} does not exist." +msgstr "Notandinn {username} er ekki til." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +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:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "auðkenni ekki í gögnum" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Fann ekki orðasafnið „%s“" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Fann ekki efnisorðið „%s“" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +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:697 +msgid "You are not following {0}." +msgstr "Þú ert ekki að fylgjast með {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Skrá fannst ekki." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ekki tilgreina ef þú notar breytuna „query“" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Verður að vera : par" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Svæðið „{field}“ virkar ekki í resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pakkinn fannst ekki." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus fannst ekki." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Stofnun fannst ekki." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Notandinn %s hefur ekki heimild til þess að stofna pakka" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Notandinn %s hefur ekki heimild til að breyta þessum söfnum" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Notandinn %s hefur ekki leyfi til að bæta gagnapakka við þessa stofnun" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Auðkenni gagnapakka ekki gefið upp, get ekki athugað heimildir" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Enginn pakki fannst fyrir þessa skrá. Ekki hægt að virkja auðkenningu." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Notandinn %s hefur ekki heimild til að búa til tilfang fyrir gagnapakkann %s" + +#: ckan/logic/auth/create.py:108 +#, 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:119 +#, 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:129 +#, 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:145 +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:148 +msgid "Not authorized to create users" +msgstr "Þú hefur ekki heimild til að búa til notendur" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Safnið fannst ekki." + +#: ckan/logic/auth/create.py:225 +#, 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:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Tilfangssýn fannst ekki, get ekki athugað heimildir" + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, 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:107 +#, 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:120 +#, 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/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Óheimilt" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Notandinn %s hefur ekki heimild til að lesa þessa pakka" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Notandinn %s hefur ekki aðgang til að lesa pakkann %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Notandinn %s hefur ekki heimild til að lesa tilfangið %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Notandinn %s hefur ekki lesaðgang að safninu %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Skráðu þig inn ef þú vilt skoða stjórnborðið." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Notandinn %s hefur ekki heimild til þess að breyta pakkanum %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta skránni %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta stöðu á pakkanum %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Notandinn %s hefur ekki heimild til að eyða stofnuninni %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta stöðu á safninu %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta heimildum í safninu %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Þú þarf að skrá þig inn til að breyta notanda" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Notandinn %s hefur ekki heimild til að breyta notandanum %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Notandinn {0} hefur ekki hemild til að uppfæra notandann {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Notandinn %s hefur ekki heimild til að breyta stöðu útgáfu" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Notandinn %s hefur ekki heimild til að uppfæra töfluna task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Notandinn %s hefur ekki réttindi til að uppfæra töfluna term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Skilmálar ekki tilgreindir" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Annað (opið)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Annað (í almannaeigu)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Annað (tilvísun)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Annað (ekki til endursölu)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Annað (ekki opið)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "er háð %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "er háð %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "dregið af %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "hefur tengingu %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "tengir á %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "tengt frá %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "er barn %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "er foreldri %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "hefur systkini %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Það eru engin API gögn sem er hægt að hlaða inn fyrir þessa skrá" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Villa kom upp við að sækja upplýsingar um API gögn" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Sláðu inn fyrstu stafina..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Ekkert fannst" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Það eru óvistaðar breytingar í þessu formi" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Vinsamlegast staðfestu aðgerðina" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Ertu viss um að þú viljir framkvæma þessa aðgerð?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Staðfesta" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Hætta við" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Hætta að fylgjast með" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Fylgjast með" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Tengill" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Farðu inn á vefslóð á netinu (þú getur líka tengst API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Hlaða inn" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Fjarlægja" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Sæktu skrá á tölvuna þína" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "Vefslóð" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Skrá" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Vistaðu pöntun" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Vistun í gangi..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Hlaða inn skrá" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Villa kom upp" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Ekki tókst að hlaða inn skrá" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Ekki fékkst heimild til að hlaða inn skrá" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Skránni hefur verið hlaðið inn" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Ekki tókst að sækja gögn úr skránni sem þú hlóðst inn" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Þú ert að sækja skrá. Ertu viss um að viljir fara af síðunni og stöðva " +"niðurhalið? " + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Bæta við síu" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Breyta" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Sýna fleiri" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Fela" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Villa %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Um {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Keyrir á CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Stillingar kerfisstjóra" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Skoða prófíl" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Stjórnborð (%(num)d uppfærsla)" +msgstr[1] "Stjórnborð (%(num)d uppfærslur)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Stjórnborð" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Skrá út" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Innskráning" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Skráning" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Gagnapakkar" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Leita að gagnapökkum" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Leit" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Hoppa fram að innihaldi" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Hlaða inn færri" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Hlaða inn fleiri" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Engar uppfærslur skráðar" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Kerfisstjórn" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Kerfisstjórar" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Stillingar" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Rusl" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Ertu viss um að þú viljir færa stillingar í upprunalegt horf?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Núllstilla" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Uppfæra stillingar" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN stillingar" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Titill svæðis: Þetta er heiti vefsvæðisins og er notað " +"víða innan CKAN uppsetningarinnar.

Útlit: Veldu úr " +"lista yfir fölbreytt litaþemu til að breyta útliti svæðisins með fljótlegum " +"hætti.

Merki svæðisins: Þetta er myndin sem birtist" +" í haus vefsvæðisins á öllum síðum.

Um: Þessi texti " +"er notaður á síðunni um vefinn.

" +"

Kynningartexti: Þessi texti birtist á forsíðunni til að bjóða gesti velkomna.

" +"

Sérsniðið CSS: Þessi kóði birtist í " +"<head> taginu á öllum síðum. Ef þú hefur áhuga á að " +"krukka meira í sniðmátinu mælum við með að þú lesir leiðbeiningarnar.

" +"

Forsíða: Þetta er notað til að velja tilbúið sniðmát " +"fyrir mismunandi þætti á forsíðunni þinni.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Staðfesta núllstillingu" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Stjórna CKAN" + +#: 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 "" +"

Sem kerfisstjóri hefur þú fulla stjórn á þessari CKAN-uppsetningu. Farðu " +"mjög varlega!

Fyrir aðstoð við að nota kerfisstjórnarmöguleika, " +"skoðaðu CKAN kerfisstjóraleiðbeiningarnar

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Staðfesta eyðingu" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Eyða varanlega" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Það er ekki hægt að forskoða þessa skrá í augnablikinu." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Smelltu hér til að fá meiri upplýsingar." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Hlaða niður skrá" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Forskoðun ekki í boði." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Nánari upplýsingar..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Engin meðhöndlun skilgreind fyrir gagnategundina: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Hefðbundið" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Hefðbundin stærð innsláttarsvæðis" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Meðalstórt" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Meðalstórt innsláttarsvæði" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full stærð" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full stærð Innsláttarsvæðis" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stórt" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Stórt innsláttarsvæði" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Forskeyti" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Forskeyti innsláttarsvæðis" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Viðbótarupplýsingar (tómt)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Viðbótarupplýsingar" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textasvæði" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Velja" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Uppfærslustraumur" + +#: 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 "Stjórnendur" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Bæta við safni" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Form fyrir söfn" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Ertu viss um að þú viljir eyða safninu - {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 "Ertu viss um að þú viljir eyða meðlimi - {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:15 +#: 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 "Stjórna" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Breyta safni" + +#: 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 "Meðlimir" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Bæta við safni" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Leita í söfnum..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Það eru engin söfn skráð" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Væri ekki ráð að gera eitthvað í því?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Til baka í alla meðlimi" + +#: 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 "Breyta meðlim" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Bæta við meðlim" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Núverandi notandi" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Ef þú vilt bæta við nýjum núverandi notanda skaltu leita að notandanafni " +"þeirra hér að neðan." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "eða" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Nýr notandi" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ef þú vilt bjóða nýjum notanda skaltu slá inn netfang hans." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Hlutverk" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Ertu viss um að þú viljir eyða þessum meðlim?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Eyða" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Hvað eru hlutverk?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Sjórnandi: Getur breytt upplýsingum safns og stýrt " +"aðgangi meðlima í stofnun.

Member: Getur bætt " +"við/fjarlægt gagnapakka úr söfnum

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Stofna safn" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Uppfæra safn" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Stofna safn" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Leita að gagnapökkum..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Gagnapakkar í safninu: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Heiti" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Safnið mitt" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Smá upplýsingar um safnið mitt..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Ertu viss um að þú viljir eyða þessu safni?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Vista safn" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Skoða {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Fjarlægja gagnapakka úr þessu safni" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Hvað eru söfn?" + +#: 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 "" +"Þú getur notað CKAN söfn til að búa til og stjórna gagnapakkasöfnum. Þannig " +"er hægt að skrá gagnapakka fyrir tiltekið verkefni eða lið, eða í tilteknu " +"þema, og þannig geturðu einnig hjálpað fólki við að finna og leita að þínum " +"útgefnu gagnapökkum." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eytt" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "lesa meira" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Velkomin(n)" + +#: 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 er leiðandi opinn hugbúnaður fyrir hýsingu á gögnum.

CKAN er" +" heildarlausn tilbúin til uppsetningar og gerir gögn bæði aðgengileg og " +"gagnleg - með því að bjóða upp á lausn sem einfaldar útgáfu, deilingu, leit " +"og notkun á gögnum (þ.m.t. geymslu gagna). CKAN er hannað fyrir útgefendur " +"gagna (ríki og sveitarfélög, fyrirtæki og stofnanir) sem vilja gera eigin " +"gögn opinber og aðgengileg.

CKAN er notað af ríkisstjórnum og öðrum " +"aðilum víðs vegar um heiminn og keyrir alls konar opinberar og " +"samfélagslegar gagnaveitur, þ.m.t. gagnagáttir fyrir staðbundna og " +"alþjóðlega stjórnsýslu, t.d. data.gov.uk " +"í Bretlandi og publicdata.eu fyrir " +"ESB, dados.gov.br í Brasilíu og " +"hollenskar stjórnsýslugáttir, og auk þess vefsíður fyrir borgir og " +"sveitarfélög í BNA, Bretlandi, Argentínu, Finnlandi og annars staðar.

" +"

CKAN: http://ckan.org/
CKAN Tour: " +"http://ckan.org/tour/
Yfirlit " +"yfir það helsta: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Velkomin(n) í CKAN" + +#: ckan/templates/home/snippets/promoted.html:10 +msgid "" +"This is a nice introductory paragraph about CKAN or the site in general. We " +"don't have any copy to go here yet but soon we will" +msgstr "" +"Þetta er fínn inngangstexti um CKAN. Við höfum ekkert til að setja hér ennþá" +" en það kemur" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Þetta er í kastljósinu" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "T.d. umhverfi" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Leita að gögnum" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Vinsæl efnisorð" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} tölfræði" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "gagnapakki" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "gagnapakkar" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "stofnanir" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "söfn" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Þessi reitur þarf að vera útfylltur" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Þú getur notað Markdown sniðmát hér" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Gildi" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Sérsniðið" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formið inniheldur ógildar færslur:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Reitur sem þarf að fylla út" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/myndin-min.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Slóð á mynd" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Hreinsa niðurhal" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Form fyrir stofnun" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Breyta gagnapökkum" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "niðurstöður fyrir „{query}“" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "„{query}“ skilaði því miður engum niðurstöðum" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Gera opinbert" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr " Loka fyrir aðgang" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Drög" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Einkamál" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Þessi stofnun er ekki með neina tengda gagnapakka" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Ertu viss um að þú viljir eyða stofnuninni - {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 "Breyta stofnun" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Bæta við stofnun" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Leita í stofnunum..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Það eru engar stofnanir skilgreindar fyrir þennan vef" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Notandanafn" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Tölvupóstfang" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Uppfæra meðlim" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Stjórnandi: Getur bætt við, breytt og eytt gagnapökkum," +" auk þess að stýra aðgangi meðlima í stofnun.

" +"

Útgefandi: Getur bætt við og breytt gagnapökkum en ekki " +"stýrt aðgangi notenda.

Meðlimur: Getur skoðað " +"óútgefna gagnapakka stofnunar en ekki bætt við nýjum gagnapökkum.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Stofna stofnun" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Uppfæra stofnun" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Stofna stofnun" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Gagnapakkar hjá stofnun: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Hvað eru stofnanir?" + +#: 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 "" +"

Stofnanir eru útgefendur gagnapakka (til dæmis Fjármálaráðuneytið). " +"Gagnapakkar eru gefnir út undir stofnun frekar en í nafni einstaklinga.

" +"

Stjórnendur geta úthlutað hlutverkum og aðgangsheimildum innan stofnana " +"og þannig gefið notendum réttindi til að gefa út gagnapakka fyrir viðkomandi" +" stofnun.

" + +#: 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 stofnanir eru notaðar til að búa til, stýra og gefa út gagnapakkasöfn. " +"Notendur geta gegnt mismunandi hlutverkum innan stofnanna, í samræmi við " +"heimildir sem þeir hafa til að búa til, breyta og gefa út." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Stofnunin mín" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Stutt lýsing á stofnuninni..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Vista stofnun" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Skoða {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Stofna gagnapakka" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Hvað eru gagnapakkar?" + +#: 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 gagnapakki er safn tilfanga gagna (t.d. skrár), ásamt lýsingu og öðrum " +"upplýsingum, á ákveðinni vefslóð. Gagnapakkar eru það sem notendur sjá þegar" +" þeir leita að gögnum." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Breytingar" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ertu viss um að þú viljir eyða gagnapakkanum - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ertu viss um að þú viljir eyða skránni - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Skoða gagnapakka" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Breyta lýsigögnum" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Breyta sýn" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Forskoða" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Uppfæra" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Tengja þetta safn við þennan gagnapakka" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Bæta við safn" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Engin söfn eru tengd þessum gagnapakka" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Uppfæra gagnapakka" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Bæta gögnum við gagnapakka" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Bæta við skrá" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Bæta við tilfangi" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nýtt tilfang" + +#: 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 "Bæta við sýn" + +#: 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 "" +"Gagnaskoðandasýnir getur verið hægar og óáreiðanlegar nema DataStore " +"viðbótin sé virk. Fyrir frekari upplýsingar skoðaðu leiðbeiningar fyrir " +"gagnaskoðandann (Data Explorer). " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Bæta við" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Öll tilföng" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Skoða skrá" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Breyta tilfangi" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Sýnir" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Fara í tilfang" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Sækja" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "Vefslóð:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Heimild: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Það hafa engar sýnir verið búnar til fyrir þetta tilfang." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Sérðu ekki sýnirnar sem þú bjóst við?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Hér eru nokkrar ástæður fyrir því að þú sjáir ekki sýnirnar:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Engin sýn hefur verið búin til sem virkar fyrir þetta tilfang" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Kerfisstjórar hafa mögulega ekki bætt við viðeigandi sýnisviðbótum" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Ef sýn býst við DataStore viðbótinni, gæti DataStore viðbótin verið óvirk, " +"gögnin ekki sett inn í gagnabankann eða gagnabankinn hefur ekki enn klárað " +"að vinna gögnin" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Viðbótarupplýsingar" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Svæði" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "óþekkt" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Stofnað" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Skráasnið" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Leyfisskilmálar" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ný sýn" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Þetta tilfang hefur enga sýn" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Bæta við nýju tilfangi" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "fullt {format} úrtak" + +#: 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 "" +"Þú getur líka fengið aðgang að skránni með %(api_link)s (sjá " +"%(api_doc_link)s) eða hlaðið niður %(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 "" +"Þú getur líka fengið aðgang að skránni með %(api_link)s (sjá " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Allar sýnir" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Skoða sýn" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Forskoða sýn" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Viðbótarupplýsingar" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Heimild" + +#: 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 +msgid "Author" +msgstr "Höfundur" + +#: 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 "Umsjónarmaður" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Útgáfa" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Ríki" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Síðast uppfært" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titill" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "t.d. Lýsandi titill" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "t.d. mitt-gagnasafn" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "t.d. Ýmsar gagnlegar upplýsingar um gögnin" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "t.d. efnahagur, geðheilsa, stjórnvöld" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Stofnun" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Engin stofnun" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Sýnileiki" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Opinbert" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Virkt" + +#: 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 "" +"Notkunarskilmálarnir sem þú valdir hér fyrir ofan eiga aðeins við um " +"innihald tilfangaskráa sem þú bætir við í gagnapakkann. Með því að senda inn" +" þessar upplýsingar samþykkir þú að birta lýsigögnin sem þú hefur " +"fyllt inn undir notkunarskilmálum Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Ertu viss um að þú viljir eyða þessum gagnapakka?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Næst: Bæta við gögnum" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Anna Jónsdóttir" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Netfang höfundar" + +#: 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 "anna@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Netfang umsjónarmanns" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Uppfæra skrá" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "t.d. Verð á þorski í janúar 2013" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Ýmsar nytsamlegar upplýsingar um gögnin" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "t.d. CSV, XML eða JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Kerfið giskar á þetta sjálfkrafa. Reiturinn má vera auður ef þú vilt" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "t.d. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Skráarstærð" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "t.d. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME gerð" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "t.d. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Ertu viss um að þú viljir eyða þessu tilfangi?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Fyrra" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Vista og bæta meiru við" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Ljúka" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Hvað er tilfang?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Tilfang getur verið skjal, hlekkur á skjal eða tilvísun í gagnaveitu með " +"nýtanlegum gögnum." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Skoða" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Frekari upplýsingar" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Fella inn í síðu" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Þessi tilfangssýn er ekki aðgengileg á þessum tímapunkti." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Fella þess tilfangssýn inn í vefsíðu" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Þú getur afritað og límt inn ívafskóðann í vefumsjónarkerfi eða " +"blogghugbúnað sem styður hreint HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Breidd" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Hæð" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kóði" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Forskoðun tilfangs" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Gögn og tilföng" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Þessi gagnapakki hefur engin gögn" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Stofna gagnapakka" + +#: 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 "Bæta við gögnum" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "t.d. Mín sýn" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "t.d. Upplýsingar um mína sýn" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Fjarlægja síu" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Hvað er sýn?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Sýn er framsetning á gögnum út frá einu tilfangi" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Bæta við gagnapakka" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Staða gagnamiðlara: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Sýna meira {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Sýna aðeins vinsælt {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Heim" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Tungumál" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Áfram" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Leyfi ekki tilgreint" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Þessi gagnapakki uppfyllir skilgreiningu Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Það er engin lýsing á þessari stofnun" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Engin lýsing er til á þessum gagnapakka" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Takmarka leitarniðurstöður" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Reyndu aðra leit.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "\"{query}\" skilaði {number} gagnapakka" +msgstr[1] "„{query}“ skilaði {number} gagnapökkum" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Engir gagnapakkar samræmast leitarorðinu „{query}“" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} gagnapakki fannst" +msgstr[1] "{number} gagnapakkar fundust" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Engir gagnapakkar fundust" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "\"{query}\" skilaði {number} safni" +msgstr[1] "„{query}“ skilaði {number} söfnum" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Engin söfn samræmast leitarorðinu „{query}“" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} safn fannst" +msgstr[1] "{number} söfn fundust" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Engin söfn fundust" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "\"{query}\" skilaði {number} stofnun" +msgstr[1] "„{query}“ skilaði {number} stofnunum" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Engar stofnanir fundust fyrir „{query}“" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} stofnun fannst" +msgstr[1] "{number} stofnanir fundust" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Engar stofnanir fundust" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Samfélagsmiðlar" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Gerast áskrifandi" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Netfang" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} bætti efnisorðinu {tag} við gagnapakkann {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} uppfærði safnið {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} uppfærði stofnunina {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} uppfærði gagnapakkann {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} uppfærði tilfangið {resource} í gagnapakkanum {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} uppfærði prófílinn sinn" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} eyddi safninu {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} eyddi stofnuninni {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} eyddi gagnapakkanum {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} eyddi skránni {resource} úr gagnapakkanum {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} fylgist nú með gagnapakkanum {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} fylgist nú með safninu {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} fylgist nú með notandanum {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} stofnaði safnið {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} stofnaði stofnunina {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} stofnaði gagnapakkann {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} bætti skránni {resource} við gagnapakkann {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} skráði sig" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fjarlægði efnisorðið {tag} af gagnapakkanum {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Leita eftir efnisorðum" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Fréttaveita" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Gagnapakkarnir mínir" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mínar stofnanir" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mín söfn" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Virkni atriða sem ég fylgist með" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Þú hefur ekki búið til neina gagnapakka." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Viltu búa til gagnapakka?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Þú ert ekki meðlimur í neinu safni." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Þú ert ekki meðlimur í neinni stofnun." + +#: 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 "Notendur" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Notandaupplýsingar" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "Prófíllinn þinn gefur öðrum notendum kost á að kynnast þér betur." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Breyta upplýsingum" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Fullt nafn" + +#: 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:12 +msgid "eg. joe@example.com" +msgstr "t.d. anna@opingogn.is" + +#: 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:17 +msgid "Subscribe to notification emails" +msgstr "Gerast áskrifandi að tilkynningum í tölvupósti" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Breyta aðgangsorði" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Aðgangsorð" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Staðfesta aðgangsorð" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Ertu viss um að þú viljir eyða þessum notanda?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ertu viss um að þú viljir endurstilla API lykilinn þinn?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Endurstilla API-lykil" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Uppfæra prófíl" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Allir notendur" + +#: 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 "Innskráning" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Stofna aðgang?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Skráðu þig núna, það tekur enga stund." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Stofna aðgang" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Gleymdirðu aðgangsorðinu?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Ekkert mál, þú getur beðið um nýtt aðgangsorð á þessari síðu." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Gleymdirðu aðgangsorðinu þínu?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Skráð(ur) út" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Þú hefur skráð þig út." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Þú ert þegar innskráð(ur) sem {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Skrá út" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Mundu mig" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Þú ert þegar innskráð(ur)" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Þú verður að skrá þig út áður en þú getur skráð þig aftur inn sem annar " +"notandi." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Útskrá núna" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Skráning" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Nýskráning" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Hvers vegna ætti ég að skrá mig?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Þú getur búið til gagnapakka, söfn og fleiri skemmtilega hluti" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "notandanafn" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fullt nafn" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Stofna aðgang" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Gleymt aðgangsorð" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Breyta aðgangsorði" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Uppfæra aðgangsorð" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Hvernig virkar þetta?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Þú slærð bara inn nýtt aðgangsorð og við uppfærum aðganginn hjá þér" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Notandinn hefur ekki stofnað neina gagnapakka." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Þú hefur ekki skrifað neitt um þig." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Þessi notandi hefur ekki skráð neinar upplýsingar um sig." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Aðeins þú getur séð þetta" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Notandi síðan" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API lykill" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Endurstilltu aðgangsorðið þitt" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Uppfærslur frá:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Leita í lista..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Þú ert ekki að fylgjast með neinu" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Engir fylgjendur" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Leita að notanda" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Áframsending á ytri síðu er ekki heimil" diff --git a/ckan/i18n/it/LC_MESSAGES/ckan.po b/ckan/i18n/it/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..d42ab4f33cc --- /dev/null +++ b/ckan/i18n/it/LC_MESSAGES/ckan.po @@ -0,0 +1,5156 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Italian (https://www.transifex.com/okfn/teams/11162/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Risorsa non trovata" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Non sei autorizzato a vedere questa pagina" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completato" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Sospeso" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Invio in corso" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Errore" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Non ancora caricato" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Carica nel DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Errore nel caricamento:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Errore:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Stato" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ultimo aggiornamento" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Mai" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Registro dei caricamenti" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Dettagli" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fine del log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Risorsa DataStore non trovata" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "La risorsa \"{0}\" non è stata trovata." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "L'utente {0} non è autorizzato ad aggiornare la risorsa {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Endpoints" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Crea" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Aggiorna / Inserisci" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Query" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Querying" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Esempio di query (primi 5 risultati)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Esempio di query (risultati che includono 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Esempio di query (via SQL statement)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Esempio: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Una richiesta ajax semplice (JSONP) verso l'API dati utilizzando jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Esempio: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Salva" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descrizione" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Caricando..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabella" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: 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" + +#: ckan/templates/group/read.html:13 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 "Rilevanza" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome Crescente" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome Decrescente" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Ultima modifica" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Libero in Crescente" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Libero in Decrescente" + +#: ckan/templates/group/read.html:17 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 "Popolare" + +#: 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 "Testo personalizzato" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "testo personalizzato" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Codice nazione" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "testo di risorsa personalizzata" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "This is an untranslated string" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Questo gruppo non ha descrizioni" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Dataset" +msgstr[1] "{num} Dataset" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Dataset" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Lo strumento di anteprima dati CKAN ha numerose funzioni avanzate" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sostenitori" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Risorse" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Immagine" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +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 "per es. http://example.com/image.jpg (se vuoto usa url di risorsa)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Esploratore Dati" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafo" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mappa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Errore nel caricamento della vista" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtri" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Scostamento della riga" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +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 "Numero di righe" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "es: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo di Grafo" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Gruppo (Asse 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serie (Asse 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo del campo" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo latitudine" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo longitudine" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Ingrandimento automatico alle funzioni" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Raggruppamento di marcatori" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Dataset più votati" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Voto medio" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Numero di voti" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Nessun voto" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Gruppi più numerosi" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Gruppo" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Numero di dataset" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Nessun gruppo" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Migliori tag" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nome del Tag" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Numero di dataset" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "L'utente con più dataset" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Utenten" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menu statistiche" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Dataset più modificati" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Testo" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Sito web" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL della pagina" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "per es. http://example.com (se vuoto usa url di risorsa)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Il tuo browser non supporta gli iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funzione di autorizzazione non trovata: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Amministratore" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Curatore" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Membro" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "E' necessario essere amministratori del sistema per amministrarlo" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Titolo sito" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stile" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Sottotitolo del sito" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logo del sito" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Informazioni" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Informazioni sulla pagina" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Testo Introduzione" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "testo nella pagina principale" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS personalizzato" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS personalizzato inserito nella testata della pagina" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Homepage" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Impossibile effettuare la purifica del pacchetto %s perché la revisione " +"associata %s contiene i pacchetti non ancora cancellati %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema con il purge della revisione %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Operazione di purifica completata" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Azione non implementata." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Accesso negato" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Non trovato" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Richiesta non valida" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nome di azione non nota: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Errore JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Richiesta dati errata: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Gruppo non trovato" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizzazione non trovata." + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipo del gruppo errato" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizzazioni" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Gruppi" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tag" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formati" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenze" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "L'utente %r non è autorizzato a modificare %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Non autorizzato ad eseguire gli aggiornamenti" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Non sei autorizzato a creare un gruppo" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Errore di integrità" + +#: ckan/controllers/group.py:607 +#, 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:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Non autorizzato a eliminare il gruppo %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "L'organizzazione è stata eliminata." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Il gruppo è stato eliminato." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s è stato eliminato." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Non sei autorizzato ad aggiungere membri al gruppo %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Non sei autorizzato a eliminare membri dal gruppo %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Il membero del gruppo e' stato eliminato." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selezionare due revisioni prima di effettuare il confronto" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Cronologia delle modifiche nel gruppo" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Modifiche recenti al gruppo CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Messaggio di log:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Adesso stai seguendo {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Non stai più seguendo {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Non sei autorizzato a leggere chi segue %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Questo sito al momento è offline. Il database non è inizializzato." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Il parametro \"{parameter_name}\" non è un intero" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset non trovato" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato di revisione non valido: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Non autorizzato a leggere il pacchetto %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Cronologia delle Revisioni del Dataset CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Modifiche recenti al Dataset CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Non sei autorizzato a creare un pacchetto" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Non sei autorizzato a modificare questa risorsa" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Non sei autorizzato a modificare il dataset" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Il dataset {id} non é stato trovato." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Devi aggiungere almeno una risorsa" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Non sei autorizzato a creare una risorsa" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Non sei autorizzato a creare una risorsa per questo pacchetto" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Impossibile aggiungere il pacchetto all'indice di ricerca" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Impossibile aggiornare l'indice di ricerca" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Il dataset è stato eliminato." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Non sei autorizzato a rimuovere il pacchetto %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "La risorsa è stata eliminata." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Non sei autorizzato a rimuovere la risorsa %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Visualizzazione risorsa non trovata" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Risorsa non trovata" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Nessun download è disponibile" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Non autorizzato a leggere il dataset %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Non sei autorizzato a leggere la risorsa %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Non sei autorizzato a modificare questa risorsa" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Vista non trovata" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tipo di Vista Non trovata" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Informazioni per vista di risorsa difettose" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Vista di risorsa mancante" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "L'anteprima non è stata definita." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Utente non trovato" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Non autorizzato a registrarsi come utente" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Non sei autorizzato a creare un utente" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Non autorizzato a rimuove l'utente con id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nessun utente specificato" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Non sei autorizzato a modificare l'utente %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profilo aggiornato" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Non sei autorizzato a creare l'utente %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha errato. Prova di nuovo per favore." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"L'utente \"%s\" è ora registrato ma sei ancora autenticato come \"%s\" dalla" +" sessione precedente" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Non autorizzato a modificare l'utente." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "La password inserita è incorretta" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Vecchia password" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "password incorretta" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Autenticazione fallita. Nome utente o password non corrette." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Non autorizzato al reset della password." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Non autorizzato al reset della password." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Chiave di reset non valida. Prova di nuovo per favore." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "La tua password è stata azzerata." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "La tua password deve essere lunga almeno 4 caratteri." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Le due password che hai inserito non corrispondono." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Devi fornire una password" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Elemento seguente non trovato" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} non trovato" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Tutto" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Visualizza" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Proprio ora" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB " + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Risorsa senza nome" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nuovo dataset creato." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Risorse modificate." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Impostazioni modificate." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visualizzazione" +msgstr[1] "{number} visualizzazioni" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} visualizzazione recente" +msgstr[1] "{number} visualizzazioni recenti" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "L'indirizzo e-mail del destinatario non è disponibile!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizzazione" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "gruppo" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Valore mancante" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Il campo di input %(name)s non era previsto." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Si prega di inserire un valore intero" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Risorsa/e del pacchetto non valide" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extra" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Il vocabolario di tag \"%s\" non esiste" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Non è stato possible eseguire il parsing come un JSON valido" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "L'organizzazione non esiste" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Non puoi aggiungere un dataset a questa organizzazione" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Numero intero non valido" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Deve essere un numero naturale" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Deve essere un numero intero positivo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Formato della data non corretto" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "I link non sono permessi nel log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Id del dataset già esistente" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Risorsa" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Il nome del gruppo o l'ID non esistono." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipo di attività" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "I nomi devono essere stringhe" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Questo nome non può essere usato" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "La lunghezza dev'essere di almeno %s caratteri" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Deve consistere solamente di caratteri (base) minuscoli e questi simboli: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Questa URL è già stata usata." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "La lunghezza del nome \"%s\" è inferiore a %s" + +#: ckan/logic/validators.py:394 +#, 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:400 +#, 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:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Chiave duplicata \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Un gruppo con questo nome esiste già nel database" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Il tag \"%s\" non deve contenere caratteri maiuscoli" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "I nomi utente devono essere stringhe" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Questo nome utente non è disponibile." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Per favore inserisci entrambe le password" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Le password devono essere stringhe" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Le due password che hai inserito non corrispondono" + +#: ckan/logic/validators.py:639 +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:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Il nome deve essere lungo almeno %s caratteri" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Questo nome di vocabolario è già in uso." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Il vocabolario del tag non è stato trovato." + +#: ckan/logic/validators.py:684 +#, 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:690 +msgid "No tag name" +msgstr "Nome tag assente" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Il tag %s fa già parte del vocabolario %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Per favore inserisci una URL valida" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "il ruolo non esiste." + +#: ckan/logic/validators.py:768 +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:774 +msgid "Not a list" +msgstr "Non è una lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Non è una stringa" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Questo elemento genitore creerebbe un loop nella gerarchia" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" e \"filter_values\" dovrebbero avere stessa lunghezza" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" è obbligatorio quando \"filter_values\" è riempito" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" è obbligatorio quando \"filter_fields\" è riempito" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Esiste un campo di schema con lo stesso nome" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Valore mancante" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Prova a create una organizzazione come gruppo" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "È necessario indicare un voto (parametro \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Il voto deve essere un numero intero." + +#: ckan/logic/action/create.py:970 +#, 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:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Devi essere autenticato per poter seguire gli utenti" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Non puoi seguire te stesso" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Stai già seguendo {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Devi essere autenticato per seguire un dataset." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "L'utente {username} non esiste." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Devi essere autenticato per seguire un gruppo." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id assente dai dati" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Impossibile trovare il vocabolario \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Impossibile trovare il tag \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Devi essere autenticato per smettere di seguire un oggetto." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Non stai seguendo {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Risorsa non trovata." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Non specificare se si usa il parametro \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Devono essere coppie :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Campo \"{field}\" non riconosciuto in resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pacchetto non trovato." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus non trovato." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizzazione non trovata." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "L'utente %s non è autorizzato a creare pacchetti" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "L'utente %s non è autorizzato a modificare questi gruppi" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"L'utente %s non è autorizzato ad aggiungere dataset a questa organizzazione" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Nessun id di dataset fornito, verifica di autorizzazione impossibile." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nessun pacchetto trovato per questa risorsa, impossibile controllare " +"l'autorizzazione." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "L'utente %s non è autorizzato a creare risorse nel dataset %s" + +#: ckan/logic/auth/create.py:108 +#, 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:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "L'utente %s non è autorizzato a creare gruppi" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "L'utente %s non è autorizzato a creare organizzazioni" + +#: ckan/logic/auth/create.py:145 +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:148 +msgid "Not authorized to create users" +msgstr "Non autorizzato alla creazione di utenti" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Gruppo non trovato." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "L'utente %s non è autorizzato ad aggiungere membri" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, 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/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Vista di risorsa non trovata, impossibile verificare l'autorizzazione." + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, 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:86 +#, 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:103 +#, 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:107 +#, 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:120 +#, 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/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Non autorizzato" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "L'utente %s non è autorizzato a leggere questi pacchetti" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "L'utente %s non è autorizzato a leggere il pacchetto %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "L'utente %s non è autorizzato a leggere la risorsa %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "L'utente %s non è autorizzato a leggere il gruppo %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Devi essere autenticato per accedere al tuo cruscotto" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "L'utente %s non è autorizzato a modificare il pacchetto %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "L'utente %s non è autorizzato a modificare la risorsa %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "L'utente %s non è autorizzato a modificare lo stato del pacchetto %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "L'utente %s non è autorizzato a modificare l'organizzazione %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "L'utente %s non è autorizzato a cambiare lo stato del gruppo %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "L'utente %s non è autorizzato a modificare i permessi del gruppo %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "E' necessario loggati per modificare l'utente" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "L'utente %s non è autorizzato a modificare l'utente %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "L'utente {0} non è autorizzato ad aggiornare l'utente {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "L'utente %s non è autorizzato a cambiare lo stato della revisione" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "L'utente %s non è autorizzato ad aggiornare la tabella task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"L'utente %s non è autorizzato ad aggiornare la tabella term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licenza non specificata" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribuzione" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribuzione - Condividi allo stesso modo" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Altro (di tipo Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Altro (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Altro (con Attribuzione)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non Commerciale (Qualsiasi tipo)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Altro (Non Commerciale)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Altro (non Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "dipende da %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "è una dipendenza di %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "deriva da %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "ha una derivazione %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "collegamenti a %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "è linkato da %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "è discendente di %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "è antenato di %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "è parente di %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Non ci sono dati da caricare via API per questa risorsa " + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Lettura dei dati attraverso le API fallita" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Inizia a scrivere..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Elementi non trovati" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Ci sono modifiche non salvate per questa form" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Confermare azione" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Sei certo di voler confermare questa azione?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Conferma" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Annulla" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Non seguire più" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Segui" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Link a un indirizzo internet (puoi anche inserire l'URL di un API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Carica" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Rimuovi" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Carica un file dal computer" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "File" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Salva ordine" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Salvataggio in corso..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Carica un file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Si è verificato un errore" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Impossibile caricare il file" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Impossibile autenticare il caricamento" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Risorsa caricata" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Impossibile accedere ai dati per il file caricato" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Aggiungi Filtro" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Modifica" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mostra più" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Nascondi" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Errore %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Informazioni {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Fatto con CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Impostazioni amministratore" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Vedi profilo" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d nuovo elemento)" +msgstr[1] "Dashboard (%(num)d nuovi elementi)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Pannello" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Esci" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Accedi" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Iscriviti" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Dataset" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Ricerca Datasets" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Cerca" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Salta al contenuto" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Caricane meno" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Caricane di più" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Non ci sono attività in questo flusso di attività" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Amministrazione" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Amministratori di sistema" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configurazione" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Cestino" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Sei sicuro di voler azzerare la configurazione?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Azzera" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Aggiorna configurazione" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opzioni di configurazione CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Titolo sito Questo e' il titolo di questa instanza di " +"CKAN che appare in diversi punti attraverso il CKAN.

" +"

Stile: Scegli dall'elenco una semplice variazioni del " +"colore principali del tema per impostare velocemente un diverso tema.

" +"

Logo: Questo è il logo che appare in alto nella testata " +"di tutti i template di CKAN.

Informazioni: Questo " +"testo comparirà in questa istanza di CKAN pagina " +"informazioni.

Testo presentazione: Questo testo " +"comparirà su questa istanza di CKAN home page " +"per dare il benvenuto ai visitatori.

CSS " +"Personalizzato: Questo e' il blocco di codice di personalizzazione " +"del CSS <head> che compare in ogni pagina. Se vuoi " +"modificare il template più in profondità ti consigliamo di leggere la documentazione.

" +"

Pagina iniziale: Questo è per scegliere il layout " +"predefinito dei moduli che appaiono nella tua pagina iniziale.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Conferma il Reset" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Amministra CKAN" + +#: 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 "" +"

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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Conferma la cancellazione" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purifica" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "" +"Questa risorsa non può essere visualizzata in anteprima in questo momento." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Clicca qui per maggiori informazioni." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Scarica la risorsa" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Nessuna anteprima disponibile" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Maggiori dettagli..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Nessun handler definito per il data type: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medio" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Larghezza media di input" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Pieno" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Larghezza massima di input" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Grande" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Input grande" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Anteposto" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Input anteposto" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo libero (vuoto)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo libero" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Area testo" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Seleziona" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flusso di attività" + +#: 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 "Amministratori" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Aggiungi un gruppo" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Modulo gruppo" + +#: 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}?" + +#: 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}?" + +#: 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:15 +#: 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 "Gestisci" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Modifica gruppo" + +#: 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 "Membri" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Aggiungi un gruppo" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Cerca gruppi..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Al momento non ci sono gruppi per questo sito" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Come crearne uno?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Torna a tutti i membri" + +#: 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 "Modifica Membro:" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Aggiungi Membro" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Utente già esistente" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Se desideri aggiungere un utente esistente, cerca il suo nome utente qui " +"sotto." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "o" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Nuovo utente" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Se desideri invitare un nuovo utente, inserisci il suo indirizzo email." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Ruolo" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Sei sicuro di voler cancellare questo membro?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Elimina" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Cosa sono i ruoli?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Amministratore: Può modificare le informazioni del " +"gruppo e gestire i membri delle organizzazioni.

" +"

Membro: Può aggiungere e modificare i dataset dei " +"gruppi

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Crea un Gruppo" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Aggiorna Gruppo" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crea Gruppo" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Cerca dataset..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Dataset nel gruppo: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nome" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mio Gruppo" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Alcune informazioni sul mio gruppo..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Sei sicuro di voler cancellare questo Gruppo?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Salva Gruppo" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Visualizza {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Elimina il dataset da questo gruppo" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Cosa sono i Gruppi?" + +#: 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 "" +"Puoi usare i gruppi di CKAN per creare e gestire collezioni di dataset, come" +" un catalogo di dataset di un progetto o di un team, su un particolare " +"argomento o semplicemente come un modo semplice per consentire di trovare e " +"cercare i dataset che hai pubblicato." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Eliminato" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "leggi di più" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Benvenuti" + +#: 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 è la piattaforma leader mondiale per i portali di dati open-" +"source.

CKAN è una soluzione software completa e pronta all'uso che " +"rende accessibili e utilizzabili i dati – fornendo strumenti per " +"ottimizzarne la pubblicazione, la ricerca e l'utilizzo (inclusa " +"l'archiviazione dei dati e la disponibilità di solide API). CKAN si rivolge " +"alle organizzazioni che pubblicano dati (governi nazionali e locali, aziende" +" ed istituzioni) e desiderano renderli aperti e accessibili a tutti.

" +"

CKAN è usato da governi e gruppi di utenti in tutto il mondo per gestire " +"una vasta serie di portali di dati di enti ufficiali e di comunità, tra cui " +"portali per governi locali, nazionali e internazionali, come data.gov.uk nel Regno Unito e publicdata.eu dell'Unione Europea, dados.gov.br in Brasile, portali di " +"governo dell'Olanda e dei Paesi Bassi, oltre a siti di amministrazione " +"cittadine e municipali negli USA, nel Regno Unito, Argentina, Finlandia e " +"altri paesi.

CKAN: http://ckan.org/
Tour di CKAN: http://ckan.org/tour/
Panoramica " +"delle funzioni: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Benvenuto su 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 "" +"Questo è un bel paragrafo introduttivo su CKAN o il sito in generale. Noi " +"non abbiamo nessun testo d'aggiungere, ma presto lo faremo" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Questa è una sezione in evidenza" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Per es. ambiente" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Cerca i dati" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Tag popolari" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistiche" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizzazioni" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "gruppi" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Questo è un campo richiesto" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Puoi utilizzare la sintassi Markdown qui" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valore" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Personalizzato" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Il form contiene dati non validi" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Campo richiesto" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL dell'immagine" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Cancella caricamento" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Modulo organizzazione" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Modifica dataset" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "trovati per \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Spiacente, nessun dataset trovato per \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Rendi pubblico" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Rendi privato" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Bozza" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privato" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Questa organizzazione non ha alcun dataset associato" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Sei sicuro di voler eliminare l'organizzazione - {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 "Modifica Organizzazione" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Aggiungi Organizzazione" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Cerca organizzazioni..." + +#: ckan/templates/organization/index.html:29 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome utente" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Indirizzo email" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Aggiorna membro" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Amministratore: può aggiungere/modificare ed eliminare " +"i dataset, oltre a gestire i membri dell'organizzazione.

" +"

Curatore: può aggiungere e modificare i dataset, ma non " +"può gestire i membri dell'organizzazione.

Membro: " +"può visualizzare i dataset privati dell'organizzazione, ma non può " +"aggiungerne di nuovi.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Crea una Organizzazione" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Aggiorna una Organizzazione" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crea una Organizzazione" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Dataset nell'organizzazione: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Cosa sono le organizzazioni?" + +#: 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 "" +"

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 "" +"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 "" +"Le Organizzazioni di CKAN sono usate per creare, gestire e pubblicare " +"raccolte di dataset. Gli utenti possono avere diverse ruoli all'interno di " +"un'Organizzazione, in relazione al loro livello di autorizzazione nel " +"creare, modificare e pubblicare." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "La mia Organizzazione" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Qualche informazioni sulla mia organizzazione..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Salva Organizzazione" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Mostra {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Crea un dataset" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Cosa sono i dataset?" + +#: 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 "" +"Un dataset di CKAN è una raccolta di risorse dati (come un insieme di file)," +" corredato da una descrizione e altre informazioni, a un indirizzo fisso. I " +"dataset sono quello che gli utenti visualizzano quando cercano dei dati." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Modifiche" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Sei sicuro di voler eliminare il dataset - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Sei sicuro di voler eliminare la risorsa - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Visualizza dataset" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Modifica i metadati" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Modifica vista" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Anteprima" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Aggiorna" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associa questo gruppo con questo dataset" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Aggiungi al gruppo" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Non ci sono gruppi associati con questo dataset" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Aggiorna dataset" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Aggiungi dati al dataset" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Aggiungi Nuova Risorsa" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Aggiungi risorsa" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nuova risorsa" + +#: 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 "Aggiungi vista" + +#: 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 "" +"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:85 +msgid "Add" +msgstr "Aggiungi" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Tutte le risorse" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Visualizza risorsa" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Modifica risorsa" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Viste" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Vai alla risorsa" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Sorgente: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Non è stata ancora creata alcuna vista per questa risorsa." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Non vedi le viste che ti aspettavi?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"Possibili motivi per i quali non sono visibili delle viste che ti aspettavi:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Nessuna tra le viste create è adatta per questa risorsa" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Gli amministratori del sito potrebbero non aver abilitato i plugin di vista " +"rilevante" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"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:175 +msgid "Additional Information" +msgstr "Informazioni supplementari" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "sconosciuto" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creato" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formato" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licenza" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nuova vista" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Questa risorsra non ha alcuna vista" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Aggiungi nuova risorsa" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "dump {format} completo" + +#: 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 "" +"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 le %(api_link)s (vedi " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Tutte le viste" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Mostra vista" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Mostra anteprima" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informazioni addizionali" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Origine" + +#: 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 +msgid "Author" +msgstr "Autore" + +#: 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 "Manutentore" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versione" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stato" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Ultimo aggiornamento" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Crea una nuova organizzazione" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titolo" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "per es. Un titolo descrittivo" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "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" +msgstr "eg. Qualche nota utile sui dati" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economia, salute mentale, governo" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizzazione" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Nessuna organizzazione" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibilità" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Pubblico" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Attivo" + +#: 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 "" +"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?" +msgstr "Sei sicuro di voler eliminare questo dataset?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Prossimo: Aggiungi Dati" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Mario Rossi" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Mittente" + +#: 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 "mario@esempio.it" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-mail del manutentore" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Aggiorna Risorsa" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dati" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "per es. Prezzo dell'Oro a Gennaio 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Qualche nota utile sui dati" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML o JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Sarà determinato automaticamente. Lascia vuoto se lo desideri" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "eg. 05-06-2012" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Grandezza del File" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "eg. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "eg. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Sei sicuro di voler eliminare questa risorsa?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Precedente" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Salva & aggiungi altro" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Finito" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Cosa è una risorsa?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Una risorsa può essere qualsiasi file o link a file che contenga dati utili." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Esplora" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Altre informazioni" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Incorpora" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Questa vista di risorsa non è al momento disponibile." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Incorpora vista di risorsa" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +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:78 +msgid "Width" +msgstr "Larghezza:" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Altezza:" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Codice" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Anteprima della risorsa" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data e Risorse" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Questo dataset non ha dati" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crea dataset" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Aggiungi dati" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "per es. Mia Vista" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "per es. Dettagli per la mia vista" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Rimuovi Filtro" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +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 "" +"Una vista è una rappresentazione dei dati attribuita nei confronti di una " +"risorsa" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Aggiungi un dataset" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Stato Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mostra altro {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Mostra solo {facet_type} popolari" + +#: ckan/templates/snippets/facet_list.html:92 +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 +msgid "Home" +msgstr "Home" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Linguaggio" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Vai" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Nessuna licenza indicata" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Questo dataset è conforme alla Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Non c'è una descrizione per questa organizzazione" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Questo dataset non ha una descrizione" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Risultato del Filtro" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Per favore effettua un'altra ricerca.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} dataset trovato per \"{query}\"" +msgstr[1] "{number} dataset trovati per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Nessun dataset trovato per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset trovato" +msgstr[1] "{number} dataset trovati" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +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] "{number} gruppo trovato per \"{query}\"" +msgstr[1] "{number} gruppi trovati per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nessun gruppo trovato per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} gruppo trovato" +msgstr[1] "{number} gruppi trovati" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nessun gruppo trovato" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organizzazione trovata per \"{query}\"" +msgstr[1] "{number} organizzazioni trovate per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Nessuna organizzazione trovata per \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organizzazione trovata" +msgstr[1] "{number} organizzazioni trovate" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nessuna organizzazione trovata" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sociale" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Sottoscrivi" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "E-mail" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} ha aggiunto il tag {tag} al dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ha aggiornato il gruppo {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ha aggiornato l'organizzazione {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ha aggiornato il dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ha aggiornato la risorsa {resource} nel dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} ha aggiornato il suo profilo" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ha eliminato il gruppo {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ha eliminato l'organizzazione {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ha eliminato il dataset {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} ha eliminato la risorsa {resource} dal dataset {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} ha cominciato a seguire {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} ha cominciato a seguire {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} ha cominciato a seguire {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} ha creato il gruppo {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} ha creato l'organizzazione {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} ha creato il dataset {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} ha aggiunto la risorsa {resource} al dataset {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} si è registrato il" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ha rimosso il tag {tag} dal dataset {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Cerca tag" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "I miei dataset" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Le mie organizzazioni" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "I miei gruppi" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Attività da elementi che seguo" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Non hai creato alcun dataset." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Vuoi crearne uno?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Non sei membro di alcun gruppo" + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Non sei membro di alcuna organizzazione" + +#: 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 "Utenti" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informazioni sull'Account" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "Il tuo profilo racconta qualcosa di te agli altri utenti CKAN." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Modifica dettagli" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nome completo" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Mario Rossi" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "eg. mario@esempio.it" + +#: 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:17 +msgid "Subscribe to notification emails" +msgstr "Sottoscrivi alle notificazioni email" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Modifica password" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Password amministratore" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Conferma Password" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Sei sicuro di voler cancellare questo utente?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Sei sicuro di voler generare di nuovo la chiave API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Rigenera Chiave API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Aggiorna Profile" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Tutti gli utenti" + +#: 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 "Accedi" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Necessiti di un Account?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Iscriviti subito, ci vuole solo un minuto." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Crea un Account" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Password dimenticata?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Nessun problema, usa la funzione di recupero password per resettarla." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Scollegato" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Ora ti sei disconnesso." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Hai già eseguito l'accesso come {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Esci" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Ricordami" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Hai già eseguito l'accesso" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Devi scollegarti per poterti collegare con un altro account." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Disconnettiti adesso" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrazione" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registra un Account" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Perché iscriversi?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crea dei dataset, gruppi e altre cose interessanti" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Nome utente" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nome completo" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Crea un Account" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Reimposta la tua password" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Azzera la password" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Cambia la password" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Come funziona?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Inserisci una nuova password e aggiorneremo il tuo account" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "L'utente non ha creato alcun dataset." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Non hai inserito una tua biografia." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Questo utente non ha una biografia." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Ciò significa che puoi vederlo solo tu" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Membro dal" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Chiave API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Azzera la tua password" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Attività da:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista di ricerca..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Non stai seguendo nessun elemento" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Nessun sostenitore" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Cerca Utenti" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Reindirizzamento ad un sito esterno non permesso" diff --git a/ckan/i18n/ja/LC_MESSAGES/ckan.po b/ckan/i18n/ja/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..e09b168416d --- /dev/null +++ b/ckan/i18n/ja/LC_MESSAGES/ckan.po @@ -0,0 +1,5070 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# 秋山 梓 , 2020 +# Masaki Hidano , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Masaki Hidano , 2020\n" +"Language-Team: Japanese (https://www.transifex.com/okfn/teams/11162/ja/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "オーディオ" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "オーディオURL" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "例: http://example.com/audio.mp3 (空白の場合はリソースURL)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"あなたのブラウザは オーディオに対応していませんが、 ダウンロードできますので、ご安心ください。" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "リソースが見つかりません" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "このページの表示は許可されていません" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "完了" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "保留中" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "投稿中" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "エラー" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "まだアップロードされていません" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "データストアへのアップロード" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "アップロードエラー: " + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "エラー:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "エラートレースバック" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "状態" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "最終更新" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "決して" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "アップロードログ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "詳細" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "ログの終わり" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "データストア" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "データストアリソースが見つかりません" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "データディクショナリを保存しました。再定義したタイプは、リソースが次回データストアにアップロードされたときに有効になります。" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "そのデータは無効です: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "リソース \"{0}\" がみつかりませんでした" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "ユーザ {0} には リソース {1} の更新権限がありません" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "パワフルなクエリサポートがあるweb APIを通してリソースデータにアクセス" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"より詳しい情報は main CKAN Data API and DataStore " +"documentationを参照してください。

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "エンドポイント" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data APIはCKAN action APIの次のようなアクションを通してアクセスすることができます。" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "作成" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "更新 / 挿入" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "クエリ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "クエリ (SQL使用)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "クエリ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "クエリ例 (最初の5件)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "クエリ例 ('jones'を含む結果)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "クエリ例 (SQL文使用)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "例: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQueryを使用したdata APIへの単純なajax (JSONP) リクエスト" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "例: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "保存" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "フィールド{num}" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "タイプ再定義" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "説明" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "データディクショナリ" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "列" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "タイプ" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "ロード中..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "データAPI" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "テーブル" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "レスポンシブ表示" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "列を表示" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "テストコンフィグ" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "カスタムフィールド降順" + +#: ckan/templates/group/read.html:17 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 "人気" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "これは翻訳されていない文字列です" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "このグループには説明がありません" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} データセット" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 データセット" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKANのデータプレビューツールには多くの有用な機能があります。" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "フォロワー" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "リソース" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "秒" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "分" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "時" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "日" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "までに期限が切れます" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "ユニット" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "に期限が切れます" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "画像" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "画像URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "例: http://example.com/image.jpg (空白の場合はリソースURL)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "データエクスプローラー" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "グラフ" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "マップ" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "エラーローディングビュー" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "ビューを読み込めません" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "データストアでエラーが発生しています" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "データプロキシでエラーが発生しています" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "グリッド" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "例: 0" + +#: 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 "例: 100" + +#: 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 "グループ (軸 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "シリーズ (軸 2)" + +#: 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 "GeoJSONフィールド" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "無効なURLです。" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "最も評価の高いデータセット" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "評価平均" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "評価数" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "評価なし" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "最大グループ" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "グループ" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "データセット数" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "グループがありません" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "トップタグ" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "タグの名前" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "データセット数" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "最もデータセットを作成しているユーザ" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "ユーザ" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "統計メニュー" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "もっとも編集されたデータセット" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "テキスト" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" +"AJAXリクエストでエラーが発生しました。\n" +"Viewをロードできませんでした。" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "ビデオ" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "ビデオURL" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "例: http://example.com/video.mpeg (空白の場合はリソースURL)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "ポスターURL" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "例: http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"ご利用中のブラウザーは、embedded videoに対応しておりませんが、ここ からダウンロードして、お気に入りのビデオプレーヤーでご覧頂くことができます!" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "ウェブサイト" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "ウェブページURL" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "例: http://example.com (空白の場合はリソースURL)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "ブラウザが iframe をサポートしていません" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "承認機能が見つかりません: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "管理者" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "編集者" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "メンバー" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "管理するためにはシステム管理者である必要があります" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "サイトのタイトル" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "スタイル" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "サイトのタグライン" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "サイトのタグロゴ" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "About" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "About ページのテキスト" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "紹介テキスト" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "ホームページ上のテキスト" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "カスタム CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "カスタマイズ可能なCSS がページヘッダに挿入されました" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "ホームページ" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "パッケージ %s を削除できません。関連するリビジョン %s が削除されていないパッケージ %s を含んでいます。" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "リビジョン %sを削除時の問題: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "削除完了" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "未実装のアクション" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "アクセスできません" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "見つかりません" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "不正なリクエスト" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "不明のアクション名: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON エラー: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "不正なリクエストデータ: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "グループが見つかりません" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "組織が見つかりませんでした" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "不正なグループ型" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "組織" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "グループ" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "タグ" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "フォーマット" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "ライセンス" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "ユーザ %r には %s の編集権限がありません" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "バルク更新を実行するための権限がありません" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "グループの作成が許可されていません" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "一貫性保持エラー" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "ユーザ %r には %s 承認の編集権限がありません" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "グループ %s の削除が許可されていません" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "組織が削除されました。" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "グループが削除されました。" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s はすでに削除されています" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "ユーザ %r は %s の編集メンバではありません" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "グループ %s のメンバーの作成は許可されていません" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "グループ %s へのメンバーの追加は許可されていません" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "グループ %s のメンバーの削除は許可されていません" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "グループメンバーが削除されました。" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "比較対象となる2つのリビジョンを選択してください。" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN グループのリビジョンヒストリー" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "CKANグループへの最近の変更: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "ログメッセージ " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "フォロー中{0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "フォローしていない{0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "フォロワー %s の表示は許可されていません" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "このサイトは現在オフラインです。データベースが起動していません。" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "プロフィールを更新してメールアドレスを追加してください。 " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "パスワードをリセットする必要があるときには,%sはあたなのメールアドレスを使用します。" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "不正な検索クエリ: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "パラメータ \"{parameter_name}\"は整数ではありません" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "データセットが見つかりません" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "無効なリビジョン形式: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "\"{package_type}\"タイプのデータセット表示はサポートしていません({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "%sは読み込みが許可されていないパッケージです" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKANデータセットのリビジョン履歴" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKANデータセットの最近の変更: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "パッケージの作成が許可されていません" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "このリソースの編集は許可されていません" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "このリソースの更新は許可されていません" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "データセット {id} は見つかりませんでした" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "少なくとも一件以上のリソースを追加しなければなりません" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "リソースの作成が許可されていません" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "このパッケージへのリソース作成は許可されていません。" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "検索インデックスにパッケージを追加できません" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "検索インデックスを更新できません" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "データセットはすでに削除されています" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "パッケージ %s の削除が許可されていません" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "リソースはすでに削除されています" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "リソース %s の削除が許可されていません" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "リソースビューが見つかりませんでした。" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "リソースデータがありません" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "利用できるダウンロードはありません" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "データセット %s の読み込みが許可されていません" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "リソース %s の読み込みが許可されていません" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "このリソースの編集は許可されていません" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "ビューが見つかりません" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "ビュータイプが見つかりません" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "問題のあるリソースビューデータ" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "リソースビューが提供されていません" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "プレビューが定義されていません" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "ユーザが見つかりません" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "ユーザとして登録する権限がありません" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "ユーザの作成権限がありません" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "\"{user_id}\"にはユーザ削除権限がありません" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "ユーザが指定されていません" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "ユーザ %s の編集権限がありません" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "プロフィールが更新されました" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "ユーザ %s の作成権限がありません" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captchaが無効です。再度試してください。" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "ユーザ \"%s\"は今登録されましたが、あたなはまだ\"%s\"としてログインしています。" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "ユーザの編集権限がありません" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "入力されたパスワードが間違っていました" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "古いパスワード" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "間違っているパスワード" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "ログイン失敗。ユーザ名かパスワードが違います。" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "パスワードリセットを要求する権限がありません" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "メールアドレスは必須です" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "メール送信でエラーが発生しました。後ほどもう一度お試し頂くか、管理者にヘルプを依頼してください。" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "リセット用のリンクをあなた宛にemailで送りました(指定したアカウントが存在しない場合を除く)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "パスワードをリセットする権限がありません" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "リセットキーが無効です。再度試してください。" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "パスワードがリセットされました。" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "パスワードは4文字以上である必要があります。" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "入力したパスワードが間違っています。" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "パスワードを発行してください" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "フォロー中のアイテムはありません" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} 見つかりません" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "すべて" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "表示" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{site_title} の新しいアクティビティ {n}件" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "たった今" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "不明" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "名無しのリソース" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "新しいデータセットが作成されました。" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "リソースが編集されました。" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "設定が編集されました。" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "閲覧数 {number}" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "最近の閲覧数 {number}" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "利用可能なメールアドレスがありません!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "組織" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "グループ" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "不明な値" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "入力フィールド %(name)s は期待されていません。" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "整数値を入力してください" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Unicode文字列である必要があります" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "無効なパッケージリソース" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "エキストラ" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "タグ \"%s\" が見つかりませんでした" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "データセット" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "正しいJOSN形式としてペーストできません" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "組織が必要です" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "このデータセットを他の組織に移動することは出来ません" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "組織がありません" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "組織にデータセットを追加できません" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "無効な整数値" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "自然数を入力してください" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "正の整数値を入力してください" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "データフォーマットが違います" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "log_messageではリンクは許されていません。" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "既に同名のデータセットIDが登録されています" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "リソース" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "グループ名かIDが存在しません。" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "アクティビティ型" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "名称は文字列である必要があります" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "その名前は利用できません" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr " %s 文字以上必要です" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "名前は最大 %i 文字以内でなければいけません" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "小文字のアルファベット(ascii)と、asciiに含まれる文字列: -_ のみです。" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "その URL はすでに使用されています。" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "名前 \"%s\" の文字数は最小文字数 %s 文字に達していません" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "名前 \"%s\" の文字数は最大文字数 %s 文字を越えています" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "バージョンは最大 %i 文字以内でなければいけません" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "キー \"%s\" の重複" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "既に同名のグループが登録されています" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "タグ \"%s\" の文字数は最小文字数 %s 文字に達していません" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "タグ \"%s\" の文字数は最大文字数 %i 文字を超えています" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "タグ \"%s\" は英数文字あるいは、以下の記号 -_ のいづれかである必要があります。" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "タグ \"%s\" で大文字を使用することはできません" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "ユーザ名は文字列である必要があります" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "このログイン名は使用できません。" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "そのログイン名には変更できません。" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "パスワードとして同じ文字列を入力してください" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "パスワードは文字列である必要があります" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "パスワードは8文字以上でなければいけません" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "入力したパスワードが一致しません" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "SPAMを含む可能性のある投稿はできません。説明文からリンクを除外してください。" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "名前は %s 文字以上必要です" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "そのボキャブラリー名はすでに使用されています。" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "キーの値を %s から %s へ変更できません。このキーは編集できません" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "ボキャブラリーがみつかりませんでした。" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "タグ %s はボキャブラリー %s に属していません" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "そのようなタグはありません" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "タグ %s はすでにボキャブラリー %s に属しています" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "正しいURL を入力してください" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "ロールがありません" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "組織なしのデータセットはプライベートにできません" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "リストではありません" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "文字列ではありません" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "この親は階層構造でループを作ります" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\"と\"filter_values\"は同じ長さにすべきです" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" is required when \"filter_values\" is filled" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_fields\"が入力されている場合、\"filter_values\"は必須です" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "同じ名前のスキーマフィールドがあります" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Email {email} が正しい形式ではありません" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "dictである必要があります" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "値がありません" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "組織をグループとして作成します" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "あなたはパッケージidか名前 (パラメータ\"package\")を提供しなければなりません" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "あなたはレーティング (パラメータ\"rating\")を提供しなければなりません" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "レーティングは整数値である必要があります。" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "レーティングは %i から %i の間の値を入力してください。" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "招待メールの送信でエラーが発生し、ユーザを作成できませんでした。: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "ユーザをフォローするにはログインが必要です" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "自分自身はフォローできません" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "すでにフォロー中 {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "データセットをフォローするにはログインが必要です" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "ユーザ {username} が存在しません" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "グループをフォローするにはログインが必要です" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "データセットを保有する組織は削除できません。" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "そのidはデータ内にありません" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "ボキャブラリー \"%s\" はありません" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "タグ \"%s\" はありません" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "フォローを解除するにはログインが必要です" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "フォローしていない {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "リソースが見つかりませんでした。" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "\"クエリー\"パラメータ使用時には指定しないでください" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr ": のペアでなければなりません" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr " \"{field}\" フィールドが resource_search 内にありません。" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "パッケージが見つかりませんでした。" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "タスクステータスが見つかりませんでした。" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "組織が見つかりませんでした" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "ユーザ %s にはパッケージ作成権限がありません" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "ユーザ %s にはグループの編集権限がありません" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "ユーザ %s にはこの組織へのデータセットの追加権限がありません" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "データセットidが提供されていないので認証を確認できません。" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "このリソース用のパッケージが見つからないため、認証をチェックできません。" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "ユーザ %s にはデータセット %s 上のリソース作成権限がありません" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "ユーザ %s にはパッケージの編集権限がありません" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "ユーザ %s にはグループ作成権限がありません" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "ユーザ %s には組織の作成権限がありません" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "User {user} はAPIでのユーザ作成権限がありません。" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ユーザの作成権限がありません" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "グループがみつかりませんでした。" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "ユーザ %s にはメンバーの追加権限がありません" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "ユーザ %s にはグループ %s の編集権限がありません" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "ユーザ %s にはリソース %s の削除権限がありません" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "リソースビューが見つからないので、認証を確認できません。" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "ユーザ %s には関係 %s の削除権限がありません" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "ユーザ %s にはグループの削除権限がありません" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "ユーザ %s にはグループ %s の削除権限がありません" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "ユーザ %s には組織の削除権限がありません" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "ユーザ %s には組織 %s の削除権限がありません" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "ユーザ %s にはタスクステータスの削除権限がありません" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "許可されていません" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "ユーザ %s にはこれらのパッケージの閲覧権限がありません" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "ユーザ %s にはパッケージ %s の閲覧権限がありません" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "ユーザ %s にはリソース %s の閲覧権限がありません" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "ユーザ %s には グループ %s の閲覧権限がありません" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "ダッシュボードにアクセスするにはログインが必要です" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "ユーザ %s にはパッケージ %s の編集権限がありません" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "ユーザ %s にはリソース %s の編集権限がありません" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "ユーザ %s にはパッケージ %s の状態を変更する権限がありません" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "ユーザ %s には組織 %s の編集権限がありません" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "ユーザ %s にはグループ %s の状態を変更する権限がありません" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "ユーザ %s にはグループ %s に対する権限の編集権限がありません" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "ユーザを編集するためにはログインする必要があります" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "ユーザ %s にはユーザ %s の編集権限がありません" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "ユーザ {0} には リソース {1} の更新権限がありません" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "ユーザ %s にはリビジョンの状態を変更する権限がありません" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "ユーザ %s にはtask_status テーブルの更新権限がありません" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "ユーザ %s にはterm_translation テーブルの更新権限がありません" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "ライセンスが指定されていません" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "クリエイティブ・コモンズ CC0" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "クリエイティブ・コモンズ 表示" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "クリエイティブ・コモンズ 表示 継承" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "その他 (オープンライセンス)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "その他 (パブリックドメイン)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "その他 (表示)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "クリエイティブ・コモンズ 非商用" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "その他 (非商用)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "その他 (非オープンライセンス)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "%s に依存" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "%s に被依存" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "%s から派生" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "派生に %s があります" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "%s にリンクしています" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "%s からリンクされています" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "%s の子です" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "%s の親です" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "%s の兄弟です" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "このリソースのデータを読み込むためのAPIがありません" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "データAPIの情報の読み込みに失敗しました" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "入力開始..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "見つかりません" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "%(num)d 文字以上入力してください" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "保存されていない変更があります" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "アクションを確認してください" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "このアクションを実行してよろしいですか?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "確認" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "キャンセル" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "フォロー解除" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "フォロー" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "リンク" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Web上のURLへリンク(APIへのリンク可)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "アップロード" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "削除" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "コンピュータ上のファイルをアップロード" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "ファイル" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "並び順を保存" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "保存中..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "ファイルをアップロード" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "エラーが発生しました" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "ファイルをアップロードできません" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "アップロードを許可できません" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "リソースがアップロードされました" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "アップロードしたファイルからデータを取得できません" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "フィルター追加" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "フィールドを選択" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "編集" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "もっとみる" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "隠す" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "エラー %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "About {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKANアソシエーション" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "システム管理者設定" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "プロフィールを表示" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "ダッシュボード (%(num)d 新しいアイテム)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "ダッシュボード" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "ログアウト" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "ログイン" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "登録" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "データセット" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "データセットを検索" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "検索" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "データセット検索" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "スキップして内容へ" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "ごみ箱" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "サイトロゴ" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "コンフィグを初期化してよろしいですか?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "初期化" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "設定を更新" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKANコンフィグオプション" + +#: ckan/templates/admin/config.html:52 +#, 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インスタンスのタイトルで、CKANの様々な場所で表示されます。

" +"

スタイル: 手短にテーマのカスタマイズをするために、主な配色の種類のリストから選択して下さい。

" +"

サイトタグロゴ: これはCKANインスタンスのテンプレートのヘッダーで表示されるロゴです。

" +"

About: このテキストはCKANインスタンスの aboutページで表示されます。

紹介文: " +"このテキストはCKANインスタンスの ホームページ " +"に、訪問者用のウェルカムメッセージとして表示されます。

カスタム CSS: これは各ページの " +"<head> 要素に現れるCSSのブロックです。もっと多くテンプレートのカスタマイズをしたい場合は、この文書を読むのを勧めます。

" +"

ホームページ: " +"あなたのホームページを表示するモジュールのための定義済のレイアウトを選択するために使われます。

" + +#: 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 管理者" + +#: 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 "" +"

一人のsysadmin ユーザとして、あなたはこのCKANインスタンスに対する完全な権限を持っています。注意して作業してください!

\n" +"

sysadmin機能の利用についての説明は、CKANsysadminガイドを参照してください。

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "削除を実行" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "詳細情報の表示" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "このデータ型の処理がありません: %(type)s." + +#: 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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "グループを追加" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "グループフォーム" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "グループ - {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 "メンバー - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "メンバーの追加" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "既存ユーザ" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "既存ユーザを加えたい場合は、以下でユーザ名を検索して下さい。" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "または" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "新規ユーザ" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "もし新規ユーザを招待したい場合は、そのメールアドレスを入力して下さい。" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "ロール" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "このメンバーを削除してよろしいですか?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "削除" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "ロールとは?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "データセット検索..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "グループ: {group} のデータセット" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "名前" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "マイグループ" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "このグループに対する簡単な情報" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "このグループを削除してもよろしいですか?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "グループの保存" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "表示 {name}" + +#: 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グループを使うことができます。これは特定のプロジェクトやチームあるいは特定のテーマのためのデータセットのカタログに成り得ますし、人々があなたの所有する公開データセットを発見し,検索するのを助ける簡単な方法として使えます。" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "削除済" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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は世界をリードするオープンソースのデータポータルプラットホームです。

CKANはデータをアクセス可能で使用可能にするための完全に枠を超えたソフトウェアソリューションです。データをストリームラインで公開、共有、発見、使用するためのツールを提供しています(データストレージや頑強なデータAPIの提供も含みます)。CKANはデータをオープンにして公開したいと思っているデータ公開者(国や地方行政、会社や組織)のために作られています。

CKANは世界中の行政やユーザグループによって使用されています。イギリスの" +" data.gov.uk、EUの publicdata.eu、ブラジルの dados.gov.br、オランダの政府ポータル、US、UK、アルゼンチン、フィンランド等の地方自治体のように、地方、国、国際的な行政を含む、様々な公的あるいはコミュニティのデータポータルの力となっています。

CKAN:" +" http://ckan.org/
CKAN ツアー: http://ckan.org/tour/
特徴: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "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 "これはCKANあるいはサイト全般についての良い紹介文です。我々はまだここへ行くためのコピーがありませんが、すぐに行くでしょう。" + +#: 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 "{0} 統計" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "データセット" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "データセット" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "組織" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "グループ" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "このフィールドは必須です" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"ここではMarkdown形式を使うことができます " + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "値" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "カスタム" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "不正な値があります:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "必須フィールド" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "画像URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "アップロードを消去" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\"に対して見つかりませんでした" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "\"{query}\" に対してデータセットが見つかりませんでした" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "公開にする" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "プライベートにする" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "ドラフト" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "プライベート" + +#: ckan/templates/organization/bulk_process.html:98 +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 "組織 - {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 "組織の編集" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ユーザ名" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Emailアドレス" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "メンバーの更新" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} メンバ" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "組織: {group} のデータセット" + +#: 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の組織は、データセットの集合を作成・管理・公開するために使われます。作成・編集・公開の権限レベルに応じて、ユーザは組織内で異なる役割を持てます。" + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "この組織を削除しても良いですか? Note:この組織がパブリックとプライベートのデータセットを持つ間は削除はできません。" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "組織の保存" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "{organization_name} を表示" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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のデータセットはデータリソース (例: ファイル) " +"の集合です。データリソースはその説明とその他の情報と固定のURLを持ちます。データセットはユーザがデータを検索するときに目にするものです。" + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "変更" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "データセット - {name} を削除してもよろしいですか?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "リソース - {name} を削除してもよろしいですか?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "データセットの表示" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "メタデータの編集" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "プレビュー" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "追加" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "リソースの編集" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "ビュー" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "APIエンドポイント" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "リソースへ行く" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "ダウンロード" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "このリソースのために作成されたビューはまだありません" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "期待しているビューが表示されていませんか?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "期待通りのビューが表示されていなかもしれない理由です: " + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "このリソースに合うビューが作成されていません" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "サイト管理者が関連ビューのプラグインを有効にしていないかもしれません" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "追加情報" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "フィールド" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "最終更新日" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "unknown" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "メタデータ最終更新日時" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "作成日" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "データ形式" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "ライセンス" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "新規ビュー" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "このリソースにはビューがありません" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "新しいリソースの追加" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

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

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "APIドキュメント" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "完全な {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 "" +" %(api_link)s (%(api_doc_link)s参照) を使うことでもこのレジストリにアクセスすることも、または " +"%(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 "API Keyを使ってこのレジストリーにもアクセス可能です %(api_link)s (see %(api_doc_link)s). " + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "状態" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "最終更新" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "データセットを作成する前に、組織を作成する必要があります。" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "新しい組織を作る" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "このデータセットを割り当てられる組織はありません。" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "操作を続ける前に、組織の作成をシステム管理者に依頼してください。" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "タイトル" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "eg. A descriptive title" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. my-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "eg. Some useful notes about the data" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "例:経済,政府" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"ライセンス定義や追加情報はopendefinition.orgにあります。" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "組織" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "組織なし" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "公開・非公開" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "パブリック" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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 "" +"データライセンス " +"あなたが上で選択したライセンスは、あなたがこのデータセットに追加するリソースファイルの内容に対してのみ適用されます。このフォームで投稿することで、あなたはフォームに入力しているメタデータの値をOpen Database " +"Licenseのもとでリリースすることに同意することになります。" + +#: 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:43 +msgid "Next: Add Data" +msgstr "Next: データの追加" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "作成者のemail" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "メンテナーのemail" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "リソースの更新" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "データ" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "データに対する便利な情報" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "これは自動で補完されています。空欄のままでも良いです。" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "eg. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "ファイルサイズ" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "eg. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "eg. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "このリソースを削除してもよろしいですか?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Previous" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "保存して他を追加" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "探索" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "より多くの情報" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "フルスクリーン" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "埋めこみ" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "現在、このリソースビューは表示できません" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "埋め込まれたリソースビュー" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "生のHTMLをサポートするCMSやブログソフトウェアにコピー&ペーストでコードを埋め込むことができます" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "幅" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "高さ" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "コード" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "リソースプレビュー" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "データとリソース" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "データセットを追加" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher状態: {status}。" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "トラックバック URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "{facet_type}をもっと見る" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "人気のある {facet_type} のみを表示" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "この検索にマッチする {facet_type} はありません" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "ホーム" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "言語" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "ライセンスが提示されていません" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "このデータセットはオープンデフィニションを満たしています。" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "並び順" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "フィルタ結果" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

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

" + +#: ckan/templates/snippets/search_form.html:87 +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] "\"{query}\" に対して {number} 件のデータセットが見つかりました" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\" に対してデータセットが見つかりません" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} 件のデータセットが見つかりました" + +#: 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] "\"{query}\" に対して {number} 件のグループが見つかりました" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "\"{query}\" に対してグループが見つかりません" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} 件のグループが見つかりました" + +#: 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] "\"{query}\" に対して {number} 件の組織が見つかりました" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\" に対して組織が見つかりません" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} 件の組織が見つかりました" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} にタグ {tag} を追加しました" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} がグループ {group} を更新しました" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} が組織 {organization} を更新しました" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} を更新しました" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} のリソース {resource} を更新しました" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} がプロフィールを更新しました" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} がグループ {group} を削除しました" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} が組織 {organization} を削除しました" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} を削除しました" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} からリソース {resource} を削除しました" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} が {dataset} のフォローを開始しました" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} が {group} のフォローを開始しました" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} が {user} のフォローを開始しました" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} がグループ {group} を作成しました" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} が組織 {organization} を作成しました" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} を作成しました" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} にリソース {resource} を追加しました" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} がサインアップしました" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} がデータセット {dataset} からタグ {tag} を削除しました" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "タグを検索" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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ユーザにあなたが何者で、何をしているのかを知らせることができます" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "詳細の変更" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "フルネーム" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "あなたについての簡単な情報" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "購読内容をメールに通知" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "パスワードの変更" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "システム管理者 パスワード" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "パスワード" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "パスワードの確認" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "このユーザを削除してもよろしいですか?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "APIキーを本当に再生成しますか?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "APIキーを再生成" + +#: ckan/templates/user/edit_user_form.html:59 +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 "{user} としてログイン済み" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "ログアウト" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "保存:" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "ログイン済み" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "他のアカウントでログインするには一度ログアウトする必要があります" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "アカウントの作成" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "パスワードのリセット" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "パスワードのリセット" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "ユーザー名を変更することもできます。 後で変更することはできません。" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "パスワードの変更" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "これはどう動くのでしょうか?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "単純に新しいパスワードを入力してください。そうすればあなたのアカウントを更新します。" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "データセットを作成していません" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "まだバイオグラフィを提供していません" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "このユーザにはバイオグラフィがありません" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "あなただけがこれを見ることができます" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "ユーザ登録日" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "APIキー" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "パスワードをリセットしてください" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "ユーザを検索" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "パスワードは8文字以上でなければいけません。" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "外部サイトへのリダイレクトは許可されていません" diff --git a/ckan/i18n/km/LC_MESSAGES/ckan.po b/ckan/i18n/km/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..21c765c42a7 --- /dev/null +++ b/ckan/i18n/km/LC_MESSAGES/ckan.po @@ -0,0 +1,5017 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Khmer (https://www.transifex.com/okfn/teams/11162/km/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: km\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "រកមិនឃើញ ធនធាន" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "ពសិទ្ធិដើម្បីមើលទំព័រនេះ" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "កំហុស" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "រកមិនឃើញ ធនធាន \"{0}\" ។" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "បង្កើត" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "" + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "" + +#: ckan/templates/group/read.html:17 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 "" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "ធនធាន" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "ក្រុម" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "អ្នកប្រើប្រាស់" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "ពុំមានមុខងារអនុញ្ញាត៖ %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "អ្នកអភិបាល" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "ពណ្ណាធីការ" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "សមាជិក" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "ចាំបាច់ត្រូវតែជាអ្នកគ្រប់គ្រងប្រព័ន្ធដើម្បីធ្វើការគ្រប់គ្រង" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "ចំណងជើងតំបន់បណ្តាញ" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr " រចនាបថ" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "ស្លាកបន្ទាត់របស់គេហទំព័រ" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "ស្លាករូបសំគាល់របស់គេហទំព័រ" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "អំពី" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "អត្ថបទ អំពីទំព័រ" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "អត្ថបទ ផ្ដើមសេចក្ដីណែនាំ" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "អត្ថបទលើគេហទំព័រ" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "កែរសំរួល CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS ដែលកែរសំរួលត្រូវបានបញ្ចូលទៅក្នុងបឋមកថាទំព័រ​" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "គេហទំព័រដើម" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "សម្អាតទាំងស្រុង" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "សកម្មភាពមិនត្រូវបានអនុវត្ត។" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "ការចូលត្រូវបានបដិសេធ" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "ពុំអាចរកបាន" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "ការស្នើរសុំមិនត្រូវលក្ខខណ្ឌ" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "កំហុស​ JSON៖ %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "ទិន្នន័យដែលបានស្នើរសុំមិនត្រូវលក្ខខណ្ឌ៖​ %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr " ក្រុមរកមិនឃើញ" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "ប្រភេទក្រុមមិនត្រឹមត្រូវ" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "អង្គភាព" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "ក្រុម" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "ស្លាក" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "ទ្រង់ទ្រាយ" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "អាជ្ញាប័ណ្ណ" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួល %s ទេ" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតក្រុម" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "កំហុសឆ្គងនៃភាពត្រឹមត្រូវ" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "អ្នកប្រើ %r មិនត្រូវបានអនុញ្ញាតក្នុងការកែសម្រួលទៅលើការអនុញ្ញាត %s ទេ" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបក្រុម %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "អង្គការត្រូវបានលុប។" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "ក្រុមត្រូវបានលុបចោល" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបន្ថែមសមាជិកក្រុម %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយលុបសមាជិកក្រុម %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "សមាជិកក្រុមត្រូវបានលុបចោល" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "ជ្រើសការកែប្រែពីរមុនពេលធ្វើការប្រៀបធៀប។" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "ប្រវត្តិនៃការកែប្រែក្រុមរបស់ CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "ការផ្លាស់ប្តូរថ្មីដើម្បីក្រុម CKAN៖" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "សារកំណត់ហេតុ៖" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"បណ្តាញនេះគឺស្ថិតនៅក្រៅបណ្តាញក្នុងពេលបច្ចុប្បន្ន។ " +"មូលដ្ឋានទិន្នន័យមិនត្រូវបានធ្វើការចាប់ផ្ដើម។" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"សូមធ្វើបច្ចុប្បន្នភាពអំពីពត៍មានផ្ទាល់ខ្លួនរបស់អ្នក " +"​ហើយនឹងបំពេញអាស័យដ្ឋានអ៊ីម៉ែលរបស់អ្នក។" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s ប្រើអ៊ីម៉ែលរបស់អ្នកប្រសិនបើអ្នកត្រូវការកំណត់ពាក្យសម្ងាត់របស់អ្នកឡើងវិញ។" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "រកមិនឃើញបណ្តុំទិន្នន័យ" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "ទ្រង់ទ្រាយនៃការកែប្រែមិនត្រឹមត្រូវ៖ %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "ប្រវត្តិនៃការកែប្រែបណ្តុំទិន្នន័យរបស់ CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "ការផ្លាស់ប្តូរថ្មីលើ បណ្តុំទិន្នន័យ CKAN៖" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលធនធាននេះ" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើបច្ចុប្បន្នភាពទិន្នន័យទេ" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "បណ្តុំទិន្នន័យត្រូវបានលុបចោល" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "ធនធានត្រូវបានលុបចោល" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "រកមិនឃើញអ្នកប្រើប្រាស់" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការចុះឈ្មោះជា អ្នកប្រើ" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតអ្នកប្រើប្រាស់" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "ពុំត្រូវបានអនុញ្ញាតដើម្បីលុបអ្នកប្រើប្រាស់ដែលមានលេខសំគាល់ \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "មិនមានអ្នកប្រើប្រាស់ណាមួយត្រូវបាន​បញ្ជាក់" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់​ %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "ជិវប្រវត្តិត្រូវបានធ្វើបច្ចុប្បន្នភាព" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយបង្កើតអ្បង្កើតអ្នកប្រើ %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "ការបញ្ចូលមិនត្រឹមត្រូវ។ សូមព្យាយាមម្តងទៀត។" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"អ្នកប្រើ \"%s\" ឥឡូវនេះបានចុះឈ្មោះហើយ ប៉ុន្តែអ្នកនៅតែត្រូវបានកត់ត្រាចូលជា " +"\"%s\" ពីមុនមក" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "ពុំត្រូវបានអនុញ្ញាតអោយធ្វើការកែសម្រួលព័ត៍មានអ្នកប្រើប្រាស់" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "កត់ត្រា​ចូលបានបរាជ័យ។ ឈ្មោះអ្នកប្រើឬពាក្យសម្ងាត់មិនត្រឹមត្រូវ។" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការស្នើសុំការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "ពុំត្រូវបានអនុញ្ញាតក្នុងការកំណត់ពាក្យសម្ងាត់ឡើងវិញទេ។" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "ពាក្យសម្ងាត់របស់លោកអ្នកត្រូវកំណត់ឡើងវិញ។" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "ពាក្យសម្ងាត់របស់អ្នកត្រូវតែ៤តួអក្សរ ឬលើសពីនេះ។" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "អ្នកត្រូវតែផ្ដល់ពាក្យសម្ងាត់" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "រកមិនឃើញ វត្ថុដែលតាមដាន" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "រកមិនឃើញ {0} " + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "គ្រប់យ៉ាង" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "ពេលឥឡូវនេះ" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "ធនធានដែលគ្មានឈ្មោះ" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "បានបង្កើតបណ្តុំទិន្នន័យថ្មី" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "ធនធានដែលបានកែ" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "ការកំណត់ទុកដែលបានកែ" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "តំលៃដែលមិនឃើញ" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "សូមបញ្ចូលតំលៃជាចំនួនគត់" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "សំនំុទិន្នន័យ" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "មិនអាចផ្តល់អោយជា JSON បានការ" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "ចំនួនគត់មិនត្រឹមត្រូវ" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "ត្រូវតែជាចំនួនគត់វិជ្ជមាន" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "ទ្រង់ទ្រាយកាលបរិច្ឆេទមិនត្រឹមត្រូវ" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "ធនធាន" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "ប្រភេទសកម្មភាព" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "ឈ្មោះត្រូវតែជាអក្សរ" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "ឈ្មោះនោះមិនត្រូវបានប្រើប្រាស់" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "អាស័យដ្ឋាន URL នោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "ឈ្មោះក្រុមមានរួចហើយនៅក្នុងមូលដ្ឋានទិន្នន័យ" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "ឈ្មោះអ្នកប្រើប្រាស់ត្រូវតែជាអក្សរ" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "កំណត់ត្រា​ឈ្មោះចូលនោះមិនមានទេ។" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "សូមបញ្ចូលពាក្យសម្ងាត់ទាំងពីរ" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "ពាក្យសម្ងាត់ត្រូវតែជាខ្សែអក្សរ" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "ពាក្យសម្ងាត់ដែលអ្នកបានបញ្ចូលមិនត្រូវគ្នា។" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "ឈ្មោះវាក្យស័ព្ទនោះស្ថិតក្នុងការប្រើប្រាស់រួចហើយ" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "វាក្យស័ព្ទនៃស្លាកពាក្យរកមិនឃើញ" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "គ្មានឈ្មោះស្លាកពាក្យ" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "សូមផ្តល់អាស័យដ្ឋាន URL បានការ" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "តួនាទីមិនមាន" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "មិនមែនជាបញ្ជី" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "មិនមែនជាអក្សរ" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "តំលៃដែលមិនឃើញ" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "ការវាយតំលៃត្រូវតែជា" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "រកមិនឃើញ ធនធាន។" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "រកមិនឃើញ អង្គការ។" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ពុំបានអនុញ្ញាតអោយបង្កើតអ្នកប្រើប្រាស់" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "រកមិនឃើញ ក្រុម។" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "ពុំត្រូវបានអនុញ្ញាត" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "អ្នកប្រើ %s មិនត្រូវបានអនុញ្ញាតឱ្យផ្លាស់ប្តូរស្ថានភាពនៃការកែប្រែ" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "ចុះឈ្មោះ" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "បណ្តុំទិន្នន័យ" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "ស្វែងរកបណ្តុំទិន្នន័យ" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "បន្ថែមក្រុម" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "បន្ថែមសមាជិក" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "តួនាទី" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "លុបចោល" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:98 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ឈ្មោះអ្នកប្រើប្រាស់" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "មើលជាមុន" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "បន្ថែម" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "អាជ្ញាប័ណ្ឌ" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "ទិន្នន័យ និងធនធាន" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "ទំព័រដើម" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "ភាសា" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ទៅ" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "អ៉ីម៉ែល" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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:10 +msgid "Full name" +msgstr "ឈ្មោះពេញ" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "លាស់ប្តូរពាក្យសម្ងាត់" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "ពាក្យសម្ងាត់" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "បញ្ជាក់ពាក្យសម្ងាត់" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "ចងចាំខ្ញំុ" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "កំណត់ពាក្យសម្ងាត់របស់អ្នកជាថ្មីម្តងទៀត" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "កំណត់ពាក្យសម្ងាត់ជាថ្មីម្តងទៀត" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "ធ្វើបច្ចុប្បន្នភាពពាក្យសម្ងាត់" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"គ្រាន់តែបញ្ចូលពាក្យសម្ងាត់ថ្មី ហើយយើងនឹងធ្វើបច្ចុប្បន្នភាពគណនីរបស់អ្នក" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "កំណត់ពាក្យសម្ងាត់របស់អ្នកជាថ្មីម្តងទៀត" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..14fd372af1e --- /dev/null +++ b/ckan/i18n/ko_KR/LC_MESSAGES/ckan.po @@ -0,0 +1,5082 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Jinil Lee , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Jinil Lee , 2021\n" +"Language-Team: Korean (Korea) (https://www.transifex.com/okfn/teams/11162/ko_KR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: ko_KR\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "오디오" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "오디오 url" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "예. http://example.com/audio.mp3 (공백인 경우 리소스 URL을 사용)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"이 브라우저에서는 audio 엘리먼트를 지원하지 않습니다. 파일을 직접 다운로드 할 수 있습니다." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "리소스를 찾을 수 없음 " + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "이 페이지를 보기 위한 권한 없음" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "완료" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "처리중" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "제출 중" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "오류" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "업로드되지 않음" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "데이터스토어에 업로드" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "업로드 에러:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "오류:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "오류 추적:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "상태" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "마지막 업데이트" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "전혀 없음" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "업로드 로그" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "상세 정보" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "로그의 끝" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "데이터스토어" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "데이터스토어 리소스를 찾을 수 없음" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "데이터 사전을 저장 했습니다. 재정의된 타입은 리소스가 다음에 데이터소토어에 저장될 때 적용됩니다." + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "유효하지 않은 데이터: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "리소스 \"{0}\"를 찾을 수 없음." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "사용자 {0}는 리소스 {1}를 업데이트할 수 있는 권한이 없습니다" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN 데이터 API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "강력한 질의 지원을 하는 웹 API를 통해 리소스 데이터 접근" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

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

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "엔드포인트" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "데이터 API는 CKAN 액션 API의 다음 액션들을 통해 접근할 수 있습니다." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "생성하기" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "업데이트 / 추가" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "질의" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "질의 (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "질의하기" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "질의 예제 (첫 5개 결과)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "질의 예제 ('jones'을 포함하는 결과)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "질의 예제 (via SQL 문)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "예: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQuery를 이용한 데이터 API에 간단한 ajax (JSONP) 요청." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "예: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "저장하기" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "필드 {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "타입 재정의" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "설명" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "데이터 사전" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "컬럼" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "타입" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "로딩중…" + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "데이터 API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "표" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "반응형 화면" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "컬럼 보이기" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "테스트 conf" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "커스텀 필드 내림차순" + +#: ckan/templates/group/read.html:17 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 "인기있는" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "번역되지 않은 문자열입니다" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "이 그룹은 설명이 없습니다" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} 데이터셋" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 데이터셋" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN의 데이터 미리보기 도구는 강력한 기능을 갖고 있습니다." + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "팔로워" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "리소스" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "초" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "분" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "시간" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "일" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "만료" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "단위" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "만료일" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "이미지" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "이미지 url" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "예. http://example.com/image.jpg (리소스 url이 공백일 경우)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "데이터 탐색기" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "그래프" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "지도" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "오류 로딩 뷰" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "뷰를 로드할 수 없음" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "데이터스토어에서 오류를 반환함" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "데이터프록시에서 오류를 반환하였습니다." + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "그리드" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "예: 0" + +#: 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 "예: 100" + +#: 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 "그룹 (축 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "시리즈 (축 2)" + +#: 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 "GeoJSON 필드" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom to features" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "클러스터 제작자" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "유효하지 않은 URL." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "상위 평점의 데이터셋" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "평균 평점" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "평가 수" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "평가 없음" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "가장 큰 그룹" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "그룹" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "데이터셋의 수" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "그룹이 없음" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "상위 태그" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "태그 이름" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "데이터셋의 수" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "가장 많은 데이터셋을 생성한 사용자" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "사용자" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "통계 메뉴" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "가장 많이 편집된 데이터셋" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "텍스트" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "AJAX 요청을 처리하는 중에 오류가 발생했습니다. 뷰를 읽을 수 없습니다." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "비디오" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "비디오 url" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "예. http://example.com/video.mpeg (공백인 경우 리소스 URL을 사용)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "포스터 url" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "예. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"이 브라우저에서는 embedded videos를 지원하지 않습니다. 파일을 직접 다운로드 하고 좋아하는 비디오 플레이어에서 재생 할 수 있습니다." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "웹사이트" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "웹 페이지 url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "예, http://example.com (입력하지 않을 경우 리소스 URL을 사용)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "브라우저가 iframes를 지원하지 않습니다." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "권한 기능을 찾을 수 없습니다: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "관리자" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "편집자" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "멤버" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "관리를 위해 시스템 관리자 권한이 필요합니다" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "사이트 제목" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "스타일" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "사이트 태그 라인" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "사이트 태그 로고" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "소개" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "소개 페이지 텍스트" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "인트로 텍스트" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "홈페이지에 관한 텍스트" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "사용자 정의 CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "페이지 헤더에 삽입된 설정을 변경할 수 있는 css" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "홈페이지" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "관련된 개정 %s이 삭제되지 않은 패키지 %s를 포함하여 패키지 %s를 제거할 수 없음" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "수정안 %s의 제거 문제: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "제거 완료" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "작업이 실행되지 않음." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "접근이 거부됨" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "찾을 수 없음" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "잘못된 요청" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "작업명을 알 수 없음: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON 오류: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "잘못된 요청 데이터: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "그룹을 찾을 수 없음" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "기관을 찾을 수 없음" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "정확하지 않은 그룹 형식" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "조직" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "그룹" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "태그" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "포맷" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "라이선스" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "사용자 %r이 %s를 편집할 권한 없음 " + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "대량 업데이트를 위한 권한이 없음" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "그룹을 생성할 생성할 권한이 없음" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "무결성 오류" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "사용자 %r은 %s 권한을 편집할 수 있는 권한이 없습니다. " + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "그룹 %s를 삭제하기 위한 권한 없음 " + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "조직이 삭제 되었습니다." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "그룹이 삭제 되었습니다." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s가 삭제되었습니다." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "사용자 %r 에게 %s 그룹 멤버를 수정할 권한 없음 " + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "그룹%s의 멤버를 생성하기 위한 권한 없음" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "그룹 %s의 멤버를 추가하기 위한 권한 없음" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "그룹 %s의 멤버를 삭제하기 위한 권한 없음" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "그룹의 멤버가 삭제 되었습니다." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "비교를 위해 두 개의 수정안을 선택하세요." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN 그룹 수정 이력 " + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN 그룹의 최근 변경:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "로그 메시지: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "{0}을 팔로잉 중입니다" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "이제 더 이상 {0}을 팔로잉 하지 않습니다" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "팔로워 %s를 보기 위한 권한 없음" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "이 사이트는 현재 오프라인입니다. 데이터베이스가 초기화되지 않았습니다. " + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "프로파일을 편집하고 이메일 주소를 추가하세요. " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "패스워드의 재설정이 필요한 경우, %s는 이메일 주소를 사용합니다." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "검색 질의어가 잘못되었습니다: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "매개변수 \"{parameter_name}\"는 정수값이 아닙니다." + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "데이터셋을 찾을 수 없음 " + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "유효하지 않은 수정본 형식: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "\"{package_type}\" 형식의 데이터셋은 ({file_!r})로 조회할 수 없습니다." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "패키지 %s를 읽기 위한 권한 없음" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN 데이터셋 수정 이력" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN 데이터셋의 최근 변경:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "패키지를 생성하기 위한 권한 없음" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "리소스 를 편집하기 위한 권한 없음 " + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "데이터셋을 갱신하기 위한 권한 없음" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "{id} 데이터셋을 찾을 수 없습니다." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "최소한 1개 이상의 데이터 리소스를 추가해야 합니다" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "리소스를 생성하기 위한 권한 없음" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "이 패키지를 위한 리소스를 생성하는데 권한이 없음 " + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "패키지에 검색 인덱스를 추가할 수 없음." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "검색 인덱스를 업데이트할 수 없음." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "데이터셋이 삭제 되었습니다." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "패키지 %s의 삭제 권한 없음" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "리소스가 삭제 되었습니다." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "리소스 %s를 삭제하기 위한 권한 없음 " + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "리소스 보기를 찾을 수 없음" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "리소스 데이터를 찾을 수 없음" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "다운로드를 사용할 수 없음" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "데이터셋 %s를 읽기 위한 권한 없음" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "리소스 %s를 읽기 위한 권한 없음 " + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "리소스를 편집하기 위한 권한이 없음" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "뷰를 찾을 수 없음" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "뷰 형식을 찾을 수 없음" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "잘못된 리소스 뷰 데이터" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "리소스 뷰가 제공되지 않음" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "미리보기가 정의되지 않았습니다." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "사용자를 찾을 수 없음 " + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "사용자로 등록하기 위한 권한 없음" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "사용자를 생성하기 위한 권한 없음" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "id \"{user_id}\"를 갖는 사용자를 삭제할 권한이 없음." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "명시된 사용자 없음" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "사용자 %s를 편집하기 위한 권한 없음" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "프로파일 업데이트됨" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "사용자 %s를 생성하기 위한 권한 없음" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "잘못된 Captcha. 다시 시도해주세요." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "사용자 \"%s\" 로 지금 등록되었지만, 이전에 사용하던 \"%s\" 로 로그인되어 있습니다." + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "사용자를 편집하기 위한 권한 없음." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "입력한 비밀번호가 정확하지 않습니다" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "이전 비밀번호" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "잘못된 비밀번호" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "로그인 실패. 잘못된 사용자명 또는 패스워드입니다." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "비밀번호 초기화를 요청할 권한이 없음." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "이메일은 필수값 입니다" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "이메일을 보내는 중에 오류가 발생 하였습니다. 다음에 다시 시도하거나 관리자에게 도움을 요청하세요." + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "재설정 링크가 이메일로 전송되었습니다. (계정이 없는 경우에는 제외)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "비밀번호 초기화할 권한 없음." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "유효하지 않은 재설정 키. 다시 시도하세요." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "패스워드가 재설정되었습니다." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "비밀번호는 4자 이상 이어야 합니다." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "입력한 패스워드가 일치하지 않습니다." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "비밀번호를 입력하여야 합니다" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Follow 항목을 찾을 수 없음" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0}를 찾을 수 없음 " + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "모든 것" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "보기" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{site_title}에 {n}개의 새로운 활동이 있습니다" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "바로 지금" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} 바이트" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "알 수 없음" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "이름 없는 리소스" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "새로운 데이터셋이 생성됨." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "리소스가 편집됨." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "설정이 편집됨." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} 뷰" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} 최근 뷰" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "사용 가능한 수신자 이메일이 없습니다!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "기관" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "그룹" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "누락된 값" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "입력 필드 %(name)s은 예상되지 않았습니다." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "정수값을 입력하세요" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "유니코드 문자열 값이어야 함" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "패키지 리소스가 유효하지 않음" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "여분의 것" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "태그 어휘 \"%s\" 가 존재하지 않습니다 " + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "데이터셋" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "유효한 JSON으로 파싱할 수 없음" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "조직은 입력하셔야 해요." + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "이 데이터셋은 다른 조직으로 이동할 수 없습니다." + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "조직이 존재하지 않습니다" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "이 조직에 데이터셋을 추가할 수 없습니다." + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "유효하지 않은 정수값" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "자연수만 허용" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "양수만 허용" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "데이터 형식이 맞지 않음" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "로그 메시지에 허용된 링크가 없음" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "데이터셋 id가 이미 존재합니다" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "리소스" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "해당 그룹명 또는 ID가 존재하지 않습니다." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Activity 형식" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "이름은 문자열 이어야 합니다" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "해당 이름은 사용할 수 없습니다" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "적어도 %s 문자 길이입니다" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "이름은 최대 %i 글자입니다" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "완전한 소문자 알파벳 (ascii) 문자와 기호입니다: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "해당 URL은 이미 사용되고 있습니다." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "이름 \"%s\" 길이는 최소 %s 이하입니다. " + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "이름 \"%s\" 길이는 최대 %s 이상입니다" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "버전은 최대 %i 글자 이상입니다" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "중복 키 \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "그룹 이름이 이미 데이터베이스에 있습니다" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "태그 \"%s\" 길이가 최소 길이 %s보다 작습니다" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "태그 \"%s\" 길이가 최대 길이 %i 보다 깁니다" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "태그 \"%s\"는 알파벳 글자 또는 -_ 기호를 사용해야 합니다." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "태그 \"%s\"는 대문자를 허용하지 않습니다" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "사용자 이름은 반드시 문자열이어야 합니다" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "해당 로그인명은 이용할 수 없습니다." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "해당 로그인명은 변경 할 수 없습니다." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "양쪽에 비밀번호를 입력하세요" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "비밀번호는 반드시 문자열이어야 합니다" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "비밀번호는 8자 이상이어야 합니다." + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "입력된 비밀번호가 일치하지 않습니다" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "스팸으로 보일 경우 편집이 허용되지 않습니다. 설명에 링크를 추가하는 것을 피하세요 " + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "이름은 적어도 %s 글자 이상입니다" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "해당 어휘명은 이미 사용되고 있습니다." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "%s에서 %s로 키값을 변경할 수 없습니다. 이 키는 읽기 전용입니다 " + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "태그 어휘를 찾을 수 없습니다." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "태그 %s는 어휘 %s에서 속하지 않았습니다" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "태그 이름이 없음" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "태그 %s는 이미 어휘 %s에 속해 있습니다 " + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "유효한 URL을 제공해 주세요" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "역할이 존재하지 않습니다." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "기관이 없는 데이터셋은 비밀로 할 수 없습니다." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "리스트가 아님" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "문자열이 아님" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "이 부모 노드는 계층구조에서 루프를 생성합니다" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\"과 \"filter_values\"는 반드시 같은 길이여야 합니다" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\"는 \"filter_values\"이 채워졌을 때 필요합니다" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\"는 \"filter_fields\"이 채워졌을 때 필요합니다" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "같은 이름을 갖는 스키마 필드가 있습니다" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "이메일 {email} 은 형식이 유효하지 않네요" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "dict만 허용" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "이메일 주소 '{email}' 는 이미 등록된 사용자입니다." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "값은 다음 중 하나여야 합니다. {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "누락된 값" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "역할은 다음 중 하나여야 합니다. \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "그룹으로써의 조직 생성 시도하기" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "패키지 id 또는 이름 (매개변수 \"package\")를 제공해야 합니다." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "등급 (매개변수 \"rating\")을 제공해야 합니다. " + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "등급은 정수값입니다." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "등급은 %i와 %i 사이 값입니다." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "초대 메일 발송 중 에러가 생겨서, {0} 사용자는 생성되지 않았어요" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "사용자를 팔로우하기 위해 로그인해야 합니다." + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "당신 스스로 팔로우(follow)할 수 없습니다" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "이미 {0}를 팔로잉하고 있습니다" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "데이터셋을 팔로우하기 위해 반드시 로그인해야 합니다" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "사용자 {username}는 존재하지 않습니다." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "그룹을 팔로우하기 위해 로그인해야 합니다" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "패키지를 찾을 수 없음" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "데이터셋이 있는 조직은 삭제 할 수 없습니다" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "데이터에 없는 id" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "어휘 \"%s\"를 찾을 수 없음" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "태그 \"%s\"를 찾을 수 없음" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "언팔로우하기 위해 로그인해야 합니다." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "{0}을 팔로잉하지 않고 있습니다." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "리소스를 찾을 수 없음." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "\"query\" 매개변수를 사용하는 경우 구체화하지 않음" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr ": 쌍이어야 함" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "필드 \"{field}\"가 resource_search에서 인식되지 않음." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "패키지를 찾을 수 없음" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus를 찾을 수 없음." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "조직이 존재하지 않습니다." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "사용자 %s는 패키지를 생성하기 위한 권한 없음" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "사용자 %s는 이 그룹을 편집하기 위한 권한 없음" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "사용자 %s는 이 기관에 데이터셋을 추가하기 위한 권한이 없습니다" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "데이터셋이 제공되지 않아, 인증 확인을 할 수 없습니다." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "이 리소스를 위한 패키지가 없으며, 인증을 확인할 수 없음" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "사용자 %s는 데이터셋 %s에 리소스를 생성할 수 있는 권한이 없습니다" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "사용자 %s는 이 패키지를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "사용자 %s는 그룹을 편집하기 위한 권한 없음" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "사용자 %s는 기관을 생성하는 권한이 없습니다. " + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "사용자 {user}는 API를 통해 사용자를 생성할 수 있는 권한이 없습니다" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "사용자를 생성할 수 있는 권한 없음" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "그룹을 찾을 수 없음." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "사용자 %s는 멤버를 추가하기 위한 권한이 없음" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "사용자 %s는 그룹 %s를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "사용자 %s는 리소스 %s를 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "리소스 뷰를 찾을 수 없어 인을 확인할 수 없습니다" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "사용자 %s는 관계 %s를 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "사용자 %s는 그룹 %s를 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "사용자 %s는 그룹을 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "사용자 %s는 조직 %s를 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "사용자 %s는 task_status를 삭제하기 위한 권한 없음" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "권한이 없는" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "사용자 %s는 이 패키지를 읽기 위한 권한 없음" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "사용자 %s는 패키지 %s를 읽기 위한 권한 없음" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "사용자 %s는 리소스 %s를 읽기 위한 권한 없음" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "사용자 %s는 그룹 %s를 읽을 수 있는 권한이 없습니다" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "대시보드에 접근하기 위해 로그인해야 합니다" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "사용자 %s는 패키지 %s를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "사용자 %s는 리소스 %s를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "사용자 %s는 패키지 %s의 상태를 변경하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "사용자 %s는 조직 %s를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "사용자 %s는 그룹 %s의 상태를 변경하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "사용자 %s는 그룹 %s의 허가를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "사용자 편집을 위해 반드시 로그인 해야 합니다" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "사용자 %s는 사용자 %s를 편집하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "사용자 {0}는 사용자 {1}을 업데이트하는 권한이 없습니다" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "사용자 %s는 개정 상태를 변경하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "사용자 %s는 task_status 테이블을 업데이트하기 위한 권한 없음" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "사용자 %s는 term_translation 테이블을 업데이트하기 위한 권한 없음" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "라이선스가 구체화되지 않음" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "기타 (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "기타 (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "기타 (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "기타 (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "기타 (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "%s에 의존적" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "%s와 존성이 있다" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "%s로 부터 나온" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "변형 %s가 있다" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "%s에 연결되어 있다" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "%s로부터 연결된다" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "%s의 자식이다" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "%s의 부모이다" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "형제 %s를 갖는다 " + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "이 리소스를 적재할 API 데이터가 없음" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "데이터 API 정보를 읽어오는데 실패했습니다" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "타이핑 시작..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "일치하는 것을 찾을 수 없음" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "입력이 너무 짧아요, 최소한 %(num)d 이상으로 입력해주세요" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "이 양식에 저장되지 않은 변경사항이 있습니다." + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "작업을 승인해 주세요" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "이 작업의 수행을 원합니까?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "승인" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "취소" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Unfollow" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Follow" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "링크" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "인터넷에 있는 URL 연결 (API 연결도 가능)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "업로드" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "제거" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "컴퓨터에 있는 파일을 업로드하기" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "파일" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "순서 저장" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "저장 중" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "파일 업로드하기" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "오류 발생" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "파일 업로드 불가" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "업로드를 인증할 수 없습니다" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "리소스가 업로드 되었음" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "파일을 업로드하기 위한 데이터를 가져올 수 없음" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "필터 추가" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "필드 선택하기" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "편집" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "더 보기" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "숨기기" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "오류 %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "About {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN 협회" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "시스템 관리자 설정" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "프로파일 보기" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "대시보드 (%(num)d 새 항목)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "대시보드" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "로그아웃" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "로그인" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "등록" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "데이터셋" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "데이터셋 검색" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "검색" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "컨텐트 생략" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "쓰레기통" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "사이트 로고" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "구성을 리셋하기 원합니까?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "리셋" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "설정 업데이트" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN 구성 옵션" + +#: ckan/templates/admin/config.html:52 +#, 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 인스턴스의 이름으로 다양한 곳에서 보여집니다.

" +"

스타일: 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 +msgid "Confirm Reset" +msgstr "리셋 승인" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN 관리" + +#: 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 "" +"

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

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

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "모두 제거 하시겠습니까?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "모두 제거" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "삭제된 데이터셋, 조직과 그룹을 완전히 제거합니다." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "삭제 승인" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "삭제된 데이터셋" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "삭제된 조직" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "삭제된 그룹" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "추가 정보를 위해 여기를 클릭하세요." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "데이터 형식을 정의한 핸들러가 없습니다: %(type)s." + +#: 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/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 "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "그룹 추가하기" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "그룹 폼" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "이 그룹의 삭제를 원합니까 - {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 "멤버의 삭제를 원합니까 - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "멤버 추가" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "기존 사용자" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "기존 사용자를 추가할 경우, 아래에서 사용자명을 검색하세요." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "또는" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "신규 사용자" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "신규 사용자를 초대하려면, 이메일 주소를 입력하세요." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "역할" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "이 멤버의 삭제를 원합니까?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "삭제" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "역할이란?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

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

" +"

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

" + +#: 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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "데이터셋 검색" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "그룹의 데이터셋: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "이름" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "내 그룹" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "내 그룹에 대한 일부 정보..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "이 그룹의 삭제를 원합니까?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "그룹 저장" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "뷰 {name}" + +#: 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 그룹을 사용할 수 있습니다. 그룹은 특정한 프로젝트 또는 팀을 위한 카탈로그 데이터셋일" +" 수 있고, 또는 특정한 주제입니다. 그룹을 통해 다른 사용자들은 출판된 데이터셋을 찾거나 검색할 수 있습니다. " + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "삭제됨" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "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 "CKAN이나 사이트에 대해 서문입니다. " + +#: 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 "{0} 통계" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "데이터셋" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "데이터셋을" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "기관" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "그룹" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "이 필드는 필수입니다" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Markdown formatting을 사용할 수 있습니다" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "값" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "사용자 정의" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "이 폼은 유효하지 않은 개체를 포함하고 있습니다:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "필수 필드" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "이미지 URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "업로드 취소하기" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "조직 추가하기" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\"로 찾음" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "\"{query}\"로 데이터셋을 찾지 못했습니다" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "공용으로 하기" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "비밀로 하기" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "초안" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "개인" + +#: ckan/templates/organization/bulk_process.html:98 +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 "조직의 삭제를 원합니까 - {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 "조직 편집" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "사용자명" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "이메일 주소" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "멤버 업데이트" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} 멤버들" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "기관의 데이터: {group}" + +#: 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 "" +"

기관은 데이터셋을 출판하는 부서와 유사합니다 (예. 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 "" +"CKAN 기관은 데이터셋의 집합을 생성, 관리, 출판하는데 사용됩니다. 사용자는 기관내에서 서로 다른 역할을 갖을 수 있으며, 권한의 " +"등급에 따라 생성, 편집, 출판이 다릅니다." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "이 조직을 삭제하시겠습니까? Note* :이 조직이 공공 또는 개인 데이터셋을 가질 때에는 삭제할 수 없습니다." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "조직 저장" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "{organization_name} 보기" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 데이터셋은 리소스에 대한 설명과 추가적인 정보를 갖고 있는 리소스의 집합으로, 고정된 URL을 갖고 있습니다. 데이터셋은 " +"데이터를 탐색할 때 사용자가 보는 결과입니다." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "변경사항" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "데이터셋의 삭제를 원합니까 - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "리소스의 삭제를 원합니까 - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "데이터셋 보기" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "메타데이터 편집" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "미리보기" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"데이터스토어 확장판이 활성화되지 않으면, 데이터 탐색기 뷰는 느리거나 신뢰하지 못할 수 있습니다. 추가적인 정보는 다음을 참조하세요 Data Explorer " +"documentation. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "추가하기" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "리소스 편집" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "뷰" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "리소스로 이동하기" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "다운로드" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "이 리소스를 위해 생성된 뷰가 아직 없습니다." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "예상했던 뷰를 볼 수 없나요?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "예상하는 뷰를 보지 못하는 이유들" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "이 리소스에 적합한 뷰를 생성하지 않았습니다" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "사이트 관리자가 관련 있는 뷰 플러그인을 활성화하지 못할 수 있습니다" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "추가 정보" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "필드" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "마지막으로 업데이트된 데이터" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "알 수 없는" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "마지막으로 업데이트된 메타데이터" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "생성됨" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "포맷" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "라이센스" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "새로운 뷰" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "이 리소스는 뷰가 없음" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "새로운 리소스 추가" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "

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

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "전체 {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 "" +" %(api_link)s (see %(api_doc_link)s)를 이용하여 이 레지스트리에 접근하거나 %(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 "%(api_link)s (see %(api_doc_link)s)를 이용하여 레지스트리에 접근할 수 있습니다. " + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "상태" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "최종 업데이트" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "데이터셋을 생성하기 전에, 단체를 생성해야 합니다." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "새 단체 생성하기" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "이 데이터셋에 할당할 수 있는 단체가 없습니다." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "단체를 생성하려면 계속하기 전에 시스템 관리자에게 문의하세요." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"라이센스 정의와 추가적인 정보는 opendefinition.org에서 찾을 수 " +"있습니다" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "조직" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "기관 없음" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "가시성" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "공공" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Active" + +#: 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 "" +"선택한 data license는 이 데이터셋에 추가하는 리소스 파일의 컨텐트에만 적용됩니다. 이 양식을 제출하면, Open Database " +"License에 따라 metadata 값을 배포하는데 동의하는 것입니다. " + +#: 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:43 +msgid "Next: Add Data" +msgstr "다음: 데이터 추가" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: 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 "joe@example.com" + +#: 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:26 +msgid "Data" +msgstr "데이터" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "eg. January 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "데이터에 관한 일부 쓸만한 기록" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "예) CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "자동으로 추측됩니다. 원할 경우, 공백으로 남길 수 있습니다 " + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "예) 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "파일 크기" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "예) 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME 형식" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "예) application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "이 리소스의 삭제를 원합니까?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "이전의" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Save & add another" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "탐색" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "추가 정보" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "삽입" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "리소스 뷰는 현재 사용할 수 없습니다." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "임베디드 리소스 뷰" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "Raw HTML (가공하지 않은 HTML)을 지원하는 CMS나 블로그에 임베디드 코드를 복사 및 붙여넣기 할 수 있습니다." + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "넓이" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "높이" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "코드" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "리소스 미리보기" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "데이터와 리소스" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "데이터셋 추가" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher 상: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "더 많은 {facet_type} 보여주기" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "인기있는 {facet_type}만 보여주기" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "검색에 일치하는 {facet_type}이 없습니다" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "언어" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "가기" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "라이센스를 제공하지 않음" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "이 데이터셋은 Open Definition을 만족시킨다." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "로 정렬" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "필터 결과" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

다른 검색을 시도하세요.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "\"{query}\"로 {number}개 데이터셋을 찾았습니다" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\"의 데이터셋을 찾을 수 없음" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number}개 데이터셋을 찾았습니다" + +#: 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] "\"{query}\"로 {number} 개 그룹을 찾았습니다" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "\"{query}\"의 그룹을 찾을 수 없음" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number}개 그룹을 찾았습니다" + +#: 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] "\"{query}\"로 {number}개 조직을 찾았습니다" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\"에 대한 기관을 찾을 수 없음" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number}개 조직을 찾았습니다" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "기관을 찾을 수 없음" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "구독하기" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "이메일" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에 태그 {tag}를 추가함" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor}가 그룹 {group}을 갱신함" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}가 조직 {organization}를 갱신함" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}을 업데이트함" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}의 리소스 {resource}를 갱신함" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor}가 프로파일을 업데이트함" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor}가 그룹 {group}를 삭제함" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor}가 조직 {organization}을 삭제함" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}를 삭제함" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에서 리소스 {resource}을 삭제함" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor}가 {dataset}를 팔로잉함" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor}가 {group}를 팔로잉함" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor}가 {user}를 팔로잉함" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor}가 그룹 {group}을 생성함" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor}가 조직 {organization}을 생성함" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor}가 데이터셋{dataset}을 생성함" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에 리소스 {resource}를 추가함" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor}가 등록함" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor}가 데이터셋 {dataset}에서 태그 {tag}를 제거함" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "검색 태그" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 사용자가 볼 수 있도록 해 주세요" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "상세정보 변경" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "성명" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "당신에 대한 약간의 정보" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "공지 메일에 구독하기" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "비밀번호 변경" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "시스템 관리자 비밀번호" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "비밀번호" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "비밀번호 확인하기" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "사용자를 삭제하시겠습니까?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "API 키를 다시 생성하시겠습니까?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "API Key 재생성" + +#: ckan/templates/user/edit_user_form.html:59 +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 "{user}로 이미 로그인되어 있습니다." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "로그아웃" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "기억하기" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "에 이미 로그인되어 있습니다" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "다른 계정으로 로그인하기 전에 로그아웃이 필요합니다" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "계정 생성하기" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "비밀번호 초기화" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "비밀번호 초기화하기" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "비밀번호 업데이트하기" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "어떻게 동작할까요?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "비밀번호를 입력하면 계정을 업데이트합니다." + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "사용자가 데이터셋을 생성하지 않았습니다" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "자기소개를 제공하지 않습니다" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "자기소개가 없습니다" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "당신만 볼 수 있음을 의미합니다" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "부터 멤버" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API 키" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "비밀번호를 재설정하세요" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "follower 없음" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "사용자 검색하기" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "대량 제거 완료" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "성공" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "활동을 찾을 수 없음" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "활동 데이터를 보기 위한 권한 없음." + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "패키지를 읽기 위한 권한 없음" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "API 토큰을 보기 위한 권한 없음." + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "API 토큰을 생성하기 위한 권한 없음." + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"API 토큰 생성: {token} " +"{copy}
지금 복사하세요. 다시 확인 할 수 없습니다!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "API 토큰을 취소 하기 위한 권한 없음." + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "비밀번호는 8자 이상이어야 합니다." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "외부 사이트로 리디렉션하는 것은 허용되지 않습니다." diff --git a/ckan/i18n/lt/LC_MESSAGES/ckan.po b/ckan/i18n/lt/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..65ef11ffe3a --- /dev/null +++ b/ckan/i18n/lt/LC_MESSAGES/ckan.po @@ -0,0 +1,5095 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Lithuanian (https://www.transifex.com/okfn/teams/11162/lt/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: lt\n" +"Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ištekliai nerasti" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Jūs neturite teisių matyti šio puslapio" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Klaida" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Klaida:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Paskutinį kartą atnaujinta" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Išsaugoti" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Aprašymas" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Kraunama..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Duomenų API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Paskutinį kartą modifikuotas" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Ši grupė turi aprašymą" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} rinkmena" +msgstr[1] "{num} rinkmenos" +msgstr[2] "{num} rinkmenos" +msgstr[3] "{num} rinkmenos" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 rinkmenų" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Pasekėjai" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ištekliai" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Paveikslėlis" + +#: 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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Geriausiai įvertintos rinkmenos" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Vidutinis įvertinimas" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Įvertinimų skaičius" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Nėra įvertinimų" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Didžiausios grupės" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupė" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Rinkmenų skaičius" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Dažniausios gairės" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Vartotojas" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Dažniausiai redaguotos rinkmenos" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Jūsų naršyklė nepalaiko iframe žymių." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Prieigos funkcija nerasta: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administratorius" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaguotojas" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Narys" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Redagavimui reikia sistemos administratoriaus teisių" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Tinklapio pavadinimas" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stilius" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Tinklapio gairių eilutė" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Tinklapio gairių logotipas" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Apie" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Tekstas apie puslapį" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Įvadinis tekstas" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Namų puslapio tekstas" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Specializuotas CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Įterptas specializuotas css į puslapio antraštę" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema panaikinant poversijį %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Panaikinimas baigtas" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Veiksmas nėra realizuotas." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Kreiptis nepriimta" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nerasta" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Bloga užklausa" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Veiksmo pavadinimas nerastas: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON klaida: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Blogi užklausos duomenys: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupė nerasta" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizacijos" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupės" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Gairės" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatai" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Naudotojas %r neturi teisių redaguoti %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Neturite teisių sukurti grupės" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Vientisumo klaida" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Naudotojas %r neturi teisių redaguoti %s leidimų" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Neturite teisių ištrinti grupės %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizacija buvo ištrinta." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Grupė buvo ištrinta" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Neturite teisių pridėti nario prie grupės %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Neturite teisių trinti grupės %s narių" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Grupės narys buvo ištrintas." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Pasirinkite du poversijus prieš atlikdami palyginimą." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN grupės poversijų istorija" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Paskiausi pakeitimai CKAN grupėje:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Žurnalo žinutė:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Jūs dabar sekate {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Jūs daugiau nebesekate {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Neturite teisių peržiūrėti pasekėjų %s" + +#: ckan/controllers/home.py:35 +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:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, 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/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Rinkmena nerasta" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neteisingas poversijo formatas: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Neturite teisių skaityti paketo %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN rinkmenos poversijo istorija" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Paskutiniai pakeitimai CKAN rinkmenos:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Neturite teisių sukurti paketo" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Neturite teisių redaguoti šio išteklio" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Neturite teisių atnaujinti rinkmenos" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Turite pridėti bent vieną duomenų išteklių" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Neturite teisių kurti išteklių" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Nepavyko įtraukti paketo į paieškos rodyklę" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Nepavyko atnaujinti paieškos rodyklės." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Rinkmena buvo ištrinta." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Neturite teisių trinti paketo %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Išteklius buvo ištrintas." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Neturite teisių trinti ištekliaus %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Nėra atsisiuntimų" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Neturite teisių skaityti rinkmenos %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Neturite teisių nuskaityti išteklių %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Jokia peržiūra nebuvo apibrėžta." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Naudotojas nerastas" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Neturite teisių kurti naudotojams" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nenurodytas naudotojas" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Neturite teisių redaguoti naudotojo %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profilis atnaujintas" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Neturite teisių sukurti naudotojo %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Neteisingas Captcha. Bandykite dar kartą." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Naudotojas \"%s\" jau yra priregistruotas, bet Jūs vis dar esate prisijungę " +"kaip \"%s\" iš anksčiau" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Prisijungti nepavyko. Neteisingas naudotojo vardas arba slaptažodis." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Neteisingas atkūrimo raktas. Prašome bandyti dar kartą." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Jūsų slaptažodis buvo atkurtas." + +#: ckan/controllers/user.py:565 +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:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Jūsų įvesti slaptažodžiai nesutampa." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Turite nurodyti slaptažodį" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Šis įrašas nerastas" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nerastas" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Viskas" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Peržiūra" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Ką tik" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} baitai" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Nežinomas" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Sukurta nauja rinkmena." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Ištekliai paredaguoti." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Nustatymai paredaguoti." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} peržiūra" +msgstr[1] "{number} peržiūrų" +msgstr[2] "{number} peržiūrų" +msgstr[3] "{number} peržiūrų" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} pastaroji peržiūra" +msgstr[1] "{number} pastarųjų peržiūrų" +msgstr[2] "{number} pastarūjų peržiūrų" +msgstr[3] "{number} pastarūjų peržiūrų" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nerastas gavėjo el. pašto adresas!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Trūkstama reikšmė" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Įvesties lauko %(name)s nebuvo tikimasi." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Įveskite sveiką skaičių" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Netinkamas paketo išteklius(-ai)" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Priedai" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Gairės žodynas \"%s\" negzistuoja" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Rinkmena" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizacija neegzistuoja" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Šiai organizacijai rikmenos pridėti negalite" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Netinkamas natūralusis skaičius" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Neteisingas duomenų formatas" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Nuorodos neleidžiamos žurnalo žinutėje." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Išteklius" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Toks grupės vardas arba ID negzistuoja." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Veiklos tipas" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Šis vardas negali būti panaudotas" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, 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:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Tokia nuoroda jau yra naudojama" + +#: ckan/logic/validators.py:390 +#, 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:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Vardo \"%s\" ilgis yra didesnis nei maksimalus %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versijos maksimalus ilgis yra %i simboliai" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Pasikartojantis raktas \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Toks grupės vardas jau egzistuoja duomenų bazėje" + +#: ckan/logic/validators.py:440 +#, 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:444 +#, 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:452 +#, 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:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Gairė \"%s\" negali turėti didžiųjų raidžių" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Šis prisijungimo vardas nėra prieinamas" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Prašome įvesti abu slaptažodžius" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Jūsų įvesti slaptažodžiai nesutampa" + +#: ckan/logic/validators.py:639 +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:648 +#, 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:656 +msgid "That vocabulary name is already in use." +msgstr "Toks žodyno vardas jau naudojamas." + +#: ckan/logic/validators.py:662 +#, 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:671 +msgid "Tag vocabulary was not found." +msgstr "Gairių žodynas nerastas." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Gairė %s nepriklauso žodynui %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nenurodytas gairės vardas" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Gairė %s jau priklauso žodynui %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Prašome nurodyti teisingą URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "vaidmuo neegzistuoja." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Trūkstama reikšmė" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Bandoma sukurti organizaciją kaip grupę" + +#: ckan/logic/action/create.py:958 +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:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Turite nurodyti įvertinimą (parametras \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Įvertinimas turi būti sveikas teigiamas skaičius." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Įvertinimas turi būti tarp %i ir %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Turite prisijungti norėdami sekti naudotojus" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Negalite sekti savęs" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Jūs jau sekate {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Turite prisijungti norėdami sekti rinkmeną." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Turite prisijungti norėdami sekti grupę." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "tokio id nėra duomenyse" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nepavyko rasti žodyno \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nepavyko rasti gairės \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Turite prisijungti norėdami nebesekti ko nors." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Jūs jau sekate {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Išteklius nerastas." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nenurodykite ar naudojate \"query\" parametrą" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Turi būti : pora(-os)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Laukas \"{field}\" neatpažintas išteklių paieškoje." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Paketas nerastas." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Užduoties statusas nerastas." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizacija nerasta." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Naudotojas %s neturi teisių kurti paketų" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Naudotojas %s neturi teisių redaguoti šių grupių" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "Nerasti jokie paketai šiam resursui, nepavyko patikrinti tapatybės." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Naudotojas %s neturi teisių redaguoti šių paketų" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Naudotojas %s neturi teisių kurti grupėms" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Naudotojas %s neturi teisių kurti organizacijoms" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupė nerasta." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Naudotojas %s neturi teisių pridėti nariams" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Naudotojas %s neturi teisių redaguoti grupės %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, 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:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, 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:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Naudotojas %s neturi teisių trinti grupėms" + +#: ckan/logic/auth/delete.py:86 +#, 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:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Naudotojas %s neturi teisių trinti organizacijoms" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Naudotojas %s neturi teisių trinti organizacijai %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Naudotojas %s neturi teisių ištrinti užduoties statusui" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Neturite teisių" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Naudotojas %s neturi teisių skaityti šių paketų" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Naudotojas %s neturi teisių skaityti paketo %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Naudotojas %s neturi teisių skaityti išteklio %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Turite būti prisijungęs, kad galėtumėte naudotis savo valdymo pultu." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Naudotojas %s neturi teisių redaguoti paketo %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Naudotojas %s neturi teisių redaguoti ištekliaus %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Naudotojas %s neturi teisių keisti paketo %s būsenos" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Naudotojas %s neturi teisių redaguoti organizacijos %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Naudotojas %s neturi teisių keisti grupės %s būsenos" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Naudotojas %s neturi teisių redaguoti paketo %s leidimams" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Naudotojas %s neturi teisių redaguoti naudotojo %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Naudotojas %s neturi teisių keisti poversijo būsenos" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Naudotojas %s neturi teisių atnaujinti užduoties statuso lentelės" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Naudotojas %s neturi teisių atnaujinti termų vertimų lentelės" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Kita (Atvira)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Kita (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Kita (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Kita (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Kita (Ne atvira)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "priklauso nuo %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "yra priklausomybė nuo %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "paveldi iš %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "turi paveldėjimų %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "nurodo į %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "yra nurodytas iš %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "yra %s vaikas" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "yra tėvas %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "turi brolių %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Šiam ištekliui nėra jokių API duomenų, kuriuos būtų galima įkelti" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Nepavyko įkelti duomenų API informacijos" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Pradėkite spausdinti..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Atitikmenų nerasta" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Yra neišsaugotų redagacijų šioje formoje" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Prašome patvirtinti veiksmą" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Ar tikrai norite atlikti šį veiksmą?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Patvirtinti" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Atšaukti" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Nebesekti" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Sekti" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Nusiųsti" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Pašalinti" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Įkelti failą" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Įvyko klaida" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Nepavyko įkelti failo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Nepavyko nustatyti siuntinio tapatybės" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Išteklius įkeltas" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Nepavyko gauti duomenų iš įkelto failo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Redaguoti" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Rodyti daugiau" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Paslėpti" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Klaida %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Apie {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Įgalinta CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sistemos administratoriau nustatymai" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Peržiūrėti profilį" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Valdymo pultas (%(num)d naujas įrašas)" +msgstr[1] "Valdymo pultas (%(num)d naujų įrašų)" +msgstr[2] "Valdymo pultas (%(num)d naujų įrašų)" +msgstr[3] "Valdymo pultas (%(num)d naujų įrašų)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Valdymo pultas" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Atsijungti" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Prisijungti" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registruotis" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Rinkmenos" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Ieškoti rinkmenų" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Ieškoti" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Įkelti mažiau" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Įkelti daugiau" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Jokių veiklų šiame veiklų šaltinyje" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administracija" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sistemos administratoriai" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigūracija" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Šiukšlinė" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Ar tikrai norite atkurti konfigūraciją?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Atkurti" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN konfigūracijos parinktys" + +#: ckan/templates/admin/config.html:52 +#, 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 "Patvirtinti atstatymą" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Patvirtinti ištrynimą" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Šis išteklius negali būti peržiūrėtas šiuo metu." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Spauskite čia dėl platesnės informacijos." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Parsisiųsti išteklių" + +#: 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 "Išsamiau..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "" +"Nėra apibrėžtos jokios apdorojančiosios funkcijos šiam duomenų tipui: " +"%(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standartinis" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standartinį įvestis" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Vidutinis" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Vidutinio pločio įvestis" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Pilnas" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Pilno pločio įvestis" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Platus" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Plati įvestis" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Įterpti prieš" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Įterpimo prieš įvestis" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Specializuotas laukas (tuščias)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Specializuotas laukas" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Teksto laukas" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Pasirinkti" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Veiklų srautas" + +#: 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 "Administratoriai" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Pridėti grupę" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Grupės forma" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Ar tikrai norite ištrinti grupę - {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 "Ar tikrai norite ištrinti narį - {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:15 +#: 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 "Redaguoti grupę" + +#: 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 "Nariai" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Pridėti grupę" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "" + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Grupių šiam tinklapiui kol kas nėra" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Gal sukurkite vieną?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Atgal prie visų narių" + +#: 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 "Redaguoti narį" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Pridėti narį" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Vaidmuo" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Ar tikrai norite ištrinti šį narį?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Ištrinti" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Kas yra vaidmenys?" + +#: ckan/templates/group/member_new.html:93 +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 "Sukurti grupę" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Atnaujinti grupę" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Sukurti grupę" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Rinkmenos grupėje: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Vardas" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mano grupė" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Truputis informacijos apie mano grupę..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Ar tikrai norite ištrinti šią grupę?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Išsaugoti grupę" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Peržiūrėti {name}" + +#: 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 "Kas yra grupės?" + +#: 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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "sakityti plačiau" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Sveiki" + +#: 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 yra pasaulyje pirmaujanti atviro-kodo duomenų portalo platforma.

" +"

CKAN yra visiškai paruoštas darbui programinės įrangos sprendimas, kuris" +" padaro duomenis pasiekiamus ir panaudojamus, suteikdamas įrankius " +"srautiniam publikavimui, dalinimuisi, paieškai ir duomenų naudojimui " +"(įskaitant duomenų talpinimą ir stabilaus duomenų API suteikimą). CKAN " +"taikinys yra duomenų publikuotojai (nacionalinės ir regioninės valdžios, " +"kompanijos ir organizacijos), norinčios atverti ir padaryti prieinamais savo" +" duomenis.

CKAN naudoja valdžios ir naudotojų grupės pasaulio mastu " +"ir palaiko įvairovę oficialių ir bendruomeninių duomenų portalų, įskaitant " +"portalus, skirtus vietinei, nacionalinei ar tarptautinei valdžiai, tokiai " +"kaip UK data.gov.uk ir Europos sąjungos " +"publicdata.eu, Brazilijos dados.gov.br, Olandijos ir Nyderlandų " +"valdžių portalams, taip pat ir miestų bei savivaldybių tinklapiams US, UK, " +"Argentinoje, Suomijoje ir kitur.

CKAN: http://ckan.org/
CKAN gidas: http://ckan.org/tour/
Funkcionalumo" +" apžvalga: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Sveiki atvykę į 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 "" +"Tai graži įžanginė pastraipa apie CKAN ar apskritai šį tinklapį. Mes kol kas" +" neturime jokios kopijos, kad patektumėme čia, bet greitai turėsime" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Tai papildoma skiltis" + +#: 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:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "rinkmenos" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Reikšmė" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Specializuotas" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formoje yra neteisingų įrašų:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Paveikslėlio URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organizacijos forma" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Eskizas" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privatus" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Ar tikrai norite ištrinti organizaciją - {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 "Redaguoti organizaciją" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Pridėti organizaciją" + +#: 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 "Organizacijų šiam tinklapiui kol kas nėra " + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Naudotojo vardas" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administratorius: Gali pridėti/redaguoti ir trinti " +"rinkmenas, taip pat valdyti organizacijos narius.

" +"

Redaguotojas: Gali pridėti ir redaguoti rinkmenas, bet " +"ne valdyti organizacijos narius.

Narys: Gali matyti " +"organizacijos privačias rinkmenas, bet ne pridėti naujas rinkmenas.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Sukurti organizaciją" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Atnaujinti organizaciją" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Sukurti organizaciją" + +#: ckan/templates/organization/snippets/feeds.html:2 +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 "Kas yra organizacijos?" + +#: 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 "Mano organizacija" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Truputis informacijos apie mano organizaciją..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Išsaugoti organizaciją" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Sukurti rinkmeną" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Kas yra rinkmena?" + +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Pakeitimai" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ar tikrai norite ištrinti rinkmeną - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ar tikrai norite ištrinti išteklių - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Peržiūrėti rinkmeną" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Peržiūrėti" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Atnaujinti" + +#: 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:13 +msgid "Update Dataset" +msgstr "Atnaujinti rinkmeną" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Pridėti duomenų rinkmenai" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Pridėti naują išteklių" + +#: 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:85 +msgid "Add" +msgstr "Pridėti" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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 "Peržiūrėti išteklių" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API stotis" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Atsisiųsti" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Šaltinis: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Papildoma informacija" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Laukas" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "nežinomas" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Sukurtas" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formatas" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencija" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

This dataset has no data, why not 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" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "pilna {format} kopija " + +#: 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 "" +"Šį registrą taip pat galite pasiekti naudodamiesi %(api_link)s (žiūrėkite " +"%(api_doc_link)s) arba parsisiųskite %(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 "" +"Šį registrą taip pat galite pasiekti pasinaudodami %(api_link)s (žiūrėkite " +"%(api_doc_link)s)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Papildoma informacija" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Šaltinis" + +#: 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 +msgid "Author" +msgstr "Autorius" + +#: 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 "Palaikytojas" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versija" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Būsena" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Pavadinimas" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "pav. tikslus pavadinimas" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "pav. mano-rinkmena" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "pav. kokie nors naudingi užrašai apie duomenis" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "pav. ekonomija, psichinė sveikata, valdžia" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +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:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizacija" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Matomumas" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Viešas" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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 "Ar tikrai norite ištrinti šią rinkmeną?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Sekantis: Pridėti duomenis" + +#: 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 "Jono tinklaraščiai" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Autoriaus el. paštas" + +#: 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 "jonas@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Palaikytojo el. paštas" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atnaujinti išteklių" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "pav. Aukso kainos 2011 sausį" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Kokie nors naudingi užrašai apie duomenis" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "pav. CSV, XML arba JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "pav. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Failo dydis" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "pav. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME tipas" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "pav. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Ar tikrai norite ištrinti šį išteklių?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Atgal" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Išsaugoti ir pridėti kitą" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Užbaigti" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Kas yra išteklius?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Išteklius gali būti bet kuris failas ar nuoroda į failą, talpinantį " +"naudingus duomenis." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Naršyti" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Įterpta" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kodas" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Duomenys ir ištekliai" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Sukurti rinkmeną" + +#: 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 "Pridėti duomenų" + +#: 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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Pridėti rinkmeną" + +#: 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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Namai" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ši rinkmena atitinka atviros apibrėžimą." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Šiai organizacijai aprašymo nėra" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Prašome pabandyti kitą paiešką.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "El. paštas" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} pridėjo gairę {tag} rinkmenai {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} atnaujino grupę {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} atnaujino organizaciją {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} atnaujino rinkmeną {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} atnaujino išteklių {resource} rinkmenai {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} atnaujino savo profilį" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ištrynė grupę {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ištrynė organizaciją {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ištrynė rinkmeną {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} ištrynė išteklių {resource} iš rinkmenos {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} pradėjo sekti {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} pradėjo sekti {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} pradėjo sekti {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} sukūrė grupę {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} sukūrė organizaciją {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} sukūrė rinkmeną {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} pridėjo išteklių {resource} rinkmenai {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} prisiregistravo" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} pašalino gairę {tag} iš rinkmenos {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 "Naudotojai" + +#: 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:10 +msgid "Full name" +msgstr "Asmenvardis" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Slaptažodis" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Prisijungimas" + +#: 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 "Pamiršote slaptažodį?" + +#: 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 "Atsijungti" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API raktas" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Atnaujinti slaptažodį" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Ieškoti naudotojų" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/lv/LC_MESSAGES/ckan.po b/ckan/i18n/lv/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..4279f22e5f2 --- /dev/null +++ b/ckan/i18n/lv/LC_MESSAGES/ckan.po @@ -0,0 +1,5147 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Latvian (https://www.transifex.com/okfn/teams/11162/lv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resurss nav atrasts" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nav tiesību skatīt šo lapu" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Pabeigts" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Gaida" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Iesniedz" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Kļūda" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Pagaidām nav augšupielādēts" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Augšupielādēt datu glabātuvē" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Augšupielādes kļūda:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Kļūda:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Kļūdas izpildes izsekojamība:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Statuss" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Pēdējo reizi mainīts" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nekad" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Augšupielādes žurnālieraksts" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaļas" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Žurnālieraksta beigas" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Datu glabātuve" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Datu glabātuves resurss nav atrasts" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Nav atrasti \"{0}\" resursi." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Lietotājam {0} nav atļauts atjaunināt resursu {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN datu API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Piekļut resursu datiem izmantojot tīmekļa API ar spēcīgu vaicājumu atbalstu" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Galapunkts" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data API var piekļūt, izmantojot sekojošas CKAN API darbības." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Izveidot" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Atjaunināt / Ievietot" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Vaicājums" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Vaicājums (caur SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Vaicājumu izpilde" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Vaicājumu piemērs (pirmie 5 rezultāti)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Vaicājumu piemērs (rezultāti, kas satur \"Jones\")" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Vaicājumu piemērs (caur SQL apgalvojumu)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Piemērs: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Vienkāršs ajax (JSONP) API datu pieprasījums, izmantojot jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Piemērs: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Saglabāt" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Apraksts" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Notiek ielāde..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Datu API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabula" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datu kopas viena lapā" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testa iestatījumi" + +#: ckan/templates/group/read.html:13 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 "Būtiskums" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nosaukums augošā secībā" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nosaukums dilstošā secībā" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Pēdējo reizi mainīts" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Pielāgotie lauki augošā secībā" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Pielāgotie lauki dilstošā secībā" + +#: ckan/templates/group/read.html:17 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 "Populārs" + +#: 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 "Pielāgots teksts" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "pielāgots teksts" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Valsts kods" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "pielāgots resursa teksts" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Šis ir netulkots teksts" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Šai kategorijai nav apraksta" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Datu kopas" +msgstr[1] "{num} Datu kopa" +msgstr[2] "{num} Datu kopas" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Datu kopas" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN datu priekšskatījuma rīkam ir daudz spēcīgu iespēju" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sekotāji" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resursi" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Attēls" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Attēla url" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "piem. http://example.com/image.jpg (ja tukšs izmanto resursu url)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Datu pārlūks" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafiks" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Karte" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "kļūda ielādējot skatu" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtri" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rindas iznesums" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "piem,: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Rindu skaits" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "piem.:100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Grafika tips" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupa (ass 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Sērija (ass 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Lauka tips" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Latitude lauks" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Longitude lauks" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON lauks" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automātiskā tuvināšana" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Klastera mārķieri" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Visaugstāk vērtētās datu kopas" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Vidējais vērtējums" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Vērtējumu skaits" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Nav vērtējumu" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Lielākās tēmas" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Kategorija" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Datu kopumu skaits" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Nav kategoriju" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Populārākās birkas" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Birkas nosaukums" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Datu kopu skaits" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Lietotāju biežāk izveidotās datu kopas" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Lietotājs" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Satistikas izvēlne" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Visvairāk mainītās datu kopas" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Teksts" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Mājas lapa" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Tīmekļa vietnes url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "piem. http://example.com (ja tukšs izmanto resursu url)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Jūsu pārlūkprogramma neatbalsta iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Autorizācijas grupa nav atrasta: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrators" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaktors" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Biedrs" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Jābūt sistēmas administratoram, lai to pārvaldītu" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Lapas nosaukums" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stils" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Lapas birkas līnija" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Lapas birkas logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Par" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Par lapas tekstu" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Ievadteksts" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Teksts sākuma lapā" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Pielāgots CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Pielāgojams css ievietots lappuses galvenē" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Sākumlapa" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Nevar iztīrīt paketi %s, jo saistītās izmaiņas %s iekļauj neizdzēstas " +"paketes %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problēmas attīrot izmaiņas %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Attīrīšana pabeigta" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Darbība nav ieviesta." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Pieeja liegta" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nav atrasts" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Nederīgs pieprasījums" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Darbības nosaukums nav zināms: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON kļūda: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Slikti pieprasījuma dati: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Kategorija nav atrasta" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizācija nav atrasta" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Nepareizs kategorijas tips" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizācijas" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Kategorijas" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Birkas" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formāti" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licences" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Lietotājs %r nav tiesīgs rediģēt %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nav atļauts veikt masu atjaunošanu" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nav tiesību izveidot kategoriju" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Viengabalainības kļūda" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Lietotājam %r nav tiesību rediģēt %s autorizācijas" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nav tiesību dzēst kategoriju %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizācija ir izdzēsta." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Kategorija ir izdzēsta." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ir izdzēsta." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nav tiesību pievienot biedru kategorijai %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nav tiesību dzēst kategorijas %s biedrus" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Kategorijas biedrs ir izdzēsta." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Atzīmē divas izmaiņas pirms salīdzināšanas." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Kategorijas izmaiņu vēsture" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nesenās izmaiņas kategorijā:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Žurnāla ieraksts:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Tagad jūs sekojat {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Tagad jūs vairs nesekojat {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nav tiesību skatīties sekjotājus %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Šī vietne pašlaik atrodas bezsaistē. Notiek databāzes inicializācija." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Lūdzu atjaunojiet savu profilu un pievienojiet savu " +"epasta adresi." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s izmanto savu epastu, ja nepieciešams atiestatīt savu paroli." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Nederīgs meklēšanas vaicājums: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametrs \"{parameter_name}\" nav vesels skaitlis" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Datu kopa nav atrasta" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Nederīgs izmaiņu formāts: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nav tiesības lasīt paketi %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN datu kopas izmaiņu vēsture" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nesenās izmaiņas CKAN datu kopā:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nav tiesības izveidot paketi" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nav tiesības rediģēt šo resursu" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nav tiesības atjaunot datu kopu" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Nevar atrast datu kopu {id}." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Jums ir jāpievieno vismaz viens datu resurss." + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nav tiesību izveidot resursu" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Nav tiesību izveidot resursu šai paketei" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Nevar pievienot paketi meklēšanas indeksam." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Nevar atjaunot meklēšanas indeksu." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Datu kopa ir izdzēsta." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nav tiesību dzēst paketi %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resurss tika izdzēsts." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nav tiesību dzēst resursu %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Resursa skats nav atrasts" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resursa dati nav atrasti" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Lejupielāde nav pieejama" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nav tiesību lasīt datu kopu %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nav tiesību lasīt resursu %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Nav tiesību rediģēt resursu" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Skats nav atrasts" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Skata tips nav atrasts" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Slikti skata resursa dati " + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Resursu skats nav pieejams" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Priekšskatījums nav definēts." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Lietotājs nav atrasts" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Nav tiesību reģistrēties kā lietotājam." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Nav tiesību izveidot lietotāju" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nav tiesības dzēst lietotāju ar id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nav norādīts neviens lietotājs" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Nav tiesību rediģēt lietotāju %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profils atjaunots" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Nav tiesību izveidot lietotāju %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Nepareizi norādīta \"Captcha\". Lūdzu mēģiniet vēlreiz." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Lietotājs \"%s\" ir reģistrēts, bet joprojām lietotājs pieteicies sistēmā ar" +" iepriekšējo lietotāju \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Nav tiesību rediģēt lietotāju." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Ievadītā parole nav pareiza." + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Iepriekšējā parole" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "nederīga parole" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Autorizācija neveiksmīga. Nepareizs lietotājvārds vai parole." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nav tiesību lai pieprasītu paroles atjaunošanu." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Nav tiesību, lai atjaunotu paroli." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Nederīga atiestatīšanas atslēga. Lūdzu mēģiniet vēlreiz." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Jūsu parole ir nomainīta." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Jūsu parolei ir jābūt vismaz 4 vai vairāk simbolus garai. " + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Jūsu ievadītās paroles nesakrīt." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Jums ir jānorāda parole" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Sekošanas vienums nav atrasts" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nav atrasts" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Viss" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Skats" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} jaunas aktivitātes no {site_title}" +msgstr[1] "{n} jauna aktivitāte no {site_title}" +msgstr[2] "{n} jaunas aktivitātes no {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Pašreiz" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} baiti" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Nezināms" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Nenosaukts resurss" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Izveidota jauna datu kopa." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Rediģētie resursi." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Rediģētie iestatījumi." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} skatījumi" +msgstr[1] "{number} skatījumi" +msgstr[2] "{number} skatījums" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nesenie skatījumi" +msgstr[1] "{number} nesenie skatījumi" +msgstr[2] "{number} nesenais skatījums" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nav pieejama saņēmēja epasta adrese!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizācija" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "kategorija" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Trūkstoša vērtība" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Ievades lauks %(name)s netika gaidīts." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Lūdzu ievadiet veselu skaitli" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paketes resurss(i) ir nederīgi" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Papildinājumi" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Birkas vārdnīca \"%s\" neekistē" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Datu kopa" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Neizdevās parsēt kā derīgu JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Nepieciešams norādīt organizāciju" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizācija neekistē" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Jūs nevarat pievienot datu kopu šai organizācijai" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Nederīgs vesels skaitlis" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Jābūt naturālam skaitlim" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Jābūt pozitīvam veselam skaitlim" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Nederīgs datuma formāts" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Saites nav atļautas log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Datu kopas id jau eksistē" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resurss" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Kategorijas nosaukums vai ID neeksistē." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Darbības tips" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Nosaukumiem jābūt tekstam" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Šāds nosaukums nevar tikt izmantots" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Jābūt vismaz %s simbolus garam" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nosaukumam jābūt maksimāli %i simbolus garam" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Jābūt tikai mazo burtu un ciparu (ASCII) simboliem un šādiem simboliem: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Šāds URL jau tiek izmantots" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Nosaukuma \"%s\" garums ir mazāks par minimālo garumu %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Nosaukuma \"%s\" garums ir lielāks par maksimālo garumu %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versijas garumam jabūt vismaz %i simbolus garam" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Atslēgas dublikāts \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Šāds kategorijas nosaukums jau eksistē datubāzē" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Birkas \"%s\" garums ir mazāks par minimālo garumu %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Birkas \"%s\" garums ir lielāks par maksimālo garumu %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Birka \"%s\" var saturēt burtu un ciparu simbolus vai simbolus: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Birka \"%s\" nevar būt ar lielajiem burtiem" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Lietotājvārdiem jābūt tekstam" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Šis lietotājvārds nav pieejams." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Lūdzu ievadiet abas paroles" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Parolēm jābūt tekstam" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Jūsu ievadītās paroles nesakrīt." + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Rediģēšana nav atļauta, jo tas izskatās pēc suragātteksta. Izvairieties no " +"saitēm jūsu aprakstā." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Nosaukumam jābūt vismaz %s simbolus garam" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Šāds vārdnīcas teksts jau tiek izmantots." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "Nevar mainīt atslēgas vērtību no %s uz %s. Šī atslēga ir tikai lasāma" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Birku vārdnīca nav atrasta" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Birka %s nepieder vārdnīcai %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nav birkas nosaukuma" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Birka %s jau pieder vārdnīcai %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Lūdzu norādiet derīgu URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "loma neeksistē." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datu kopa bez organizācijas nevar būt privāta." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Nav saraksts" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Nav teksts" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Šāds vienības vecāks radīs cilpu hierarhijā" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" un \"filter_values\" jābūt ar vienādu garumu" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" ir nepieciešamas, ja \"filter_values\" ir aizpildītas" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" ir nepieciešamas, ja \"filter_fields\" ir aizpildītas" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Pastāv shēmas lauks ar tādu pašu nosaukumu" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Trūkstošā vērtība" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Mēģina izveidot organizāciju kā kategoriju" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" +"Jums ir jānorāda paketes identifikators vai nosaukums (rādītājs \"pakete\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Jums ir jānorāda vērtējums (parametrs \"vērtējums\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Vērtējumam jābūt ciparam." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Vērtējumam jābūt starp %i un %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "Kļūda nosūtot uzaicinājuma epastu. Lietotājs netika izveidots: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Jums jābūt autorizētam, lai sekotu lietotājam" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Jūs nevarat sekot pats sev" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Jūs jau sekojat {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Jums jābūt autorizētam, lai sekotu datu kopai." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Lietotājs {username} neeksistē." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Jums jābūt autorizētam, lai sekotu kategorijai." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id nav datos" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nav iespējams atrast vārdnīcu \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nav iespējams atrast birku \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Jums jābūt autorizētam, lai atspējotu sekošanu." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Jūs nesekojat {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resurss netika atrasts." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nav jānorāda, ja tiek izmantots \"vaicājuma\" parametrs" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Jābūt : pāris(i)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Lauks \"{field}\" nav atpazīts resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pakete nav atrasta." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Uzdevuma statuss nav atrasts." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizācija nav atrasta." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Lietotājs %s nav tiesīgs izveidot paketes" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Lietotājam %s nav tiesības lai rediģētu šīs kategorijas" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Lietotājam %s nav tiesību, lai pievienotu datu kopas šai organizācijai" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Nav norādīts datu kopas id. Nav iespējams pārbaudīt īstumu." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "Pakete šim resursam nav atrasta, nav iespējams pārbaudīt īstumu." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "Lietotājam %s nav tiesību izveidot resursu datu kopai %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Lietotājs %s nav tiesīgs rediģēt šīs paketes" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Lietotājs %s nav tiesīgs veidot kategorijas" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Lietotājs %s nav tiesīgs veidot organizāciju" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Lietotājs {user} nav tiesīgs veidot lietotājus izmantojot API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nav tiesību veidot lietotājus" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Kategorija netika atrasta." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Lietotājs %s nav tiesīgs pievienot biedrus" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Lietotājam %s nav tiesību rediģēt kategoriju %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Lietotājs %s nav tiesīgs dzēst resursu %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Resursu skats netika atrasts. Nav iespējams pārbaudīt īstenumu." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Lietotājs %s nav tiesīgs dzēst attiecības %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Lietotājs %s nav tiesīgs dzēst kategorijas" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Lietotājs %s nav tiesīgs dzēst kategoriju %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Lietotājs %s nav tiesīgs dzēst organizācijas" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Lietotājs %s nav tiesīgs dzēst organizāciju %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Lietotājs %s nav tiesīgs dzēst task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Nav tiesību" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Lietotājs %s nav tiesīgs lasīt šīs paketes" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Lietotājs %s nav tiesīgs lasīt paketi %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Lietotājs %s nav tiesīgs lasīt resursu %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Lietotājs %s nav tiesīgs lasīt kategoriju %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Jums jābūt autorizētam, lai piekļūtu savai darbavirsmai" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Lietotājs %s nav tiesīgs rediģēt paketi %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Lietotājam %s nav tiesību rediģēt resursu %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Lietotājs %s nav tiesīgs mainīt paketes %s stāvokli" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Lietotājs %s nav tiesīgs rediģēt organizāciju %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Lietotājs %s nav tiesīgs mainīt kategorijas %s stāvokli" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Lietotājam %s nav tiesību rediģēt kategorijas %s tiesības" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Jums jābūt autorizētam, lai rediģēt lietotāju" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Lietotājam %s nav tiesību rediģēt lietotāju %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Lietotājs {0} nav tiesīgs atjaunot lietotāju {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Lietotājs %s nav tiesīgs mainīt izmaiņu stāvokli" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Lietotājs %s nav tiesīgs atjaunot task_status tabulu" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Lietotājs %s nav tiesīgs atjaunot term_translation tabulu" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Nav norādīta licence" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Cita (Atvērta)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Cita (Publiskais sektors)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Cita (Attiecinājums)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Jebkura)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Cita (Nekomerciāla)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Cita (Nav atvērta)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "atkarīgs no %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "ir atkarība no %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "izriet no %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "ir atvasinājums %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "saite uz %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "ir saistīta no %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "ir bērns no %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "ir vecāks no %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "ir brālis %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Nav API datu, lai ielādētu šo resursu" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Neizdevās ielādēt API datu informāciju" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Sāciet rakstīt ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Nav atrastas sakritības" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Šajā formā ir nesaglabātas izmaiņas" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Lūdzu, apstipriniet darbību" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Vai esat pārliecināts, ka vēlaties veikt šo darbību?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Apstiprināt" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Atcelt" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Atspējot sekošanu" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Sekot" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Saite" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Saite uz URL internetā (jūs varat arī norādīt saiti uz API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Augšuplādēt" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Dzēst" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Augšupielādēt failu uz jūsu datora" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Fails" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Saglabāt secību" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Saglabā..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Augšupielādēt failu " + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Notika kļūda" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Nevar augšupielādēt failu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Neizdevās autentificēt augšupielādi" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resurss augšupielādēts" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Nevar iegūt datus par augšupielādēto failu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Jūs augšupielādējat failu. Vai tiešām vēlaties doties prom, un apturēt šo " +"augšupielādi?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Pievienot filtru" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Rediģēt" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Rādīt vairāk" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Slēpt" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Kļuda %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Par {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN asociācija" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sistēmas administratora iestatījumi" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Skatīt profilu" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Darbavirsma (%(num)d jaunas vienības)" +msgstr[1] "Darbavirsma (%(num)d jauna vienība)" +msgstr[2] "Darbavirsma (%(num)d jaunas vienības)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Darbavirsma" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Iziet" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Pieslēgties" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Reģistrēties" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datu kopas" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Meklēt datu kopas" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Meklēt" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Pāriet uz saturu" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Ielādēt mazāk" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Ielādēt vairāk" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Nav aktivitātes šajā darbību straumē" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrācija" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sistēmas administrators" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurācija" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Atkritne" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Vai esat pārliecināts, ka jūs vēlaties atjaunot iestatījumus?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Atiestatīt" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Atjaunot iestatījumus" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN iestatījumu iespējas" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Lapas virsraksts: Šis CKAN instances nosaukums parādās " +"vairākās vietās CKAN risinājumā.

Stils: Izvēlieties " +"no saraksta dažādu krāsu tēmas, lai ātri un vienkārši iegūtu pielāgotu " +"tēmu.

Site Tag Logo: Šis ir logo, kas parādās CKAN " +"instances galvenē.

Par: Teksts, kas parādīsies CKAN " +"instances ”Par” lapā.

" +"

Ievadteksts: Teksts, kas parādīsies CKAN instances sākumlapā kā sveiciens lapas apmeklētājiem.

" +"

Pielāgots CSS: Šis ir CSS bloks, kas parādīsies " +"<head> tagā katrā lapā. Ja jūs vēlaties plašāku " +"risinājuma izskata pielāgojumu mēs rekomendējam lasīt dokumentāciju .

" +"

Sākumlapa: Paredzēts, lai veiktu sākumlapas " +"iepriekšdefinēto moduļu izkārtojumu sākumlapā.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Apstiprināt atiestatīšanu" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrēt CKAN" + +#: 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 "" +"

Kā sistēmas administratora lietotājam, Jums ir pilnīga kontrole pār šo " +"CKAN instanci. Rīkojieties uzmanīgi!

Lai skaidrotu izmantojamās " +"sistēmas administratora iespējas, lasiet CKAN sistēmas administratora rokasgrāmatu " + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Apstiprināt dzēšanu" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Tīrīt" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Šobrīd šo resursu nav iespējams priekšskatīt." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Nospiediet šeit, lai iegūtu vairāk informācijas." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Lejupielādēt resursu" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Priekšskatījums nav pieejams." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Skatīt vairāk..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Nav definēts apdarinātājs datu tipam :%(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standarts" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standarta ievade" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Vidējs" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Vidējs ievades platums" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Pilns" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Pilns ievades platums" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Liels" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Liels ievades lauks" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Pievienot sākumā" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Pievienot sākumā" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Pielāgots lauks (tukšs)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Pielāgots lauks" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Atzīmēt" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Teksta aprakstošais lauks" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Iezīmēt" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Darbību plūsma" + +#: 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 "Administrators" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Pievienot kategoriju" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Kategorijas forma" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Vai tiešām vēlaties dzēst kategoriju - {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 "Vai tiešām vēlaties dzēst biedru - {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:15 +#: 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 "Pārvaldīt" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Rediģēt kategoriju" + +#: 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 "Biedrs" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Pievienot kategoriju" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Meklē kategorijas..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Pašlaik nav kategorijas šajā vietnē" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Kā būtu ar izveidošanu?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Atpakaļ pie visiem biedriem" + +#: 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 "Rediģēt biedru" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Pievienot biedru" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Eksistējošs lietotājs" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Ja vēlaties pievienot esošu lietotāju, meklējiet tā lietotājvārdu zemāk." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "vai" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Jauns lietotājs" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ja vēlaties uzaicināt jaunu lietotāju, ievadiet tā epasta adresi." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Loma" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Vai tiešām vēlaties dzēst šo biedru?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Dzēst" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Kas ir lomas?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: , var rediģēt kategorijas informāciju, kā arī " +"pārvaldīt organizācijas biedrus

Biedrs. Var " +"pievienot/noņemt datu kopas no kategorijām " + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Izveidot kategoriju" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Atjaunot kategoriju" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Izveidot kategoriju" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Meklē datu kopas..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datu kopas kategorija: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nosaukums" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mana kategorija" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Nedaudz informācijas par manu kategoriju..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Vai tiešām vēlaties dzēst šo kategoriju?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Saglabāt kategoriju" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Sakatīt {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Noņemt datu kopu no šīs kategorijas" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Kas ir kategorija?" + +#: 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 "" +"Jūs varat izmantot kategorijas, lai izveidotu un pārvaldītu kolekcijas datu " +"kopām. Tās var būt katalogs datu kopām par konkrētu projektu vai komandu, " +"vai par konkrētu tēmu, vai arī kā ļoti vienkāršs veids, kā palīdzēt " +"cilvēkiem atrast un meklēt savas publicētās datu kopas." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Dzēsts" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "lasīt vairāk" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Laipni lūgti" + +#: 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 ir pasaulē vadošais atvērtā koda datu publicēšanas portāls.

" +"

CKAN ir pilnīgs out-of-the-box programmatūras risinājums, kas padara " +"pieejamus un izmantojamus datus - nodrošinot instrumentus, lai racionalizētu" +" publicēšanu, koplietošanu, meklēšanu un datu izmantošanu (ieskaitot datu " +"uzglabāšanu un spēcīgu datu API).

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Laipni lūgti 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 "" +"Lorem Ipsum – tas ir teksta salikums, kuru izmanto poligrāfijā un " +"maketēšanas darbos. Lorem Ipsum ir kļuvis par vispārpieņemtu teksta " +"aizvietotāju kopš 16. gadsimta sākuma. Tajā laikā kāds nezināms iespiedējs " +"izveidoja teksta fragmentu, lai nodrukātu grāmatu ar burtu paraugiem. Tas ir" +" ne tikai pārdzīvojis piecus gadsimtus, bet bez ievērojamām izmaiņām " +"saglabājies arī mūsdienās, pārejot uz datorizētu teksta apstrādi. Tā " +"popularizēšanai 60-tajos gados kalpoja Letraset burtu paraugu publicēšana ar" +" Lorem Ipsum teksta fragmentiem un, nesenā pagātnē, tādas maketēšanas " +"programmas kā Aldus PageMaker, kuras šablonu paraugos ir izmantots Lorem " +"Ipsum teksts." + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Šī ir iespēju sadaļa" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Piem. vide" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Meklēt datus" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populāras birkas" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistika" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datu kopa" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datu kopas" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizācijas" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "kategorijas" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Šis lauks ir obligāts" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Šeit jūs varat izmantot samazināto formatējumu" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vērtība" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Pielāgots" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Forma satur nederīgus ierakstus" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Obligātais lauks" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Attēla URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Attīrīt augšupielādi" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organizācijas forma" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Rediģēt datu kopu" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "meklējot \"{query}\" tika atrasts" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Atvainojiet, netika atrasta neviena datu kopa meklējot \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Padarīt pieejamu publiski" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Padarīt pieejamu privāti" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Sagatave" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privāts" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Šai organizācija nav datu kopas, kas saistītas ar to" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Vai tiešām vēlaties dzēst organizāciju - {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 "Rediģēt organizāciju" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Pievienot organizāciju" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Meklē organizācijas..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Pašlaik nav organizācijas, šajā vietnē" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Lietotājvārds" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Epasta adrese" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Atjaunot biedru" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Admin: Var pievienot, mainīt un dzēst datu kopas, " +"pārvaldīt (pievienot, mainīt, dzēst) organizācijas biedru, skatīt un " +"lejupielādēt datu kopas, sekot datu kopām, organizācijām, datu kopu " +"grupām

Editor:−\tpievienot un mainīt datu kopas, " +"skatīt un lejupielādēt datu kopas, sekot datu kopām, organizācijām, datu " +"kopu grupām

Member:\tskatīt organizācijas privātās " +"datu kopas, skatīt un lejupielādēt datu kopas, sekot datu kopām, " +"organizācijām, datu kopu grupām.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Izveidot organizāciju" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Atjaunot organizāciju" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Izveidot organizāciju" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datu kopas organizācijā: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Kas ir organizācijas?" + +#: 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 "" +"

Organizācija darbojās, kā datu kopu publicēšanas departaments (piem, " +"veselības departaments). Tas nozīmē ka datu kopas var tik publicētas zem " +"kāda departamenta nevis zem individuāla lietotāja.

Organizācijās, " +"administratori var piešķirt lomas un atļaut tās biedriem, piešķirt citiem " +"lietotājiem tiesības publicēt datu kopu no konkrētās organizācijas " +"(piemēram, Valsts statistikas birojs).

" + +#: 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 organizācijas tiek izmantoti, lai izveidotu, pārvaldītu un publicētu " +"datu kopu kolekcijas. Lietotāji var būt ar dažādām lomām organizācijā, " +"atkarībā piešķirtajām tiesībām tie var izveidot, rediģēt un publicēt datus." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mana organizācija" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Nedaudz informācijas par manu organizāciju ..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Saglabāt organizāciju" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Skatīt {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Izveidot datu kopu" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Kas ir datu kopas?" + +#: 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 datu kopa ir datu resursu kolekcija (piemēram, faili), kopā ar aprakstu" +" un citu informāciju. Datu kopas ir tas, ko lietotāji redz, meklējot datus." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Izmaiņas" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Vai tiešām vēlaties dzēst datu kopumu - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Vai tiešām vēlaties dzēst resursu - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Skatīt datu kopu" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Rediģēt metadatus" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Rediģēt skatu" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Priekšskats" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Atjaunot" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Saistīt šo kategoriju ar šo datu kopu" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Pievienot kategorijai" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Nav kategorijas, kas saistītas ar šo datu kopu" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Atjaunot datu kopu" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Pievienot datus datu kopai" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Pievienot jaunu resursu" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Pievienot resursu" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Jauns resurss" + +#: 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 "Pievienot skatu" + +#: 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 "" +"Datu pārlūka skats var būt lēns un neuzticams kamēr nav pieslēgts DataStore " +"paplašinājums. Lai iegūtu vairāk informācijas, lūdzu, skatīt Data Explorer " +"dokumentāciju ." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Pievienot" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Visi resursi" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Skatīt resursu" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Rediģēt resursu" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Skati" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Doties uz resursu" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Lejupielādēt" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Avots: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Šim resursam pašreiz vēl nav izveidots skats." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Neredzat skatu kādu sagaidījāt?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Lūk, daži iemesli, kāpēc jūs nevar redzēt sagaidāmo skatu:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Nav izveidots skats, kas ir piemērots šim resursam" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Šīs vietnes administrators, iespējams, nav iespējojis attiecīgos apskates " +"spraudni" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Ja skatam nepieciešama datu glabātuve, datu glabātuves spraudnis nav " +"iespējots vai dati nevar būt nogadāti datu glabātuvē, vai datu glabātuve vēl" +" nav pabeigusi datu apstrādi" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Papildus informācija" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Lauks" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "nezināms" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Izveidots" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formāts" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licence" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Jauns skats" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Šim resursam nav skata" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Pievienot jaunu resursu" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Šai datu kopai nav datu, kādēļ gan " +"nepievienot?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "pilnā {format} izmete" + +#: 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 "" +"Jūs varat piekļūt šim reģistram izmantojot šo saiti %(api_link)s (skatīt " +"%(api_doc_link)s) vai lejupielādēt %(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 "" +"Jūs varat piekļūt šim reģistram izmantojot šo saiti %(api_link)s (skatīt " +"%(api_doc_link)s)." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Visi skati" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Skatu skati" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Skata priekšskats" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Papildus informācija" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Avots" + +#: 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 +msgid "Author" +msgstr "Autors" + +#: 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 "Uzturētājs" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versija" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stāvoklis" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Pēdējā atjaunināšana" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Pirms izveidot datu kopu jums ir nepieciešams izveidotu organizāciju." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Izveidot jaunu organizāciju" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Nav organizācijas, kurai jūs varat piešķirt šo datu kopu." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "Lai turpinātu pieprasiet adinistratoram izveidot organizāciju." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Virsraksts" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "piem. Aprakstošs virsraksts" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "piem. my-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "piem. Dažas noderīgas piezīmes par datiem" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "piem. ekonomika, garīgā veselība, valdība" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Licence definīcijas un papildus informāciju var atrast opendefinition.org " + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizācija" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Nav organizācijas" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Redzamība" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Publisks" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktīvs" + +#: 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 "" +"Izvēlētā datu licence attiecas tikai uz resursu failu saturu, kuru " +"Jūs pievienojat šai datu kopai. Iesniedzot šo formu, Jūs piekrītat publicēt " +"metadatu vērtības, kuras Jūs ievadijāt šajā formā zem Atvērto datubāzu " +"licences." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Vai tiešām vēlaties dzēst šo datu kopu?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Nākamais: Pievienot datus" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Autora epasts" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Uzturētāja epasts" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atjaunot resursu" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dati" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "piem. 2011. gada janvāris Zelta Cenas" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Dažas noderīgas piezīmes par datiem" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "piem. CSV, XML vai JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Tas tiks uzminēts automātiski. Atstājiet tukšu, ja vēlaties" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "piem. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Faila izmērs" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "piem. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME tips" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "piem. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Vai tiešām vēlaties dzēst šo resursu?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Iepriekšējais" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Saglabāt un pievienot citu" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Pabeigt" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Kas ir resurss?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Resurss var būt jebkurš fails vai saite uz failu, kas satur noderīgu " +"informāciju." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Izpētīt" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Vairāk informācijas" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Iekļaut" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Šī resursa skats pašreiz nav pieejams." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Iekļaut resursa skatu" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Jūs varat kopēt un ielīmēt iegultu kodu CMS vai blog programmatūrā, kas " +"nodrošina neapstrādātu HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Platums" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Augstums" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kods" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resursa pirmskats" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Dati un resursi" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Šai datu kopai nav datu" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Izveidot datu kopu" + +#: 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 "Pievienot datus" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "piem. Mans skats" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "piem. Informācija par manu skatu" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Noņemt filtru" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Kas ir skats?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Skats ir datu reprezentācija attiecībā pret resursiem" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Pievienot datu kopu" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher statuss: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Atsekojamības URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Rādīt vairāk {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Rādīt tikai populāros {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Nav {facet_type}, kas atbilst šai meklēšanai" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Sākumlapa" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Valoda" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Iet" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Nav norādīta licence" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Šī datu kopa atbilst atvērtajai definīcija." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Nav apraksta šai organizācijai" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Šai datu kopai nav apraksta" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Kārtot pēc" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filtra rezultāts" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Lūdzu, mēģiniet citu meklēšanu.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Radās kļūda meklējot. Lūdzu " +"mēģiniet vēlreiz.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} datu kopas meklējot \"{query}\"" +msgstr[1] "{number} datu kopas meklējot \"{query}\"" +msgstr[2] "{number} datu kopa meklējot \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Nav atrastas datu kopas meklējot \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "atrastas {number} datu kopas" +msgstr[1] "atrastas {number} datu kopas" +msgstr[2] "atrasta {number} datu kopa" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Nav atrastas datu kopas" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} kategorijas meklējot \"{query}\"" +msgstr[1] "{number} kategorijas meklējot \"{query}\"" +msgstr[2] "{number} kategorija meklējot \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Nav atrastas kategorijas meklējot \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "atrastas {number} kategorijas" +msgstr[1] "atrastas {number} kategorijas" +msgstr[2] "atrastas {number} kategorijas" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Kategorijas nav atrastas" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organizācijas meklējot \"{query}\"" +msgstr[1] "{number} organizācijas meklējot \"{query}\"" +msgstr[2] "{number} organizācija meklējot \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Nav atrastas organizācijas meklējot \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "atrastas {number} organizācijas" +msgstr[1] "atrastas {number} organizācijas" +msgstr[2] "atrasta {number} organizācija" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Organizācijas nav atrastas" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sociālie tīkli" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Pierakstīties" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Epasts" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} pievienota birka {tag} datu kopai {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} atjaunoja kategoriju {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} atjaunoja organizāciju {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} atjaunoja datu kopu {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} atjaunoja resursu {resource} datu kopā {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} atjaunoja savu profilu" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} izdzēsa kategoriju {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} izdzēsa organizāciju {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} izdzēsa datu kopu {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} izdzēsa resursu {resource} no datu kopas {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} uzsāka sakot {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} uzsāka sekot {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} uzsāka sekot {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} izveidoja kategoriju {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} izveidoja organizāciju {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} izveidoja datu kopu {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} pievienoja resursu {resource} datu kopai {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} pieteicās" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} noņēma birku {tag} no datu kopas {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Meklēt birkas" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Jaunumi" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Manas datu kopas" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Manas organizācijas" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Manas kategorijas" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivitātes no vienumiem, kuriem es sekoju" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Jūs neesat izveidojis nevienu datu kopu." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Izveidot vienu tagad?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Jūs neesat nevienas kategorijas biedrs." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Jūs neesat nevienas organizācijas biedrs." + +#: 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 "Lietotāji" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Konta informācija" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Jūsu profils ļauj citiem CKAN lietotājiem uzzināt par to, kas jūs esat un ko" +" jūs darāt." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Mainīt detaļas" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Pilnais vārds" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "piem. Jānis Bērziņš" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "piem. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Nedaudz informācijas par sevi" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonēt epasta paziņojumus" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Mainīt paroli" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Sistēmas administratora parole" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Parole" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Apstiprināt paroli" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Vai tiešām vēlaties dzēst šo lietotāju?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Vai jūs tiešām vēlaties pārģenerēt API atslēgu?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Pārģenerēt API astlēgu" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Atjaunot profilu" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Visi lietotāji" + +#: 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 "Pieslēgties" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Nepieciešams konts?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Reģistrējaties, tas aizņems tikai minūti." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Izveidot kontu" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Aizmirsi savu paroli?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Nav problēmu, izmantojiet mūsu paroles atjaunošanas formu, lai atjaunotu to." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Aizmirsi savu paroli?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Atteicies" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Jūs esiet atteicies no sistēmas" + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Jūs esat jau pieteicies kā {lietotājs}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Iziet" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Atcerēties mani" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Jūs esat jau pieteicies" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Jums ir nepieciešams atteikties no sistēmas, lai pieteiktos ar citu kontu." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Atteikties tagad" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Reģistrācija" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Konta reģistrācija" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Kāpēc reģistrēties?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Izveidot datu kopas, kategorijas un citas aizraujošas lietas" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "lietotājvārds" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "PIlns vārds" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Izveidot kontu" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Atjaunot jūsu paroli" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Paroles atiestatīšana" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Atjaunot paroli" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Kā tas strādā?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Vienkārši ievadiet jauno paroli un mēs atjaunosim jūsu kontu" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Lietotājs vēl nav izveidojis nevienu datu kopu." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Jūs neesat norādijis biogrāfiju." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Šim lietotājam nav biogrāfijas." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Tas nozīmē, ka tikai jūs varat redzēt šo" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Biedrs kopš" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API atslēga" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Attiestatīt jūsu paroli" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivitāte no:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Meklē sarakstu..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Jūs nekam nesekojat" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Nav sekotāju" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Meklēt lietotājus" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Pārvietošanās uz ārēju vietni nav atļauta." diff --git a/ckan/i18n/mk/LC_MESSAGES/ckan.po b/ckan/i18n/mk/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..364b34a707e --- /dev/null +++ b/ckan/i18n/mk/LC_MESSAGES/ckan.po @@ -0,0 +1,5201 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Elena Kusevska , 2021 +# Konstantin Sivakov , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Konstantin Sivakov , 2021\n" +"Language-Team: Macedonian (https://www.transifex.com/okfn/teams/11162/mk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Аудио" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "Аудио линк" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"пример http://example.com/audio.mp3 (доколку е празно, го користи ресурс " +"линкот)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Вашиот браузер не го подржува аудиозаписот. Но не се грижете, " +"можете да го спуштите " + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ресурсот не е пронајден" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Не сте овластени да пристапите на оваа страна" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завршено" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Во тек" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Се испраќа" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Грешка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Сè уште не е прикачено" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Прикачи во податочно складиште" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Грешка при прикачување:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Грешка:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Трага на грешка:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последно ажуриран" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Никогаш" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Дневник на прикачување" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Детали" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Крај на дневник" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Податочно складиште" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Ресурсот не е пронајден во податочното складиште" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Зачуван е Речникот на податоци. Секоја промена на типот на податок ќе се " +"рефлектира кога ресурсот е повторно прикачен во податочното складиште." + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Податоците не се валидни: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ресурсот \"{0}\" не е пронајден." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Корисникот {0} не е овластен да го ажурира ресурсот {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN API за податоци" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Пристапете до податоците во ресурс преку веб API со моќна поддршка за " +"кверирање" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Дополнителни информации во главната документација на CKAN API за податоци и " +"податочното складиште.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Крајни точки" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"До API-то за податоци може да се пристапи преку следните акции на CKAN API-" +"то за акции." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Креирајте" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Ажурирајте / Внесете" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Квери" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Квери (преку SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Кверирање" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Пример за квери (првите 5 резултати)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Пример за квери (резултати кои содржат 'јован')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Пример за квери (преку SQL израз)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Пример: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Едноставно AJAX (JSONP) барање до API-то за податоци користејќи jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Пример: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Зачувајте" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Поле {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Променете тип" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Опис" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Речник на податоци" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колона" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Тип" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Се вчитува..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API за податоци" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Табела" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Прилагодлив екран" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Прикажете колони" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "Тест конфигурација" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "Приспособливо поле Опаѓачки" + +#: ckan/templates/group/read.html:17 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 "Популарни" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Овој текст не е преведен" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Оваа група нема опис" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} податочен сет" +msgstr[1] "{num} податочни сетови" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 податочни сетови" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Алатката за приказ на податоци во CKAN има многу моќни одлики" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Следбеници" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Секунда" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Минута" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Час" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Ден" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Истекува во" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Единици" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Истекува на" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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 "" +"пр. https://sajt.com/slika.jpg (доколку е празно се користи линк до " +"ресурсот)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Прегледувач на податоци" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "График" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Мапа" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "грешка при вчитување на приказ" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Не може да се вчита приказ" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "Податочното складиште врати грешка" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Податочното прокси врати грешка" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Мрежа" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "пр: 0" + +#: 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 "пр: 100" + +#: 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 "Група (Оска 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Серија (Оска 2)" + +#: 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 "Поле за GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Невалиден УРЛ" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Топ оценети податочни сетови" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Просечна оцена" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Број на оцени" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Нема оцени" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Најголеми групи" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Број на податочни сетови" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Нема групи" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Топ тагови" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Име на таг" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Број на податочни сетови" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Корисници кои креираат најмногу податочни сетови" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Корисник" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Мени за статистика" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Најмногу променети податочни сетови" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Текст" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" +"Предизвикана е греша за време на АЈАХ повикот. Не може да се вчита прегледот" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Видео" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Видео УРЛ" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"пример http://example.com/video.mpeg (доколку е празно се користи ресурс " +"урл)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Се извинуваме, вашиот прелистувач не подржува вгнездени видеа, но не се " +"грижете, можете да го " +"спуштитеи да го гледате на вашиот омилен видео плеер" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" +"пр. https://sajt.com (доколку остани празно се користи линк до ресурсот)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Вашиот прелистувач не поддржува iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Не е пронајдена функција за авторизација: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Администратор" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Уредувач" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Член" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Потребно е да бидете систем администратор за да администрирате." + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Наслов на сајтот" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Стил" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Таг линија на сајтот" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Таг лого на сајтот" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "За" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "За страницата текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Интро текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Текст на насловна страна" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Приспособлив CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Приспособлив CSS вметнат во хедерот на страната" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Насловна страна" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Не може да се исчисти податочниот сет %s затоа што поврзаната ревизија %s " +"вклучува податочни сетови кои не се избришани %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Грешка при чистење на ревизија %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Чистењето е завршено" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Акцијата не е имплементирана." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Пристапот е одбиен" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Не е пронајдено" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Лошо барање" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Името на акцијата не е познато: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON грешка: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Погрешни податоци во барање: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Групата не е пронајдена" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Организацијата не е пронајдена" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Погрешен тип на група" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Организации" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Групи" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Тагови" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Формати" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Лиценци" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Корисникот %r не е овластен да го променува %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Не сте овластени да извршите масовно ажурирање" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Не сте овластени за да креирате група" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Грешка при интегритет" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Корисникот %r не е овластен да ги променува %s овластувањата" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Не сте овластени да ја избришете групата %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Организацијата е избришана." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Групата е избришана." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s е избришана." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Корисникот %r не е овластен да прави промени во членовите на %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Не сте овластени за да креирате %s членови во групата." + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Не сте овластени за да го додадете членот во групата %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Не сте овластени за да избришете %s членови во групата." + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Членот на групата е избришан." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Изберете две ревизии пред да направите споредба." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Историја на ревизија во CKAN група" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Последни промени во CKAN група:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Порака од дневник:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Сега ја/го следите {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Веќе не ја/го следите {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Не сте овластени за да ги погледнете следбениците %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Овај сајт е моментално недостапен. Базата на податоци не е иницијализирана." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Ве молиме ажурирајте го Вашиот профил и додадете ја " +"вашата е-маил адреса." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s ја користи Вашата е-маил адреса доколку е потребно да ја ресетирате " +"Вашата лозинка." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Невалидно пребарување: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметарот \"{parameter_name}\" не е цел број" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Податочниот сет не е пронајден" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Невалиден формат за ревизија: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Прегледување на податочни сетови од тип \"{package_type}\" не е поддржано " +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Не сте овластени за да го погледнете податочниот сет %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Историја на ревизија на податочен сет во CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Скорешни промени во податочен сет во CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Не сте овластени за да креирате податочен сет" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Не сте овластени за да правите промени во овој ресурс" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Не сте овластени за да го ажурирате податочниот сет" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Податочниот сет {id} не може да биде пронајден." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Мора да додадете барем еден ресурс." + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Не сте овластени за да креирате ресурс" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Не сте овластени за да креирате ресурс за овој податочен сет." + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Не може да се додаде податочниот сет во индексот за пребарување." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Не може да се ажурира индексот за пребарување." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Податочниот сет е избришан." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Не сте овластени за да го избришете податочниот сет %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ресурсот е избришан." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Не сте овластени за да го избришете ресурсот %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Приказот за ресурсот не е пронајден" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Податоците за ресурсот не се пронајдени." + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Не е достапно преземање" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Не сте овластени за да го прочитате податочниот сет %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Не сте овластени за да го погледнете ресурсот%s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Не сте овластени за да го промените ресурсот" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Приказот не е пронајден" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Типот за приказот не е пронајден" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Лоши податоци за приказ на ресурс" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Приказот за ресурсот не е обезбеден" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Преглед не е дефиниран." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Корисникот не е пронајден" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Не сте овластени за да се регистрирате како корисник." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Не сте овластени за да креирате корисник" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Не сте овластени за да го избришете корисникот со ИД \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Нема назначено корисник" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Не сте овластени за да го промените корисникот %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Профилот е ажуриран" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Не сте овластени за да го креирате корисникот %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha не е точна. Ве молиме обидете се повторно." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Корисникот \"%s\" е сега регистриран, но сè уште сте најавени како \"%s\" " +"од претходно" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Не сте овластени за да го промените корисникот." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Внесената лозинка е погрешна" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Стара лозинка" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Погрешна лозинка" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Најавата е неуспешна. Погрешно корисничко има или лозинка." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Не сте овластени да побарате ресетирање на лозинката." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "Емаил е задолжителен" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Грешка при испраќање на емаил. Обидете се повторно подоцна или контактирајте" +" го администраторот за помош." + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Линк за ресетирање е испратен на вашиот емаил (освен доколку специфицираниот" +" корисник не постои)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Не сте овластени да ја ресетирате лозинката." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Невалиден клуч за ресетирање. Обидете се повторно." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Вашата лозинка е ресетирана." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Вашата лозинка мода да биде 4 карактери или подолга." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Лозинките што ги внесовте не се совпаѓаат." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Мора да наведете лозинка." + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Елемент за следење не е пронајден," + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} не е пронајден." + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Сè" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Види" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} нова активност од {site_title}" +msgstr[1] "{n} нови активности од {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Во моментот" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} бајтови" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} КиБ" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} МиБ" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} ГиБ" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} ТиБ" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}к" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}М" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}Г" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}Т" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}П" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}Е" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}З" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Ѕ" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Непознато" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Неименуван ресурс" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Креирајте нов податочен сет." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Променети ресурси." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Променети подесувања." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} преглед" +msgstr[1] "{number} прегледи" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} скорешен преглед" +msgstr[1] "{number} скорешни прегледи" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Не постои достапна електронска адреса на примачот!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "организација" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Недостасува вредност" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Полето за внесување %(name)sне беше очекувано" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Ве молиме внесете вредност во цел број" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Вредноста треба да биде уникод." + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Пакетот со ресурс(и) е невалиден." + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Додатоци" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Вокабуларот за тагови %s не постои" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Податочен сет" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Не може да се обработи како валиден JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Организација мора да се обезбеди" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "Не можете да го префрлите овој податочен сет во друга организација" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Организацијата не постои" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Неможете да додадете податочен сет кон оваа организација" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Погрешен број" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Мора да биде природен број" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Мора да биде позитивен број" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Форматот за датум е погрешен." + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Линкови не се дозволени во log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "ИД на податочниот сет веќе постои" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ресурс" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Тоа име на група или ИД веќе постои." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Тип на активност" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Имињата мора да се текстуални" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Името неможе да се употреби" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Мора да биде најмалку %s карактери долго" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Името мора да биде најмногу %i карактери долго" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "Мора да бидат мали алфанумерички карактери (ascii) и овие симболи: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Овој линк е веќе во употреба." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Должината на името \"%s\" мора да биде минимум %s " + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Должината на името \"%s\" мора да е максимум %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Верзијата мора да биде најмногу %i карактери долга" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Копија на клуч “%s“" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Името на групата веќе постои во базата на податоци" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Должината на тагот “%s“ е помала од најмалата дозволена од %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Должината на тагот “%s“ е поголем од најголемата дозволена од %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Тагот “%s“ мора да биде од алфанумерички карактери или од симболите: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Тагот “%s“ мора да биде со големи букви" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Корисничките имиња мора да се текстуални" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Тоа име за најавување не е достапно." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Тоа име за логирање неможе да биде променето." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Ве молиме внесете ги двете лозинки" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Лозинките мора да бидат текстуални" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Вашата лозинка мора да биде од 8 карактери или подолга" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Лозинките кои ги внесовте не се совпаѓаат" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Уредувањето не е дозволено бидејќи изгледа како спам. Ве молиме избегнувајте" +" линкови во вашиот опис." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Името мора да биде намалку %s карактери долго" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Името на вокабуларот веќе постои." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Не може да се промени вредноста на клучот од %s на %s. Овој клуч е само за " +"читање." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Вокабуларот за тагот не е пронајден." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Тагот %s не припаѓа на вокабуларот %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Тагот нема име" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Тагот %s веќе припаѓа на вокабуларот %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Ве молиме обезбедете валиден линк" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "улогата не постои." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Податочниите сетови без организација неможат да бидат приватни." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Не е листа" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Не е текст" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Овој родител ќе создаде јамка во хиерархијата" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" и \"filter_values\" не треба да бидат со иста должина" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" е задолжително кога \"filter_values\" е пополнето" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" е задолжително кога \"filter_fields\" е пополнето" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Постои поле во шемата со истото име" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Електронската адреса {email} не е во валиден формат" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Мора да биде дикт" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "Овој емаил '{email}' припаѓа на друг корисник." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "Вредноста мора да биде една од {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "Вредноста мора да биде валиден JSON објект" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "Не може да се прасрира вредноста како валиден JSON објект" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Недостасува вредност" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Се обидувате да креирате организација како група" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Мора да обезбедите ИД или име за податочниот сет (parameter \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Мора да обезбедите оцена (параметар \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Оцената мора да биде цел број." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Оценувањето мора да биде меѓу %i и %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Грешка при испраќањето на електронска порака за покана, корисникот не е " +"креиран: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Мора да бидете најавени за да следите корисници" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Неможете да се следите самите себе" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Веќе го/ја следите {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Мора да бидете логирани за да следите податочен сет." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Корисникот {username} не постои." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Мора да бидете најавени за да следите група." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" +"Организацијата неможе да биде избришана додека поседува податочни сетови." + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "ИД не е во податоците." + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Вокабуларот %s неможе да биде пронајден" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Тагот “%s“ неможе да биде пронајден" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Мора да бидете најавени за да одследите нешто" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Вие не го/ја следите {0}. " + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Ресурсот не е пронајден." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не наведувајте дали користите \"квери\" параметар" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Мора да е/се : пар(ови)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Полето \"{field}\" не е препознато во resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Податочниот сет не е пронајден." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus не е пронајден." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Организацијата не е пронајдена." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Корисникот %s не е овластен да креира податочни сетови" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Корисникот %s не е овластен да ги променува овие групи" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Корисникот %s не е овластен да додава податочни сетови за оваа организација" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"ИД за податочниот сет не е обезбеден, неможе да се провери овласувањето" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Податочен сет не е креиран за овој ресурс, неможе да се провери " +"овластувањето" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "Корисникот %s не е овластен да креира ресурси за податочниот сет %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Корисникот %s не е овластен да ги променува овие податочни сетови" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Корисникот %s не е овластен да креира групи" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Корисникот %s не е овластен да креира организации" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Корисникот {user} не е овластен да креира корисници преку API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Не сте овластени да креирате корисници" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Групата не е пронајдена." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Корисникот %s не е овластен да додава членови" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Корисникот %s не е овластен да ја промени групата %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Корисникот %s не е овластен да го избрише ресурсот %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Приказот за ресурсот не е пронајден, неможе да се провери овластувањето." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Корисникот %s не е овластен да ја избрише врската %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Корисникот %s не е овластен да избрише групи." + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Корисникот %s не е овластен да избрише група %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Корисникот %s не е овластен да избрише организации" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Корисникот %s не е овластен да избрише организација %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Корисникот %s не е овластен да избрише task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Не сте овластени" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Корисникот %s не е овластен да ги чита овие податочни сетови" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Корисникот %s не е овластен да го прочита податочниот сет %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Корисникот %s не е овластен да го прочита ресурсот %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Корисникот %s не е овластен да ја прочита групата %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Мора да се најавени за да пристапите кон контролната табла." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Корисникот %sне е овластен да го промени податочниот сет %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Корисникот%sне е овластен да го промени ресурсот %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Корисникот %sне е овластен да ја менува состојбата на пакетот %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Корисникот %sне е овластен да ја менува организацијата %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Корисникот%sне е овластен да ја менува состојбата на групата %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr " Корисникот %s не е овластен да ги менува дозволите на групата %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Мора да бидете најавени за да го менувате корисникот" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Корисникот \"%s\" не е овластен да прави промени на корисникот \"%s\"" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Корисникот {0} не е овластен да го ажурира корисникот {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Корисникот%sне е овластен да ја менува состојбата на ревизијата" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Корисникот %s не е овластен да ја ажурира \"task_status\" табелата" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Кориникот %sне е овластен да ја ажурира \"term_translation\" табелата" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Лиценцата не е наведена" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Јавен Домен Посветеност и Лиценца (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Лиценца за Отворена Датабаза (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Лиценца за Наведување извор" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Наведување извор" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Наведување извор Сподели-Слично" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Бесплатна лиценца за документација" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Друго (Отворено)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Друго (Јавен домен)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Друго (Наведување извор)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "Велика Британија Отворена Владина Лиценца (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Не-комерцијално (Секое)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Друго (Не-комерцијално)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Друго (Не отворено)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "зависи од %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "е зависност од %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "произлегува од %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "има деривација %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "се поврзува со %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "е поврзано од %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "е дете на %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "е родител на %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "има брат/сестра %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Нема API податоци да се вчитаат за овој ресурс" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Не успеаа да се вчитаат информациите за API на податоци" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Започнете да пишувате…" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Не се пронајдени совпаѓања" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Влезот е премногу краток, мора да биде најмалку еден знак" +msgstr[1] "Влезот е премногу краток, мора да биде најмалку %(num)d знак" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Во овој формулар има незачувани модификации" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Ве молиме потврдете ја активноста" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Дали сте сигурни дека сакате да ја извршите оваа активност?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Потврди" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Откажете" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Одследете" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Следете" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Линк" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Поврзете со линк на интернет (исто така можете да поврзете со API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Прикачете" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Избриши" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Прикачете датотека на вашиот компјутер" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "УРЛ" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Датотека" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Распоред на зачувување" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Се зачувува..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Прикачете датотека" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Се појави грешка" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Не може да се прикачи датотеката" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Не може да се автентицира прикачувањето" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ресурсот е прикачен" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Не може да се добијат податоци за прикачената датотека" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Додади филтер" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Изберете поле" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Уредете" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Прикажи повеке" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Сокријте" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Грешка %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "За {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Асоцијација" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Поддржано одCKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Поставки на системски администратор" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Видете профил" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Контролна табла (%(num)dнова ставка)" +msgstr[1] "Контролна табла (%(num)d нови ставки)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Контролна табла" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Одјавете се" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Најавете се" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Регистрирајте се" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Податочни сетови" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Пребарувајте податочни сетови" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Пребарувај" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Пребарувај податочни сетови" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Прескокнете до содржина" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Корпа" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Лого на сајтот" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Дали сте сигурни дека сакате да ја ресетирате конфигурацијата?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Ресетирај" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Ажурирајте ја конфигурацијата" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN опции за конфигурација" + +#: ckan/templates/admin/config.html:52 +#, 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 инстанца. " +"Се појавува на различни места низ CKAN.

Стил:Изберете" +" од листата на едноставни варијации на главната шема на бои за да добиете " +"многу брза прилагодлива тема да работи.

Таг лого на " +"сајтот:Ова е логото што се појавува во насловот на сите шаблони на " +"CKAN инстанци

ЗаОвој текст ќе се појави на овие CKAN " +"инстанци страницата за.

Воведен " +"текст:Овој текст ќе се појави на овие CKAN инстанци на главна страница како добредојде на " +"посетителите.

Прилагоден CSS:Ова е блок од CSS што се" +" појавува во<head>тагот од секоја страница. Ако сакате да" +" ги прилагодите шаблоните целосно, препорачуваме читање на документацијата

Главна " +"страница:Ова е за избор на предефиниран изглед за модулите кои се " +"појавуваат на вашата почетна страница

" + +#: 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" + +#: 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 инстанца. Продолжете со внимание!

а упатства за користење на " +"функциите на системскиот администратор, видете го CKAN водичот за системски " +"администратор

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Потврдете го бришењето" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Притиснете тука за повеќе информации." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Нема управувач за тој податочен тип: %(type)s" + +#: 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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Додадете група" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Форма за група" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Дали сте сигурни дека сакате да ја избришете групата - {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 "Дали сте сигурни дека сакате да го избришете членот - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Додадете член" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Постоечки корисник" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Доколку сакате да додадете постоечки корисник, пребарајте го нивното " +"корисничко име подолу." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "или" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Нов корисник" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Доколку сакате да поканите нов корисник, внесете ја неговата електронска " +"пошта." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Улога" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Дали сте сигурни дека сакате да го избришете овој член?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Избришете" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Што претставуваат улоги?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Пребарувајте податочни сетови..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Податочни сетови во група : {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Име" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моја група" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Кратка информација за мојата група..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Дали сте сигурни дека сакате да ја избришете оваа група?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Зачувајте ја групата" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Приказ {name}" + +#: 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 групи за да креирате и управувате со колекција од " +"податочни сетови. Ова може да овозможи каталогно подредување на податочни " +"сетови за одреден проект или тим, или за одредена тема, или како едноставен " +"начин да овозможите на луѓето да ги пронајдат и пребараат вашите лично " +"објавени податочни сетови." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Избришано" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 е водечка портал платформа за отворени податоци, во " +"светот.

CKAN е комплетно софтверско решение кое овозможува пристап до " +"податоци и нивно користење - преку обезбедување на алатки за поедноставување" +" на објавување, споделување, наоѓање и користење на податоци (вклучувајќи " +"складирање на податоци и обезбедување на цврсти API-ја на податоци ). CKAN е" +" наменета за издавачи на податоци (национални и регионални влади, компании и" +" организации) кои сакаат да ги направат своите податоци отворени и " +"достапни.

CKAN се користи од страна на влади и кориснички групи низ " +"целиот свет и поддржува различни официјални и општи портали за податоци, " +"вклучувајќи портали за локална, национална и меѓународна влада, како што е " +"Велика Британија data.gov.uk и Европската" +" Унија publicdata.eu, Бразилската dados.gov.br, Холандски владини портали, " +"како и градски и општински локации во САД, Велика Британија, Аргентина, " +"Финска и на други места.

CKAN:http://ckan.org/
CKAN Тура:http://ckan.org/tour/
Преглед на " +"карактеристики:http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Добродојдовте во 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 "" +"Ова е убав воведен дел за CKAN или за сајтот воопшто. Ние немаме никаков " +"текст за тука, но наскоро ќе имаме " + +#: 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 "{0} статистики" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "податочен сет" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "податочни сетови" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "организации" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "групи" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Ова поле е задолжително" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Можете да користите Означи форматирањетука" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Вредност" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Приспособливо" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Формата содржи невалидни записи:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Задолжително поле" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Линк до слика" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Исчистете го прикачувањето" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "пронајдено за \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Податочни сетови не беа пронајдени за \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Направете јавно" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Направете приватно" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Скица" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Приватно" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Дали сте сигурни дека саката да ја избришете организацијата - {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 "Промена на организацијата" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Корисничко име" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Адреса на е-пошта" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Ажурирајте член" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} член" +msgstr[1] "{count} членови" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Податочни сетови во организација: {group}" + +#: 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 организациите се користат за креирање, управување и објавување на " +"збирки на податочни сетови. Корисниците можат да имаат различни улоги во " +"рамките на една организација, во зависност од нивното ниво на овластување за" +" креирање, уредување и објавување" + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Дали сте сигурни дека сакате да ја избришете оваа организација? Забелешка*: " +"Бришењето не може да се изврши додека јавните или приватните податочни " +"сетови припаѓаат на оваа организација." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Зачувајте организација" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Видете {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 податочен сет претставува колекција од ресурси (како датотеки), заедно " +"со опис и други информации, до постојан линк. Податочните сетови се она што " +"корисниците го гледаат кога бараат податоци." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Промени" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "" +"Дали сте сигурни дека сакате да го избришете податочниот сет - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Дали сте сигурни дека сакате да го избришете ресурсот - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Приказ на податочен сет" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Промена на мета податоци" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Преглед" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"Прегледите на Data Explorer може да бидат бавни и несигурни, освен ако не е " +"овозможена екстензијата за DataStore. За повеќе информации, ве молиме " +"погледнете Документација на Data Explorer" + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Додадете" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Промена на ресурс" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Прикази" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Завршна точка" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Одете до ресурс" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Преземете" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "линк" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Извор:%(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Сеуште не се креирани прикази за овој податочен сет." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Не ги гледате приказите кои што ги очекувавте?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Еве неколку причини зошто можеби не ги гледате очекуваните приказиЧ" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Не е креиран соодветен приказ за овој ресурс" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Администраторите на страната можеби не ги овозможиле соодветните додатоци за" +" приказ" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Ако за гледање е потребен DataStore, приклучокот за DataStore можеби не е " +"овозможен, или податоците можеби не биле турнати до DataStore, или DataStore" +" уште не завршил со обработка на податоците" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Дополнителни информации" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Последно ажурирани податоци" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "непознато" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Последно ажурирани мета податоци" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Креирано" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Формат" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Лиценца" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Нов приказ" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Овој ресурс нема прикази" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Додадете нов ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Овој податочен сет не содржи податоци,зошто не додадете?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API документи" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "целосно {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 "" +"До овој регистар можете исто така да пристапите со помош на %(api_link)s " +"(види %(api_doc_link)s) или спуштете го %(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 "" +"До овој регистар можете исто така да пристапите со помош на " +"%(api_link)s(види %(api_doc_link)s)" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Состојба" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Последно ажурирано" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Пред да креирате податочен сет потребно е да креирате организација." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Креирајте нова организација" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Не постои организација на која што можете да го додадете податочниот сет." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Побарајте од систем администраторот да креира организација пред да " +"продолжите понатаму." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Дефиниции за лиценцата и дополнителни информации може да се најдат на opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Организација" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Нема организација" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Видливост" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Јавно" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "Следно: Додадете податоци" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Јован Јовановски" + +#: 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 "joe@example.com" + +#: 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:26 +msgid "Data" +msgstr "Податоци" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "пр. Јануари 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Некои корисни белешки за податоците" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "пр. CSV, XML или JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Ова ќе биде впишано автоматски. Оставете празно по избор" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "пр. 05-06-2012" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Големина на датотека" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "пр. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "МИМЕ Тип" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "пр. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Дали сте сигурни дека сакате да го избришете овој ресурс?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Прегледи" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Зачувајте и додајте нов" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Истражи" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Повеќе информации" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Цел екран" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Вметни" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Овој приказ на ресурс не е достапен во моментот. " + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Вметни приказ на ресурс" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Можете да го копирате и залепите вметнатиот код во системот за управување со" +" податоци или блог софтвер кој поддржува чист HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Ширина" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Висина" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Код" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Приказ на ресурс" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Податоци и ресурси" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Додадете податочен сет" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Статус на Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Линк за следење" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Покажи повеќе {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Прикажи ги популарните {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Не се пронајдени {facet_type} кои се совпаѓаат со ова пребарување" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Дома" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Јазик" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Оди" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Лиценца не е обезбедена" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Податочниот сет ја задоволува отворената дефиниција." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Подреди според" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Филтрирај ги резултатите" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Ве молиме обидете се со ново пребарување

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} податочен сет пронајден за \"{query}\"" +msgstr[1] "{number} податочни сетови пронајдени за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Не се пронајдени податочни сетови за \"{query}\" " + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} податочен сет е пронајден" +msgstr[1] "{number} податочни сетови се пронајдени" + +#: 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] "{number} група пронајдена за \"{query}\"" +msgstr[1] "{number} групи пронајдени за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Не се пронајдени групи за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} пронајдена група" +msgstr[1] "{number} пронајдени групи" + +#: 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] "{number} организација пронајдена за \"{query}\"" +msgstr[1] "{number} организации пронајдени за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Не се пронајдени организации за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} организација е пронајдена" +msgstr[1] "{number} организации се пронајдени" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Електронска пошта" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "РСС" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} додаде таг {tag} на податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ја ажурираше групата {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ја ажурираше организацијата {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} го ажурираше податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} го ажурираше ресурсот {resource} во податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} го ажурираше својот профил" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ја избриша групата {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ја избриша организацијата {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} го избриша податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} го избриша ресурсот {resource} од податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} почна да го следи {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} почна да ја следи {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} почна да го/ја следи {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} ја креираше групата {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} ја креираше организацијата {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} го креираше податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} aго додаде ресурсот {resource} на податочниот сет {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} се пријави" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} го отстрани тагот {tag} од податочниот сет {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Пребарувај тагови" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 да знаат кои сте Вие и " +"што правите." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Промена на деталите" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Целосно име" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "пр. Јован Јовановски" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "пр. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Кратка информација за Вас" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Зачленете се за известувања преку електронска пошта" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Промена на лозинка" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Лозинка на систем администратор" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Лозинка" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Потврдете ја лозинката" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Дали сте сигурни дека сакате да го избришете овој корисник?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Дали сте сигурни дека саката да регенерирате нов API клуч?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Регенерирај API клуч" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Веќе сте најавени како {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Одјавете се" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запамети ме" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Веќе сте логирани" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Потребно е да се одјавите пред да можете да се најавите со друга сметка." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Креирајте сметка" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Ресетирајте ја Вашата лозинка" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Ресетирање на лозинката" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" +"Вие исто така можете да го промените вашето корисничко име. Истото нема да " +"може да биде променето подоцна." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Ажурирање на лозинка" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Како ова функционира?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Едноставно внесете нова лозинка и Вашата сметка ке биде ажурирана" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Корисникот не креирал податочни сетови." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Недостасува биографија" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Корисникот нема биографија." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Ова значи дека само Вие можете да го видите ова" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Член од" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API клуч" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Ресетирајте ја Вашата лозинка" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Токен" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Последен пристап" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Пребарувај корисници" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "Корисникот е одстранет од соработници" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Корисникот е додаден во соработници" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Вашата лозинка мора да е 8 карактери или повеќе." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Не е дозволено пренасочување кон надворешен сајт." diff --git a/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..d18e350e61e --- /dev/null +++ b/ckan/i18n/mn_MN/LC_MESSAGES/ckan.po @@ -0,0 +1,5151 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Mongolian (Mongolia) (https://www.transifex.com/okfn/teams/11162/mn_MN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: mn_MN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Нөөц олдсонгүй" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Энэ хуудсыг үзэх эрхгүй байна " + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Бүрэн дууссан" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Хүлээгдэж буй" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Илгээж байна" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Алдаа" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Хараахан хуулаагүй байна" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Өгөгдлийн нөөцөд хуулах" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Серверт хуулахад гарсан алдаа:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Алдаа:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Алдааны шатлал:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Төлөв" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Сүүлд шинэчлэгдсэн" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Хэзээ ч үгүй" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Бүртгэл хуулах" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Дэлгэрэнгүй" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Бүртгэлийн төгсгөл" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Өгөгдлийн агуулах" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Өгөгдлийн агуулах нөөц олдсонгүй" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Өгөгдлийн толь хадгалагдсан. Нөөцийг дараагийн удаа өгөгдлийн зах дээр " +"байршуулах үед аливаа төрлийн шинэ тодорхойлолтууд үйлчилнэ." + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "\"{0}\" нөөц олдсонгүй." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Хэрэглэгч {0} нөөц {1}-г шинэчлэх эрхгүй байна" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN өгөгдлийн API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Илүү нарийвчилсан хайлт хийх боломжтой веб API-аар нөөц өгөгдөлд хандах" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +" Бусад мэдээллүүд нь CKAN Өгөгдлийг API болон Өгөгдлийн захын баримт " +"бичигт.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Төгсгөлийн цэгүүд" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "API-н өгөгдөлд CKAN болон API-н үйлдлээр дамжиж хандах боломжтой." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Үүсгэх" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Шинэчлэх/ Оруулах" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Асуулга" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Асуулга (SQL-ээр)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Асуулгыг асууж байна" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Хүсэлтийн жишээ (эхний 5 үр дүн)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Хүсэлтийн жишээ ('jones'-г агуулсан үр дүн)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Хайлтын агуулгын жишээ (SQL загвараар)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Жишээ нь: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "jQuery ашиглан өгөгдлийн API-д хандах энгийн ajax хүсэлт (JSONP)." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Жишээ нь: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Хадгалах" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Талбар {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "шинэ тодорхойлолт" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Тайлбар" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Өгөгдлийн толь бичиг" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Багана" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Төрөл" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Ачааллаж байна..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Өгөгдлийн API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Хүснэгт" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Хариу үйлдэлт дэлгэц" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Баганыг харуулах" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "Туршилтын тохиргоо" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "Дурын талбараар буурахаар" + +#: ckan/templates/group/read.html:17 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 "Түгээмэл" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Энэ бол орчуулагдаагүй бичвэр" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Бүлэг танилцуулгагүй байна" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Өгөгдлийн бүрдэл" +msgstr[1] "{num} Өгөгдлийн бүрдэл" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Өгөгдлийн бүрдэл" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN-ы өгөгдөл урьдчилан харах хэрэгсэл нь олон хүчирхэг боломжуудтай" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Дагагчид" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Материалууд" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Зураг" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Зургийн URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "жишээ нь, http://example.com/image.jpg" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Өгөгдлийн хөтөч" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Граф" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Газрын зураг" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "харагдацыг ачаалах үеийн алдаа" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Харагдацыг ачаалж чадсангүй" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "Өгөгдлийн нөөц алдаа буцаалаа" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Өгөгдлийн прокси алдаа буцаалаа" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Хүснэгт" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "жишээ нь, 0" + +#: 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 "жишээ нь, 100" + +#: 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 "Бүлэг (Тэнхлэг 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Цуврал (Тэнхлэг 2)" + +#: 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 "GeoJSON талбар" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Өндөр үнэлгээтэй өгөгдлийн бүрдлүүд" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Дундаж үнэлгээ" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Үнэлгээ хийгдсэн тоо" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Үнэлгээ байхгүй" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Хамгийн том бүлгүүд" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Бүлэг" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Өгөгдлийн бүрдлүүд" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Бүлэг байхгүй" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Шилдэг шошгууд" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Шошгын нэр" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Өгөгдлийн бүрдлийн тоо" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Өгөгдлийн ихэнх бүрдлийг үүсгэсэн хэрэглэгчид" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Хэрэглэгч" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Статистикийн цэс" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Их засварлагдсан өгөгдлийн бүрдлүүд" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Бичвэр" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Вэбсайт" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Вэб хуудасны URL" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "жишээ нь, http://example.com" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Таны интернет хөтөч iframes -г дэмжих боломжгүй." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Нэвтрэх үйлдэл олдсонгүй: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Админ" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Засварлагч" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Гишүүн" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Системийг удирдахын тулд администратор болох хэрэгтэй" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Сайтын гарчиг" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Загвар" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Сайтын шошгоны зурвас" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Сайтын шошгоны лого" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Танилцуулга" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Танилцуулга хуудасны текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Танилцуулга текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Нүүр хуудасны текст" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Өөрчилсөн CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Хуудасны толгой хэсэгт ѳѳрчлѳх боломжтой css орсон " + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Нүүр хуудас" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Нэгдсэн хяналт %s устгагдаж болохгүй %s багцууд байна тиймээс %s багцыг " +"устгаж болохгүй" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "%s-г цэвэрлэхэд гарсан алдаа: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Бүрэн цэвэрлэх" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Үйлдлийг гүйцэтгэсэнгүй" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Нэвтрэх боломжгүй" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Олдсонгүй" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Буруу хүсэлт" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Үл таних үйлдэл: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Алдаа: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Өгөгдлийн буруу хүсэлт: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Бүлэг олдсонгүй" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Байгууллага олдсонгүй" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Буруу бүлгийн төрөл" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Байгууллагууд" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Бүлгүүд" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Шошго" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Форматууд" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Ашиглах зөвшөөрлүүд" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "%r хэрэглэгч %s -г өөрчлөх эрхгүй байна." + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Багцаар нь шинэчлэх боломжгүй." + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Бүлэг үүсгэх эрхгүй байна" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Ил тод алдаа" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Хэрэглэгч %r %s - ийн эрхийг өөрчлөх эрхгүй байна." + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "%s бүлгийг устгах эрх байхгүй" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Байгууллагыг устгасан." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Бүлэг устсан байна." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s утслаа." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "%r хэрэглэгч %s гишүүдийг засах зөвшөөрөлгүй байна" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr " %s бүлгийн гишүүд үүсгэх эрх байхгүй" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "%s бүлэгт шинээр гишүүн нэмэх боломжгүй." + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "%s бүлгийн гишүүдийг устгах боломжгүй." + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Бүлгийн гишүүн устгагдсан байна" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Харьцуулалт хийх 2 хувилбарыг сонгоно уу." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Group Засвар хийсэн түүх" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN бүлэгт шинээр нэмэгдсэн өөрчлөлтүүд:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Бүртгэлийн зурвас:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Та {0} хүн дагаж байгаа " + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Та {0} хүн дагахаа болилоо" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Дагагчдыг харах эрхгүй байна %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Тус сайт одоогоор хаалттай байна. Өгөгдлийн сангийн тохиргоо хийгдээгүй." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Та өөрийн мэдээлэл болон мэйл хаягаа шинэчилнэ үү." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "Та нууц үгээ шиэнчлэх хэрэгтэй бол %s таны имэйл хаягийг ашиглана." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "буруу хайлтын бичлэг: {алдааны_мэдээлэл}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметр \"{parameter_name}\" нь натурал тоо биш байна." + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Өгөгдлийн бүрдэл олдсонгүй" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Засварын хэлбэр таарахгүй байна: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"\"{package_type}\" төрлийн өгөгдлийн бүрдлийг харах ({file_!r})-д боломжгүй." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "%s багцийг унших эрхгүй байна." + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN өгөгдлийн бүрдлийн засварын түүх" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN өгөгдлийн бүрдэлд сүүлд нэмэгдсэн өөрчлөлтүүд:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Пакет үүсгэх эрх байхгүй байна" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Энэ нөөцийг өөрчлөх эрх байхгүй байна" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Өгөгдлийн бүрдлийг шинэчлэх эрхгүй байна." + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Өгөгдлийн бүрдэл {id} олдсонгүй." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Та дор хаяж нэг өгөгдлийн нөөц нэмэх хэрэгтэй " + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Нөөц үүсгэх эрх байхгүй байна" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Энэ багцад нөөц үүсгэхийг зөвшөөрөөгүй байна" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Хайлтын индексэд багц нэмэх боломжгүй байна." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Хайлтын индексийг шинэчилэх боломжгүй байна." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Өгөгдлийн бүрдэл устсан" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "%s энэ багцийг устгах эрхгүй байна" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Нөөц устсан байна." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "%s нөөцийг устгах эрхгүй байна " + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Нөөцийн харагдац олдсонгүй" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Нөөцийн өгөгдөл олдсонгүй" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Татаж авах боломжгүй" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "%s өгөгдлийн бүрдлийг унших эрхгүй байна" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "%s нөөцийг унших эрхгүй байна " + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "нөөцийг засварлах эрхгүй байна" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Харагдац олдсонгүй" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Харагдацын төрөл олдсонгүй" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Нөөцийн харагдацын буруу өгөгдөл" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Нөөцийн харагдацыг өгөөгүй" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Урьдчилж харах боломжгүй." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Хэрэглэгч олдсонгүй." + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Хэрэглэгчээр бүртгэх эрхгүй байна." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Хэрэглэгч үүсгэх эрхгүй байна." + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr " \"{user_id}\" дугаартай хэрэглэгчийг устгах эрх байхгүй байна." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Хэрэглэгч тодорхойлогдоогүй." + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "%s хэрэглэгчийг өөрчлөх эрхгүй байна." + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Хувийн мэдээлэл шинэчлэгдлээ" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "%s хэрэглэгчийг үүсгэх эрхгүй байна." + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Буруу оролт. Дахин оролдоно уу." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"\"%s\" хэрэглэгч бүртгэгдсэн боловч өмнөх \"%s\" хэрэглэгчээр холбогдсон " +"хэвээор байна." + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Хэрэглэгчийн мэдээллийг өөрчлөх эрхгүй байна." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Оруулсан нууц үг буруу байна" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Хуучин нууц үг" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "буруу нууц үг" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Нэвтрэх боломжгүй. Хэрэглэгчийн нэр эсвэл нууц үг буруу байна" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Нууц үгийг шинэчлэх хүсэлт илгээх эрх байхгүй байна." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Нууц үгийг шинэчлэх эрхгүй байна." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Шинэчлэх түлхүүр үг тохирсонгүй. Дахин оролдоно уу?" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Таны нууц үг шинэчлэгдлээ." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Таны нууц үг багадаа 4 тэмдэгт байх ёстой" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Таны оруулсан нууц үг буруу байна." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Та нууц үгээ оруулна уу" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Дагалдах зүйл олдсонгүй" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} олдсонгүй" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Бүх зүйл" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Үзэх" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Дөнгөж сая" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} байт" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} килобайт" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} мегабайт" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} гигабайт" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} терабайт" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Тодорхой бус" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Нэргүй нөөц" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Шинэ өгөгдлийн бүрдэл үүслээ." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Шинэчлэгдсэн нөөц" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Засварлах тохиргоо" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} үзсэн" +msgstr[1] "{number} үзсэн" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} сүүлд үзсэн" +msgstr[1] "{number} сүүлд үзсэн" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Хүлээн авагчийн цахим шуудан байхгүй байна." + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "байгууллага" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "бүлэг" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Орхигдсон утга" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "%(name)s өгөгдөл нь оролтын талбарт тохирохгүй байна." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Бүхэл тоон утга оруулна уу" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Юникод бичвэр байх ёстой" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Багцын материал(ууд) тохирохгүй байна." + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Нэмэлтүүд" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Шошго үгс \"%s\" байхгүй байна" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Өгөгдлийн бүрдэл" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Тохирох JSON болгон хувиргах боломжгүй" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Байгууллагыг оруулах ёстой" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Ийм байгууллага байхгүй" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Та тус байгууллагад өгөгдлийн бүрдэл нэмэх боломжгүй" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Тохирохгүй бүхэл тоон утга" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Натурал тоо байх ёстой" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Эерэг бүхэл тоо байх ёстой" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Огнооны хэлбэр буруу" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Лог мессежэнд холбогдох хаягууд агуулагдах боломжгүй." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Өгөгдлийн бүрдлийн id аль хэдийнэ үүссэн байна" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Материал" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Ийм бүлэг эсвэл ID байхгүй байна." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Үйл ажиллагааны төрөл" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Нэрс нь тэмдэгтээс бүрдэх ёстой" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Энэ нэрийг ашиглах боломжгүй" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Багадаа %s тэмдэгт урттай байх ёстой" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Нэрийн урт хамгийн ихдээ %i тэмдэгт байх ёстой" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Үсгийн жижиг хэлбэрээр бичигдэх үсэг, тоон тэмдэгтүүд болон -_ зэрэг " +"тэмдэгтүүд байх ёстой" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Тус URL ашиглагдаж байна." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "\"%s\" нэрийн урт %s - с бага байна." + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "\"%s\" нэрийн урт %s -с хэтэрсэн байна." + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Шинэчилсэн хувилбарын урт хамгийн ихдээ %i тэмдэгттэй байх ёстой." + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Давхардсан түлхүүр \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr " Бүлгийн нэр өгөгдлийн санд өмнө нь үүссэн байна" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "\"%s\" шошгоны урт нь хамгийн багадаа байх ёстой %s-д хүрэхгүй байна" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "\"%s\" шошгоны урт нь хамгийн ихдээ байх ёстой %i-с хэтэрсэн байна." + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "\"%s шошго нь тоо, латин үсэг болон -_ тэмдэгтээс бүрдсэн байх ёстой." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "%s шошго нь том үсэг агуулж болохгүй" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Хэрэглэгчийн нэр тэмдэгт байх ёстой" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Тус хэрэглэгчийн холбогдох нэр боломжгүй байна." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Энэхүү нэвтрэх нэр өөрчлөгдөх боломжгүй" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Нууц үгийн 2 талбарыг бөглөнө үү" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Нууц үг тэмдэгтээс бүрдсэн байх ёстой." + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Таны нууц үгийн урт 8 эсвэл түүнээс их байна ёстой " + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Таны оруулсан нууц үг хоорондоо тохирохгүй байна" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Спэмээр ойлгогдож байгаа тул засварлах боломжгүй. Тайлбартаа хаягуудыг " +"оруулахгүй байна уу." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Нэрийн урт хамгийн багадаа %s тэмдэгт байх ёстой" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Тухайн үг ашиглагдаж байна." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"%s-н утгыг %s болгон өөрчлөх боломжгүй. Энэ нь зөвхөн унших боломжтой." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Шошго үг олдсонгүй" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "%s шошго %s үгтэй хамааралгүй." + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Шошгоны нэр байхгүй байна" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "%s шошго %s үгсийн сантай холбоотой" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Зөв URL оруулна уу." + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "ийм хэрэглэгчийн төрөл байхгүй байна." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Байгууллагад хамааралгүй өгөгдлийн бүрдэл хаалттай байх боломжгүй." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Жагсаалт биш байна" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Тэмдэгт биш байна" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Энэ эх сурвалж нь давталттай иерархи үүсгэнэ." + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" болон \"filter_values\" ижил урттай байх ёстой" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_values\" утгыг оруулсан бол \"filter_fields\" утга заавал байх ёстой" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_fields\" утга оруулсан бол \"filter_values\" утга заавал байх ёстой" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Ижил нэртэй талбар орсон байна" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "{email} и-мэйл буруу хэлбэртэй бичигдсэн байна" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Орхигдсон утга" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Байгууллагыг бүлэг болгон үүсгэх гэж байна." + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Та багцын дугаар эсвэл нэрийг оруулах шаардлагатай (параметр \"багц\")" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Та үнэлгээ оруулсан байх шаардлагатай (параметр\"үнэлгээ\")" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Үнэлгээ бүхэл тоон утгатай байх ёстой" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Үнэлгээ %i - с %i - н хооронд байх ёстой" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "Урих и-мэйл илгээхэд алдаа гарлаа, {0} хэрэглэгчийг үүсгэж чадсангүй" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Та хэрэглэгчдийг дагахын тулд нэвтрэх хэрэгтэй." + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Та өөрийгөө дагаж болохггүй." + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Та аль хэдийн дагаж байна {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Өгөгдлийн бүрдлийг дагахын тулд нэвтрэх ёстой." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr " {username} нэртэй хэрэглэгч олдсонгүй." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Та бүлэг дагахын тулд нэвтрэх хэрэгтэй." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "Байгууллага нь өгөгдлийн бүрдлүүд агуулж байгаа бол устахгүй" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "өгөгдөлд дугаар байхгүй байна" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "\"%s\" үгсийн сан олдсонгүй." + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "\"%s\" шошго олдсонгүй." + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" +"Та ямар нэгэн зүйлийг дагахаа болихын тулд нэвтэрсэн байх шаардлагатай." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Та дагаагүй байна {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Материал олдсонгүй" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr " \"query\" параметрыг ашиглаж байгаа бол битгий онцлог шинж тодорхойл" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr ": гэсэн хос(ууд) байх ёстой." + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "\"{field}\" талбар нь нөөцийн хайлтад танигдах боломжгүй." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Багц олдсонгүй" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Даалгаврын төлөв олдсонгүй" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Байгууллага олдсонгүй" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Хэрэглэгч %s нь багц үүсгэх эрхгүй." + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "%s хэрэглэгч тус бүлгүүдийг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "%s хэрэглэгч энэ байгуулагад өгөгдлийн бүрдэл нэмэх эрхгүй байна." + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Өгөгдлийн бүрдлийн дугаар байхгүй, зөвшөөрлийг шалгаж чадсангүй" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "Энэ нөөцөд тохирох багц олдсонгүй, auth -ийг шалгаж чадахгүй байна." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "%s хэрэглэгч %s өгөгдлийн бүрдэлд нөөц үүсгэх эрхгүй байна" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "%s хэрэглэгч эдгээр багцуудыг өөрчлөх эрхгүй байна." + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "%s хэрэглэгч бүлэг үүсгэх эрхгүй байна" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "%s хэрэглэгч байгууллага үүсгэх эрхгүй байна" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "{user} API-аар хэрэглэгчдийг үүсгэх эрхгүй." + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Хэрэглэгч үүсгэх эрхгүй байна." + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Бүлэг олдсонгүй." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "%s хэрэглэгч гишүүн нэмэх эрхгүй байна" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "%s хэрэглэгч %s бүлгийг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "%s хэрэглэгч %s материалыг устгах эрхгүй байна" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Нөөцийн харагдац олдсонгүй, зөвшөөрлийг шалгаж чадсангүй" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "%s хэрэглэгч %s хамаарлыг устгах эрхгүй байна." + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "%s хэрэглэгч бүлэг устгах эрхгүй байна" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "%s хэрэглэгч %s бүлэг устгах эрхгүй байна" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "%s хэрэглэгч байгууллага устгах эрхгүй байна" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "%s хэрэглэгч %s байгууллагыг устгах эрхгүй байна" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "%s хэрэглэгч task_status -г устгах эрхгүй байна" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Зөвшөөрөгдөөгүй байна." + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "%s хэрэглэгч нь эдгээр багцуудыг унших эрхгүй байна." + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Хэрэглэгч %s нь %s багцыг унших эрхгүй байна." + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "%s хэрэглэгч %s материалыг унших эрхгүй байна" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "%s хэрэглэгч %s бүлгийг унших эрхгүй байна" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Та өөрийн хяналтын самбартаа хандахын тулд нэвтэрсэн байх шаардлагатай." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "%s хэрэглэгч нь %s багцыг өөрчлөх эрхгүй байна." + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "%s хэрэглэгч %s материалд өөрчлөлт хийх эрхгүй байна" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "%s хэрэглэгч %s багцын төлвийг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "%s хэрэглэгч %s байгууллагыг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "%s хэрэглэгч %s бүлгийн төлвийг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "%s хэрэглэгч %s бүлэгт хамаарах зөвшөөрлүүдийг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Хэрэглэгчийг өөрчлөхийн тулд нэвтэрсэн байх шаардлагатай." + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "%s хэрэглэгч %s хэрэглэгчийг өөрчлөх эрхгүй байна" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "{0} хэрэглэгч {1} хэрэглэгчийн мэдээллийг шинэчлэх эрхгүй байна" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr " %s хэрэглэгч засварын төлвийг өөрчлөх эрхгүй." + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr " %s хэрэглэгч task_status хүснэгтийг өөрчлөх эрхгүй." + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr " %s хэрэглэгч term_translation хүснэгтийг өөрчлөх эрхгүй." + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Линценз тодорхойгүй" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Үнэгүй гарын авлагын лиценз." + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Бусад (Нээлттэй)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Бусад (Нээлттэй домайн)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Бусад (Холбогдлууд)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "Английн Нээлттэй засгийн газрын лиценз (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Энгийн иргэдийн арилжааны бус бүтээл (Ямар нэгэн)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Бусад (Арилжааны бус)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Бусад (Нээлттэй биш)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "%s-аас хамаардаг" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "нь %s-тай хамааралтай " + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "%s-с удамшсан" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "Гаргалгаа %s байна" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "%s - н холбоосууд." + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "%s -с холбогдсон" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "%s - ийн хүүхэд." + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "%s - ийн эцэг." + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "Зэргэлдээ %s байна" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Энэ нөөцийг ачааллах API өгөгдөл байхгүй байна" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Өгөгдлийн API мэдээллийг ачааллахад алдаа гарлаа" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Бичиж эхлэнэ үү..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Тохирох зүйл олдсонгүй" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Энэ маягтанд хадгалагдаагүй өөрчлөлтүүд байна." + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Үйлдлээ баталгаажуулна уу" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Та тус үйлдлийг гүйцэтгэхдээ итгэлтэй байна уу?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Зөвшөөрөх" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Цуцлах" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Дагахаа болих" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Дагах" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Холбоос" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Интернетэд байрлах замтай холбох (мөн API-тай холбож болно)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Хуулах" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Устгах" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Компьютерээс файл хуулах" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Файл" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Дарааллыг хадгалах" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Хадгалж байна.." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Файл хуулах" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Алдаа гарлаа" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Файлыг хуулах боломжгүй байна" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Хуулах эрхийг баталгаажуулах боломжгүй байна" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Материал хуулагдлаа" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Хуулсан файлын мэдээллийг авах боломжгүй" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Шүүлтүүр нэмэх" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Талбарыг сонгох" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Засварлах" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Дэлгэрэнгүй" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Нуух" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Алдаа %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "{0} -ийн тухай" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Холбоо" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Хариуцагч CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Систем админы тохиргоо." + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Хувийн мэдээлэл үзэх" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Удирдлагын самбар (%(num)d шинэ зүйл)" +msgstr[1] "Удирдлагын самбар (%(num)d шинэ зүйлс)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Хяналтын самбар" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Системээс гарах" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Нэвтрэх" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Бүртгүүлэх" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Өгөгдлийн бүрдлүүд" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Өгөгдлийн бүрдлүүдийг хайх" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Хайх" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Өгөгдлийн бүрдлүүд хайх" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Агуулгыг алгасах" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Хогын сав" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Сайтын лого" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Та тохиргоог дахин шинэчлэхдээ итгэлтэй байна уу?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Шинэчлэх" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Тохиргоог шинэчлэх" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN тохиргооны сонголтууд" + +#: ckan/templates/admin/config.html:52 +#, 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 -ий гарчиг хэсэг жишээ нь " +"янз бүрийн ялгаатай газарын CKAN.

Загвар: Ашиглаж " +"байгаа загвараа маш хурдан солихийг хүсвэл үндсэн өнгөний схемийн " +"жагсаалтнаас сонгоно уу.

Сайтын шишгийн лого: Энэ " +"лого нь бүх CKAN -ий ялгаатай загваруудын толгой хэсэгт харагдана.

" +"

Тухай: Энэ текст нь CKAN дээр гарч байх болно жишээ нь " +"хуудасны тухай.

Нийтлэлийн " +"оршил текст: Энэ текст нь CKAN дээр гарч байх болно жишээ нь нүүр хуудас тавтай морилно уу.

" +"

Уламжлал CSS: Энэ нь CSS -ийн нэг хэсэг нь " +"<head> хуудас бүрийн шошго. Та загваруудыг илүү " +"өөрчилхийг хүсэж байгаа бол бид энийг зөвлөж байна баримт бичгийг унших.

Нүүр " +"хуудас: Энэ бол нүүр хуудас дээр харагдах зохион байгуулалтыг " +"урьдчилан тодорхойлсон модулиудаас сонгох.

" + +#: 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 удирдах" + +#: 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-ыг бүрэн удирдах боломжтой " +"байна. Болгоомжтой ажиллаарай!

Систем админы хийх үйлдлийн " +"боломжуудыг CKAN систем админы " +"гарын авлагаас үзнэ үү.

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Устгахыг зөвшөөрөх" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Дэлгэрэнгүй мэдээллийг энд дарж үзнэ үү." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Дараах өгөгдлийн төрлийг боловсруулах боломжгүй: %(type)s." + +#: 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/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 "Markdown" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Бүлэг нэмэх" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Бүлгийн маягт" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Та {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 "Та {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Гишүүн нэмэх" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Өмнө нь байсан хэрэглэгч" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Хэрэв та бүртгэлтэй хэрэглэгч нэмэхийг хүсч байвал дараах талбарт " +"хэрэглэгчийн нэрийг бичиж хайна уу." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "эсвэл" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Шинэ хэрэглэгч" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Та шинэ хэрэглэгч урих бол имэйл хаягийг нь оруулна уу" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Хэрэглэгчийн төрөл" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Та энэ гишүүнийг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Устгах" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Хэрэглэгчийн төрөл гэж юу вэ?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Өгөгдлийн бүрдлүүдийг хайх..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr " {group} бүлгийн өгөгдлийн бүрдлүүд" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Нэр" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Миний бүлэг" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Миний бүлгийн тухай товч мэдээлэл..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Та энэ бүлгийг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Бүлэг хадгалах" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "{name} -г харах" + +#: 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-ы Бүлгийг" +" ашиглах боломжтой. Ангилсан өгөгдлийн бүрдлийг ашиглах хэрэгцээтэй төслийн " +"баг, хэлэлцүүлгийн сэдэв, хувь хүн болон та өөрөө нээлттэй өгөгдлийн " +"бүрдлээс хялбараар хайх боломж олгоно." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Устсан" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 нь дэлхийн тэргүүлэх нээлттэй эхийн өгөгдлийн портал платформ " +"юм.

Мөн өгөгдлийг нийтлэх, хуваалцах, хайх, ашиглах боломжийг олгох " +"замаар өгөгдлийг эргэлтэнд оруулдаг програм хангамжийн шийдэл. (өгөгдөл " +"хадгалах, API-ийн тусламжтай нийтлэх/нийлүүлэх ч мөн багтсан ). CKAN нь " +"өгөгдлөө нээлттэй болгохоор зорьж буй өгөгдөл түгээгчдэд ( улс болон орон " +"нутаг дахь төрийн байгууллага, компани, бусад байгууллага) зориулагдсан. " +"

CKAN-г засгийн газрууд, дэлхийн өнцөг булан бүрт буй хэрэглэгчдийн " +"бүлгүүд хэрэглэхээс гадна орон нутаг, улс, олон улсын засгийн газрууд албан " +"болон нийгмийн өгөгдлийг нийтлэхэд ашиглаж байна Тухайлбал: . Английн data.gov.uk, Европын холбооны publicdata.eu, Бразилийн dados.gov.br, Герман болон Нидерландын " +"засгийн газрын сайтуудаас гадна АНУ, Англи, Аргентин, Финланд болон бусад " +"улсын хотуудын сайт.

CKAN: http://ckan.org/
CKAN-тай танилцах: http://ckan.org/tour/
Онцлог: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "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 "" +"Энэ нь CKAN ны талаарх хураангуй мэдээлэл байна. Бидэнд энэ мэдээний хуулбар" +" байхгүй байна гэхдээ удахгүй хуулбартай болох болно." + +#: 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 "{0} статистик" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "өгөгдлийн бүрдэл" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "өгөгдлийн бүрдлүүд" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "байгууллагууд" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "бүлгүүд" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Тус талбарыг бөглөх шаардлагатай" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Markdown хэлбэржүүлэлт энэ ашиглах боломжтой" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Утга" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Дурын" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Тус маягтанд тохирохгүй агуулгууд байна:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Шаардлагатай талбар" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Зургийн URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Файлуудыг цэвэрлэх" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "\"{query}\" -н үр дүн олдлоо" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Уучлаарай, \"{query}\" - д хамаарах өгөгдлийн бүрдэл олдсонгүй." + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Нээлттэй болгох" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Хаалттай болгох" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Төсөл" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Хувийн" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Та {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 "Байгууллага засварлах" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Хэрэглэгчийн нэр" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "И-мэйл хаяг" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Гишүүн шинэчлэх" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr " {group} бүлгийн өгөгдлийн бүрдлүүд" + +#: 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 дахь байгууллагууд нь өгөгдлийн бүрдлийг үүсгэх, зоион байгуулах болон " +"нийтлэхэд ашиглагдана. Өгөгдлийн бүрдлийг үүсгэх, засварлах болон нийтлэх " +"эрхээс хамаарч байгууллагын хэрэглэгчдийн төрөл өөр байж болно." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Байгууллага хадгалах" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Харагдац {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 Өгөгдлийн бүрдэл гэж тайлбар болон бусад дэлгэрэнгүй мэдээлэл бүхий " +"материалууд (файл гэх мэт) бөгөөд тогтсон зам дээр байршуулсан цуглуулга " +"юм. Хэрэглэгч өгөгдөл хайж байхдаа үзэх боломжтой зүйлийг өгөгдлийн бүрдэл " +"гэнэ." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Өөрчлөлтүүд" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Та {name} өгөгдлийн бүрдлийг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Та {name} материалыг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Өгөгдлийн бүрдлийг харах" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Мета-өгөгдөлийг өөрчлөх" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Урьдчилан харах" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"Өгөгдлийн Хөтөч харагдац нь DataStore өргөтгөл идэвхжээгүй тохиолдолд удаан," +" найдваргүй ажиллаж болзошгүй. Дэлгэрэнгүй мэдээллийг Өгөгдлийн Хөтчийн " +"баримтаас танилцана уу." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Нэмэх" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Материал засварлах" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Харагдацууд" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API - н төгсгөлийн цэг" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Материал руу очих" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Татах" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Эх сурвалж нь: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Энэ нөөцөд зориулж үүсгэсэн харагдац байхгүй байна" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Та хүссэн харагдац аа харахгүй байна уу?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"Хэд хэдэн шалтгаанаас хамааран та хүссэн харагдац аа харж чадаагүй болно " +"үүнд:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Энэ нөөцөд тохирох харагдаж үүсээгүй байна" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Энэ сайтын администраторууд харагдац плагинийг идэвхжүүлээгүй байгаа болно" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Нэмэлт мэдээлэл" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Талбар" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Өгөгдлийн сүүлийн шинэчлэл" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "Тодорхой бус" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Мета өгөгдөлийн сүүлийн шинэчлэл" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Үүссэн" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Хэлбэр" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Ашиглах зөвшөөрөл" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Шинэ харагдац" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Энэ нөөцөд харагдац байхгүй байна" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Шинэ нөөц үүсгэх" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

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

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API бичиг баримтууд" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "бүтэн {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 "" +"%(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна уу) " +"эсвэл %(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 "" +"Та %(api_link)s -ийг ашиглан бүртгүүлж болно (%(api_doc_link)s -ээс харна " +"уу)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Төлөв байдал" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Сүүлийн шинэчлэл" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Өгөгдлийн бүрдэл үүсгэхийн өмнө та байгууллага үүсгэх хэрэгтэй." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Байгууллага үүсгэх" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Энэ өгөгдлийн бүрдэлд оноох байгууллагууд байхгүй байна" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Та эхлээд систем админисратороос байгууллага үүсгэх талаар асууж цаашаа " +"үргэлжлүүлнэ үү. " + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Лицензийн тодорхойлолт болон нэмэлт мэдээлллийг opendefinition.org-с авах " +"боломжтой." + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Байгууллага" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Зохион байгуулалтгүй" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Харагдац" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Нээлттэй" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "Дараагийн: Өгөгдөл нэмэх" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: 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 "joe@example.com" + +#: 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:26 +msgid "Data" +msgstr "Өгөгдөл" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "Ж-нь: 2011 оны 01 сарын алтны үнэ" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Өгөгдлийн тухай зарим ашигтай тэмдэглэл" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "Жишээ нь: CSV, XML эсвэл JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Энэ нь автоматаар таамаглагдана. Хэрэв та хүсвэл хоосон орхи" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "Жишээ нь: 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Файлын хэмжээ" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "Жишээ нь: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr " MIME Төрөл" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "Ж-нь: application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Тус материалыг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Өмнөх" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Хадгалах мөн өөрийг нэмэх" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Шинжих" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Дэлгэрэнгүй мэдээлэл" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Бүтэн дэлгэцээр харуулах" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Шигтгэх" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Энэхүү нөөцийн харагдац яг одоо байхгүй байна" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Шигтгээ нөөцийн харагдац" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "Өргөн" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Өндөр" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Код" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Нөөцийг урьдчилан харах" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Өгөгдөл ба материал" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +msgstr "Шүүлтүүрийг арилгах" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Өгөгдлийн бүрдэл нэмэх" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Өгөгдөл оруулагчийн төлөв: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Мөшгих зам" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Дэлгэрэнгүй харуулах {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Зөвхөн түгээмлийг харуулах {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Тус хайлтанд таарах {facet_type} байхгүй байна." + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Нүүр" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Хэл" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Гүйцэтгэ." + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Ямар ч лиценз өгөгдөөгүй" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Энэ өгөгдлийн бүрдэл нь Нээлттэй тодорхойлолтын шаардлагыг хангаж байна." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Дараахаар эрэмбэлэх" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Үр дүнг шүүх" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

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

" + +#: ckan/templates/snippets/search_form.html:87 +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] "\"{query}\" - ийн үр дүнд {number} ширхэг өгөгдлийн багц олдлоо." +msgstr[1] "\"{query}\" - н үр дүнд {number} ширхэг өгөгдлийн бүрдэл олдлоо." + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\" - д тохирох өгөгдлийн бүрдэл олдсонгүй." + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} өгөгдлийн бүрдэл олдлоо" +msgstr[1] "{number} өгөгдлийн бүрдэл олдлоо" + +#: 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] "\"{query}\" холбогдолтой {number} - н бүлэг олдлоо" +msgstr[1] "\"{query}\" холбогдолтой {number} бүлэг олдлоо" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "\"{query}\" холбогдолтой ямар ч бүлэг олдсонгүй" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} бүлэг олдлоо" +msgstr[1] "{number} бүлэг олдлоо" + +#: 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] "\"{query}\" холбогдолтой {number} - н байгууллага олдлоо" +msgstr[1] "\"{query}\" -н үр дүнд {number} байгууллага олдлоо" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\" -н үр дүнд байгууллага олдсонгүй" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} - н байгууллага олдлоо" +msgstr[1] "{number} байгууллага олдлоо" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Имэйл" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {tag} гэсэн шошго нэмлээ" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} {group} бүлгийг шинэчлэлээ" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} {organization} байгууллагыг шинэчлэлээ" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинэчлэлээ" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {resource} мэдээг шинэчлэлээ" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} хувийн мэдээллээ шинэчлэлээ" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} {group} бүлгийг устгалаа" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} {organization} байгууллагыг устгалаа" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг устгалаа" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {resource} мэдээг устгалаа" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг дагалаа" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} {group} бүлгийг дагалаа" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} {user} хэрэглэгчийг дагалаа" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} {group} бүлгийг шинээр үүсгэлээ" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} {organization} байгууллагыг шинээр үүсгэлээ" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийг шинээр үүсгэлээ" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдэлд {resource} мэдээг нэмлээ" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} шинээр бүртгүүллээ" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} {dataset} өгөгдлийн бүрдлийн {tag} гэсэн шошгыг устгалаа" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Хайлтын шошгууд" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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-ын хэрэглэгчдэд таны хэн болох, юу хийдэг талаарх " +"мэдээлэл олгож өгнө." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Дэлгэрэнгүйг өөрчлөх" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Овог нэр " + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "Жишээ нь: Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "Жишээ нь: joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Таны тухай товч мэдээлэл" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Шинэ мэдэгдэл хүлээж авах e-mail хаяг" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Нууц үг өөрчлөх" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Систем админы нууц үг" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Нууц үг" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Нууц үгээ баталгаажуулах" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Тус хэрэглэгчийг устгахдаа итгэлтэй байна уу?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "API түлхүүр дахин үүсгэхдээ та итгэлтэй байна уу?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "API түлхүүр дахин үүсгэх" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Та {user} хэрэглэгчээр нэвтэрсэн байна." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Гарах" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Намайг санах" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Та нэвтэрсэн байна" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Өөр бүртгэлээр нэвтрэхийн тулд, эхлээд системээс гарах хэрэгтэй" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Бүртгэл үүсгэх" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Өөрийн нууц үг сэргээх" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Нууц үг сэргээх" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" +"Та хэрэглэгчийн нэрийг өөрчилж чадна. Харин дараа нь өөрчилөх боломжгүй юм." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Нууц үг шинэчлэх" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Энэ яаж ажилладаг бэ?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Шинэ нууц үгийг оруулсанаар бид таны мэдээллийг шинэчилнэ" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Хэрэглэгч өгөгдлийн багц үүсгээгүй." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Таны намтар тодорхой бус байна." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Энэ хэрэглэгч нь намтаргүй байна." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Нээлттэй ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Зөвхөн та үүнийг харах болно гэсэн утгатай" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Гишүүн болсон" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Нууц үгээ сэргээх" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Хэрэглэгчид хайх" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Таны нууц үг 8 эсвэл түүнээс олон тэмдэгттэй байна" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Гадаад вэб сайтруу чиглүүлэхийг зөвшөөрөхгүй" diff --git a/ckan/i18n/my_MM/LC_MESSAGES/ckan.mo b/ckan/i18n/my_MM/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..43356cf1f130741cc0f6748f445598972485d32e GIT binary patch literal 144196 zcmc${2b^40`Tu`+=|!4IFEf4OS^oiR0vcEx!nH;8xM#s_ z;X5EvM_0g;;CtaX_&c}^?lnD%#y3ULIq(+Tw;vltYv7_8QS@W@UHCE)d~9YE{Sfzc z$4Ak;P>Dc;Dm)ybP)VKY=yhLC5jG!)8Hc535hcL zJUj;e6Dr?F@sQ-ARd8##1}gq{K$Y_2N2w4DJm3 z;CAo=sC>Q$Dqq(I_eY`pe=6`xQ2rl>Z-hUCD*p>m`Fj=0|ISN2|1E*zp!`jOR9!R+ zD!&)QGvKG;G`KyLKNik|E$|#D`QHFX!)KtvZFjQk$DvT=Z-=|VGL)Pz3HPsnlE;Sw zKLu632chKhXmI}+N*=$2(%Tnd49A{Aoxyo<96S$>ho6Q=z+b^b;qIp*b9e%LA6y9! zhTEOy&yRr8uL4y0u7Pdvk#PU7Q2s}p?(xrsa<7H+;3uHU{Wqxc?TgSF`ak3#$BYhti|Vpz7`8a6kA3sQUaV+!a0xCC69c47k&ot`|$7>TelT{Vs=+ z-vHbfUIh1sABT^_FGHns^;=y|w?O6d=MYm6Jqu|X(SbDXec&pne7+B=K0gYNgZIMY z;XeXrzAcL8;C?rh9{mJL{(I4=#d%QjS_f4>--YMFE!v}~1HKb-EBYTe3!cbLmGdg7 zcK2f_IsP2R@OM!8*{+ke1^0$3cMMgYHYm9q9^6x);+X|io_SF6Is+!|NcfgVG5x6D%9hCie5h@@5gbKe+x2Lxs zRJg;T^lct&gQr62@x^c=yc%u}AA^$X51{1#G&~Fb9!icUEsvu8o3PJt7u@eCc=@h@ z(!<-J;{6&_{=XOQ{~@@yCbF%#KN60Btx)-0041-^z;mJG_Ccupd=l;j?}ZBY-SGSc zDErX7!rR@Ua5LP;L&;|@RChE-@`s;yer)!|<`zp8{{0fx+@4_+g38?g=9?#D< za0{G!LzRC7RJ?~l$!``^zE6PL!ZV=a?GE=VP;z`{;CtZ$+&2gJi*Os<|AC5Un_iE9 zZ>aK&g-ZX;@D1>2D1XNVo(d1Zy#mVL6;OKleyIH11{MEjU==zYBMOKZT0#d8qjQ9QZe=`urD^|2OuzdtbN*?l(jEp9@VNpyEFr%KzKo zPVlVYUIUe%cfwoXl~8u$$g@K`fX%o&q4L!YRi2el;oc4v|3%^c4e(*8biW&(KONl9L-~6N zs=hZ{Ng8lF_$GJ-RJtFBlHaGG@R5|X1itm1?a9@X#%VSXa{XX0cJ{6w72zSB# zN^ozt+T+;;Du4S!m3I_We3PN_KQnL@_KCXm{|2n94aT`?l2jRi+_i$&p z+uObTqoK-sJe&%1Q1RXj72l_z@_8TBxZ)e|5cnIYa_zF#^LY%EzqwHLc?MK_slX%P z2cgRKJ-82i4ju`c&vm_-2-TiuLCJRoR6bY1W8fuFa{U^Vo;?AT&-E~de}W3XBZD-R z|8Te;oC$Tm1MUwmfhyN+Q2D4P~|%#xX*&hPdT{PK*{++D1G`U zlpOAbD*vP5{!gLW|8Ltx)k7q1wZH;0X8ysC+yP zH-pc@82&aq-{xKJJ_Jf$bKzLH0!n{A2o?TzxI6p|RQbOHm9HnE^!nFuOZaCfIs6SO zzRfT4_HqD}`*=7NcEbbUt#CH{HdMZMx!Co0GHk)!1rLIkz~kXvQ2Bcm%Kt%^`17~G zx8Pn474Ns;o8h0}9N2QH>r)R@{?3Jx=jCt<_#vqJxH<5%aBJM(gwl^6K-JR=P;zLx z%=KhXC^;PlrLV_9JwFv50?&rhryIik``|XXABPI}6x%l-bo zQ2tw>?jH`7-n8Ie1QqX@Q1Nv`=|vH42hWAu!%Ktv8fbb574N-J<@-96Tz&#oj^9AV z_wT?h-tEt~hZDHJH&i_H;9>AgxCCAeN5kjgv2dsN`1oZpT#ox%sPN5K(3il&;COf* zoDc7UW8r_`_HgW#-u{n<(xZh?UZt*_Xp97%m*l4JH z92@S>h04cUpu%@R*})ztxm*kngr9=4CqIPJ&zGUn-{Jk(!Y2AcsCuh>z@L8wD%{iX zFc@9q^>jE?{z~v*cr`o-J_r@xvv4-t{)6sb3=hG*Ch%5xDDEG^@o>v)eO>HGI05%+ zsQaIU(x0cH(%Jet?>F8ITXDC;J>Zp4cJnrWr+2VRn_b8}*6yRR)Lr~8@2Peb-fqTPIH+cU)1FF8y3w$Ts1@~o8^>HJVUf&v? ze-d@s5S6|9Md5DM7{e5vY257|Q=|gL|u+T(0Awo-cq3zX~e;YoY4t0k{wRBb2^v zd$Y$o9?IW*sOM)xJ%10}AATm>|50$i2xIQ={1LbRheD-$5|saQVGFzwDxY75G5l4y z-}F(>-+@qapAA(n3*c68DclL33AcnrC_B&(-w59cRZrK#9pJ4{cI$KD{#T*=eIF{^ zb5Q9@E&X@^R$7pgpKg8MqCbUpzm!w2Bz z@bB--Z+6R-bTr9}89A%c0uwhl2ZYI12Y>w|Tod1dhRd z8axWVBe)-g^7lMceed{5_dgBFU4lygrohLb{Qn)c!Is-S-nYObaIb*}!+YQ%@aItN zd7C?2e~*MyaK9BQo*Up8_%*0-e}?kE*PU)Rj)yAWCGbf2095;Y2}({oeahSMp-}ZT z4@#fTfNk*YQ1RX#?mq#Q&%eQ~Ve6+|kB)%S<4M7ND%>6SGPo671;@ejp!Dw3a2xnp zsQUX7RJ}d|w}(H4JHY3H`=!99yIe1JfU@iRK*iGrw}VGP*}a+YICv&hdLM_|!rP(Z z{~T1lz8dhZ#!kyr+q4NI{+y!obw?E$>$}Wt9x<3yppKpVTw*-~m+oAkj042|x z-~sSqD0w~$rPn*&p!DDrD1AByj)Nb8%I6Q@X!tKU5*~D)>+@VF zJsN;&SMP^y@cVEo)aKeAU>a1pPlYStT6hqA3BDWdeZR};HrR^$Q8*U99NaBm^zqX| zxGVQR1Xa&>LDk;_PPT{{v9@z8y-x?+xxRK*|5hP~pA>mEWJjDe!qHc^&ky>(A*> zaylPM&pryJS3iWh|0>k|y}#_^>J#BnxZeX+jz^*N=}9;O{tL!%|F3vF)1dBmLB(@1 zoCfcM`@&bD^kDa|dVa@2>G@>1A6yP)k1m3e)8)Z^Jyf}GhSKX>!}Ev3^T&hx$HDy^ zY{TF0;0bWgM?9TQI2-pBQ0008E`d9KEj)+&=y~8Ba5LQBgvY_h;O6j6Uw3=97gRn+ zLft<+aAM$8_=6_wA)LkY-M_)u3!Vwf@P7i&_@>wI_u!G-{|USt?uc>O4PFnGk9#3e zMW2TQ@Z4`RhKH}fi^#xJ-=W;i=+*a$n{==GA!AnDYkrJPLs4G(33`hAlwT1S{#QJM z4#54Ncm4b7?|ppmIJ^LV^Z!8KLHytU6KxUB`LpleJr2oYbm$Anfpq=}QT=GEzcA*8 zUx&)?seg6-I}=L3uZGg&55t`acPmu+zVMRQ>*H`9?*D&%iwqs(oAoz`4ShaZIxz-|7;S_%9*TmhH;+w0-m@CMwi|G{R$Z^PAacGMKDgI|J5cUqJ4 zTB!2=1x|%~H8Sx+(eq_or^tWaH2$;Mus3MyWdB?eG$~ z<8~hYT6h-j9k%y$2jFwK*TXa6qi<+3yE$@)CbNg*;2zwc3=e}R!A^J?JPp18PlPA# z*c81TUIQhsU3Y4V-U@r6+~0u;Hxi|ld@hA|!*9WD;oEmn-K42-^c{FE?A)ix#xK8yD&N9=o1*LCWANSZto@qo{LU-zi@3kbrtUrP z(zwa=ZSn|@{|PAj)!Wi!{l&dd=|2hghNT0V%>G>lkH>u_RQr1p>iMsN`=9VY+?yTP zWb0<5p~_Q+Y6sUr>De!!>gSM=O?Lj|T~PV|Hv9}c{-7q?xB3@61owTTJe_CZNZirr zCTn*GLA9$>p!$Og;6!*goCf~@m%`RD?!FK%!2JkRJ??t2r*jlkzWxf2gwqc3e65E2 z;C>K}hEKuW;bvn!AA3X9>vY%x-v(9w3*mV92`IgIGH`5bla0g9gO_suPPh#`s;$ZF z(6MlP+$E@S#@nI#pLfF#(XMWQ(z~NMto2je3!v=J=tEtPPJ<`oz8xyw&EDK(^SC!a z-9HgZP9KF^!5_d2;8RfLJM*w68*jb~s@;4A9tw9jyvfEX)8QQ4C&5$UO;GLV@9=zh z>Jd$5-=Bs`f6S4d-#0_qn>kQ+s0t^;Pe8@@8+Z~Nf0WDfA}BfD0%fPa9qu1{w3jyr zC5QLIUEpou{sZCupWxfLzxl)_n@{E8vAC}f{3TRAT8{DbPJ)=0s2{d+|3Vg}WEby- z^Wk@(`mMbuyZ-{*0{6vG_UAoN<-0ZT2e23Szo7iBnBwW54W-YYf!5C9GSc08s@L=K zX&(P-NE3;!fzROof$2@QKKtW*F&}cm!aCp&a>Tqwn62u z2qout1l|V~-yfjD{S$5u_c+ewzAu#CpBUU{z&&wa3g;q^k3qG!7ms)QztbE~XFsU? z9R^i@%YyseQ1Rafr6&(U>Hp(!1pE(Fe?H;_*W=|-_4X)~91lOypI4yLy&p;+pMiN@9?fNHB_3|v74kyef-_5Lh!aw4^abc6K+g$z@ zZ$F1F@^VfJJOM7o-zgB29o+#XpYJYqIs6u?9se7i4o59%iar7_gy+M9mb(4>1XQ?J z;I?p=le|9mg`43%8mj&#LzQbWl%Dj!?O+)m4bO#YxAz6^c(U8UE~xvLK*{-6Q1LXM zLi*%;Z>apOIMwC!D3rfHK!%#p4yU>MKTzRDoZe*f!--J!n1ibCDpWo{3?=8!LdpH- zQ2A{>qbd3%+#0IB?u80>Ka~A{4$A*FXL|q81`onrf+OJvpyGc3D%~Hzt>JTU2K*CL zyobKkpC1jC-?>osCJz<=C!p&6F)01ti$*^U9vrv=N?vzB+0)J5=Ju-{K7{+LumfI@ z^YO-S;4Iv2?cUE+q3r0#p~C+e&V%zinxgyQ^-%rM(oWa^cR}@&pACEg&c=O6-u1K$ zuf%;Gd@tOo%l&^W@Rv~e*{i!L>VoIOh44A3avrg~DY_P32-VK_Ex6q~8cLpdxHDV> z)la+|E`ZlSwa@3F`k&p-YO?d5?NH;g|AnW*BUiXxzY2Z@_cx%@xvatkp9S~D{Q;MbcJ$Zq zCb;u}%jq7t2={NG(mVPbcV7tAuAYEzgiUL_KYA0~3HMki`!^Y?{!f61!neV6d@vUPy( zK-KSvbzV;W=9))j!--9vyIot#O8|wM)7kE7T!%?_b zL-q4FLFw0b;9?kE==Nd>l)j!0)t|0{vJ;<%M>nAt;rR~l^zqoiQ0<`$UIp)gOW@3R zdAMugX1E`M*TAp9b?~%{e4h3+d?)UcFZTOChhuQR^%BqT#ZdKn7nB?}yVT>I0H@(T z2}&=nfzqSTL5+)k2J`Tc%eP z{~M~kPrBBhp8-|R7eeXfop1vDF;snTb)Dz;G^qORgNo-0D1CVh${sKNkdJ#VfFHvB zDwG|4|MgALMeyJ79q?T@G(~s7?QV3vyANKA`>+ptJNz!Z9{2G#HQ9R2b5Qv^_GV9~ z2Ofv}LvT;{YxoQJFR1qSvyV7`2i1OFf!n}cKkEJ0esD|Nc_=&D1J8%g!pY6FpO5+T zkKN+w-VUV)KZZNNUqI=}AEE5jF1Na!8x7?yL&^VQDE;~nR6ZVr%EyyX_4aEh|KmU5 z{$@kDm&5Jhxo{o43|i#mQa^3{hZf}EXkFUU!;i5ZT?w^Fp|6icm=hRQJUV+>`2{kV- z-tGP20r$APyP)jno$#k{%X^z_UGtZ)io54CKF?hbd*uFXQ}i-?5}pgc_c?FZ^FQx) z;n(m|?k~MB*l&0R?nPg4JO2!n{T_dRQ}iIb32NN*)-U>c!e?P8?wuZRyV(y_-n*f~ zMGt!W?SsnqZBXHxA8NAw`BUM0aX$&AKfPb_^^xbG+;4xlDe8wW!Rhd&MoQ_;~a{sQerZrS}6+^8P54e!Kwhg&tK<-025Rwtkv}lH2c~`oSZA=I{{qzbX~!pAo@1f%SBB%@kD=_t7C-U&KNwEI-2-RB z+oAf$7ohy@_EQgc4BVxO`40Rp_s@N@DS8pkd&=$Q)Tce&Kfr^zzs=8F-w%W5HDoe-~4}keESio zc0TfV&X2)sa3An{pO=0SN-y8~ho-;kcpdlq{_N%4?u91X zulNI0c`GmaIOEUoV%$A{X^MUVUxv!pV}JE=cJ8I7=uX^!hg0DvUUt3yEtGsu{##RY zGrSqf4$b&qAOC(As$NU4G)0fX_e0s!Ghg-k>VmzvuYzjF|AA^}Z~D8B5Bs3>Xf@RH zr=j|{7vUaoyMMTz9|&XI6)1gsUvNJHr{R7MYFv5HKYhHs2=0sf3OE|x2@i))K-rP) z|K;1+~4LARfr*|UM^D5N% z{aUyMd;+Q+{|wH6W20uXAAL}E;g?YIIIXGK#v2bpwda38wWs5oo1-0@*z;4)<>Y zyZ362w#VOZ;gQ^bdGBWH-&^--w)#6A?#lfRsQOwB$HRM}?AWtV_1Uzqr!yWNjr&r# z96kb1gsuBEn;s27g}(+~1it}exN!ew+y6Nmeh~Mw@FQ?-?2JcvzP<`&Z(f8g@ck{# zHV(cI?u`2n@Qv`_a5dcJfMy#{T^4vFls&r}O1_Un<#*o$n{8ZsGL*ip3hwKn^7{ak z-TY(V9wVD=96bZJa({K;EpSKNKZ26yvrz3~pMyNzqoCqB8S4H8a4&cxRD1bCxc_B% zDDIy_*@2x#HQT&kPbfRG2)+|u4|`zC=w|C@uYeu6e-Br}1!J16Km0n>JZB#k1N&eR z%D(;*mSEu!&+n7)blf|S_4@3E8pk{e-wNZ_W?PRr4-Vk|4ZIq@jZNcD_*b|)JY`(7 zjVt|=IlK=_P7en6V^Hn-2k_1Cr{Veb7OPs?;a&Kj>r$5iV%JNcw zPiMS5w=y4Bm*?Y3t~Vd|26%ile=n(oL2Hx_t%%JR92PB1Ro#I%vEzds6-Rm#z&L-;*K63PHxHf_EiU3rYu=b zK04itrCuzVb8I{*7cVd8yC%1c9Nk~;8B=MQvTFH2Tr5?Ueq1T_=BG{?mzy$aT;G&z zw5zM-T+5V&J$Vw1tK|XepoEyqaV4KCcPwv9{1-YWxA?8re7RgIw@jH-sg_H{ZnBgw z=i^mKB3F#<8L}_*P*WB|q1a6%!Ec;Rs5@6ECh@1SP4Db26erdK%pg()k3Kl_vU-s^W};q6i@0)6PiVYrSi~} zED=jBh?ykX`>Q6&*Ao9cOLtKGD+~Emrp4JTj;h3c<-*EbHJ>R}lB6oHNT4J$np>Rr9N>@hZBPAlew~GgS0+9yLpi3inr+ z1$%9dxDN{^Lp?<5bBfs8cnOL87ZP4he~_fB>oi%J(VPrwhwf4@D+?7F%Aqot;q^0P z@#4YxLECb1dryfDmU4x=)h|{4Kq1bYmhJ0tft5BrV@5#~sS8WWW ztoN2W`+KaprK%~Fv5|x7#7dvo(dm+DWuRgvQA3Qf4JK?@q(al6q#r#o2D#io?b_mn z_r~o5 zRAFgl!Ih&_>LI_SnDI9;2s zx3UdZx}))J~{)It*|m)dDz{&4!jIh8SO!91Y}g
5?G`m0}OKF(M3~Pq@;w) z`EKIE(JiGYN~5Vn35nqmC6}MEi-f@}ACBXo5ZIE3Hz#G5iQFUmZ}vOI=-sjzTDdT5*4|z!NX4>3}+| zM2@Z%i~&$$Oir$6Y+NUVLXjCpdZ(5%DyzR^xy+r~;?fgM_flK2yjty>IBuNMY$Hrt zKNce6kWH}sE9|WPGO}Tevb2b}8^&W*)L{|i`^U9RsdFo`v6hQt%eiw3Jq4l~nvu>@ z#d6YKCVXeE=Jen*`>QGqH99{}rpg$#&P+Xo#*-b(FbI)Yji+NNr53rd@$5p;VpgbpPbJSRt6Z-K6NluzV@0mmhMtk{AlCGb@;<4(9FLpg zy1j%k!3H9z^0+}Pb~_W*>|n6W7HY`7fhZH>)*#ySkwxwErYQ?Da|`sgqZ;=VXeTuz zzyzf)SFT!PGo@6mYeE-~mWt+A=VYV2zGtRhrT53@b3N7NG;!+60eWZ=|WcmXtyv`8R54{=kb{DZn z>a3JpuD`mxR4y>&(>S@;CsJZ+p-ha) zsy3^nd4+lPax77+johS^tzD%O=AuqpaNIDHqwXuzy_Y|s{9b}@8ef-&r`PR&_t!-o8vKq4y-x||Y z@;zN7?8_eXoGWUpC$>&PfzS`Fkc{pxA|6*9I%XD*s&S<+-%(&Kh6R8UYN&OM{AwzH zj7LfQC`V`?x#ED9d9)BfIZ4PGhTYL9iRp**6frSyvMN$Z!*nHgR&I4X`h>*`<}VyW zURkN44<@|qq17f`F+mlCrlZtH(`YYGnWvt;!jMh{(_Pvz5?wXcq`#_E995N>u^|vXH0smh zi?TkVmKidu*^B?R`2&OT)rot}__fh=pWt@p8EteXu4G#6(p*_!?8SJ!J(dWp71)qK zHDjxUF6Xl_v?wf7*o|!OWH)kgEg*fskmpiq^Ju!A(Q|CG z-PhVvQe}3d&Orb(7WPD~Ko_)8TQrR)Wz4ZuEeRU0Nv@Wud9KxXV@=QM#;(|HHu_t zhUz?$GfQiTx7rP5CEF{+YfztM+^N;9t@tqn@#fpfBCJnQ?)DFyQG+072{c2xsDffbo7@Q5$KMuSC@20T}!`aZ}IdK zrk|47ekNVE|DcxLQ(`cs$S@=I113h$7>GH8tY3p>IVG)Zm*QlK z8BJ$_Myo+GZj3LE&9QdMbFE8fb*EDIB+R_H$H*er#{xi(WxmW-p6#&N<1muVUfTf7 zvZU~dPWV{Xh6TqC5}A!Xk$ez|nYUy!v$53MqGJiv*-`HAZI5i3PJ>;)2x6Bhw;MAx zRZ1VrrFvhK*ZMOHV#ia*rSgFLHPbQ7v#hB=b*Xa(`Zl%jJdX9frm+0vYj-ANpS9U8 zMJQpV&ASwvSJ+BxXQ8W$$t0HCXT#DH1}`X7HrcV7gtPQ4+eFssZ&^d@VM&|SS*GG) z_H5l)O=HK#w$YaZq8Psl0LM=qAGc6S;Gl|8J^M3JhQeQ z{JJyQFAr{Nmyt>j%L7H$BnVnRBC$b;4>U)c#MtU$lVDA$r_;wJWB%{)*k0S(*AkJ3 zi2v_78ZM$nSqjVPEF26HlTCMO5|LWg#8xMsVWSv62(~R*)NW8S;py7CR5mThQ0XO+ zWop89L6tcZNEloX5&K|irA?#3R0a)8&E?>!3<+u4qj4`$__QONm>x>;l80jkO@3U% z8D{GEiz=x>`u~5Wfu$R^-1Sqq*ISC$9gB&}rQIkFEC=0UIbPbQF+2`!Fx$Bmt;yQX zVP+)^!`s7no{2|quDn8XiW#i7@F#QTK(78?`mV6$#DzvDj&g58AEYWQPs_dW!f?_j zy|GBAfN<%IlPt3~j%*XOWn=~OSATyc`y1_AARUMYJx-@4nINpEVh*v)2&d2)YfWp& zQxxp}XA^QDc5&HwA)4XC1`YIV4J*A7)^o!1 z(BUUft%pw>*}gTomn>|A;5j=alO6G;9*c3Zbd>n5@2wM$q0=AaWXHsYgcLYkkIk>9 zzp_qOgI%=4i>Q8!^{1)9jhfm0y7N1zmTnd}HG}5#mRRDSUagi39QU!2&;}mHi`iVv zw@%l7!_Zh}%s4GyE)Bguzf^2hO8K&Fsg0gq9Kbf()_s6B=#$IYI*3>2VD()m&yp}~ z0BIR>dWF7LNJWlKJ2Q@c`3Rki?7$clm>vgtq zRAy&@qh&hJQPqNJo}nMxJ+`KZ0)4D zw%cwO`B2(X$svnTe#m0f6cr*)guzPw;A0jpAGI{>qOIvy{1%5GC19dwZAGzgnql<- zbwK($TEPh1mU8S_P4ISAt0^7El&jdC&x< zZgyrCJk&_)BeSP7F}*qT;Aj#dmO9si8R#7F4GtH8lB&-=chX0;V{2xLtQyxQDcPf} zU2Nck$-XtfS{R%Ea6Eg!YkR*q$V!uAc zhoyM=h{GbjT`$ONDZ9r`SFVb?$X!l%+$AkwS%3*1ibCybS+cZ(V>8-@uJq-4(KwlRM~~`n_<2x2V$ff&-+CC~X=+S;iGW|p@T2S`C z@yO9;ftG2vZ4CLbwPwZZBLzAT#mmH6hpe?S!+9{pN&d7N#Uh)mn4RxR*RwP_W#6!` zL2Lz-4o$R3{WO83Yv-_~A{{>VptZ9R=XqhI*O6~$<~`AG0H#X=wqh5}@^c9j;}baE z?zJ1SntmnqKQ-K?J8tj*qp0VA(45e- zKk zT#5gs4vBGzjw|Q-miu3?%HtS#;nsGi{f$RYNAKbZV}esM4VOcEQ4bNeK8AZNK@aL= zrC(Ccb~^PCc})vEQoZ4j-fMGDmFReTFQudb9QLT&HI?$&VxC%LbbMZCUjR#yT8`AK z7!*HO(coV@LmK}nVvPawd9|Z>cN3uKn3znp`*w7~mbG=BdMdwwrfD2$kRP+v+U%wxlPV9VloBVS$^LEx zmC0}z?2MHaQ&4N*$#YvWwbx^8IAvyFQ2ZfSnxd94HOgQbOyfiXY^V)Ba~}^d{u*>B zn9j$>fQf~Y zQJiq4&4D?|SSV~K*ckw8>FVoPs?}Rfse-K~6fBus4HzJE7(&Eb_W_ zVke;%K@hwRvFL)lW9(&gfW+2DW)Cc9w*7EIDIXuJ##4z-kUW?}M<;UZWp0jI;%~9L zUxJ>i1Ka*LcB^T32w?5A!XvKdl~|+KaT9Yb4KoIFaFj^n6T42P5_6f0SNmyE*6l=z z(F$a^Bt_KJ+~@z)eX?PlwaSc))q4FEH|lb*dDhX{T2yuxl7XaFt1Fy49QxEwmnC_S zX-H2$B{`%RjO*-=tZ7aP81@=8$U)1gz|pcU%3H3dLI<3jgknKt;hZtiTdzsH(V@*<0YZJqSjk%Xbue$vyjk%Qotl}KqbU4CGi#UetX^W~hE84jYg56Yy_^oN^$r;5<6n72Cxdz} zIKs%1i*H+Sq}Wc0NAob!{k;Ko{c#wcI~YZu(>m8#0?_UlmKzcBH9#h9%r{ZvpX6#>B&x%d?$lDwSyz| zkLwR%G>&lCwf}j+L`||5GG*c5 zbj$i+dXt3Qg{9T0egjLSLCi2a^U2hP+MciXd-%J` zrxLnI2ZVCiG?WXD^^*`DdFd&h9!|$a^Gk7J99ah9OtZXT1pO?Zz1cuZ3wyIR+zF2c zSkPhQ)hpi`si>D@ikuwU;oXR2do<7ffHrE|GG6tLf!2;{fx{geVAS4f*7LBGpgK=q zmry`!M0#PB3W&J0&^VSl_<1(ws~Zf1HwFR#O)1s45J?boHSBWHKu=|$tQ%U!s3e!(g#CV4N74v_##OhL zIoJbBt-PUwU2fpZPc)ok&5+bmr=;Y0w<1b9gC8dcjo8*&5n4n8U%q}#$!(saSdym5 z*vRKh(n*^x*__H6m`|gySC}X3WwdIPcC58q!4#0a)K^-awL2xw5H4WvBi+JVP*hXl zRV)^Vd;7+)Q^c$HVS+J+S=$1=Fs0-gZS^D;tbwmIoF=1*zj*Y5neB7OH1NLA#y!lw z85fZrV;YtywN{|MEwPiM7tWlSgq|}qT2R)Duk8a|)LxaZbHuYX&CWhfj3X94ImY3K z>{x=N$7V%C`kKnJE@=Ik{rYHAEf2A_)juw#m0cI(pxJo#8P$X`lvy{Z?W`d zmbqPxCHM43ouf{~W1@w@8r8Cv+(`@)10%*SjDT3mNS+PK@xo-?nS(Cr8uT(*1Qx&0 zbVW`Fn~Z{L-fPd=IrBsGVf{Mp-^7UgTN4EI3oVRcCsL=)crhNzZ*5UOc|3F|u+Wz{ zqj2yno%^tVJ;l4YusBvOb+Is~xs9o&EY8s7+O{}}DA_WfZo78L-LMXu3dT32>z}ss z+Dtmns3gxqFRv93)r(EpL!NmxMO%9^A1E@wRpZqLrJ>K`NUn^V~An$5@)7uKZ`+ zUZ!x5O0~uM)KfB5aczzk>I|3vRo@=2(#erMPFs4?thLZnvltwfOW*6HE7G9Os9W`1csH(4X7Y2mx^%754tXB#`%*b$XM{8A zELKY@qlS15N!aEc-wr79j*ulrm}n7u-HR}f1W$&vwMOQ;)Hc{dd%n6#-*{mZEt5L3 zfR8-YpB$sJBXjA(DPm`$Jd6jMK-l9>*3MCE@`18xN0)UefBiCT{N6b$vGmBSPElxS zgj;mz455*B-sX7DbY$B}v(?r~;c)YD0f=a82r=+^kUJlt%1~bP7 zH{{J04Td@Ph8n!adQ%?F4lx=UF4bDm+)LKJ4O&@2_0&Jtc1HbqlBwGAiyi+PbbGK8 z^UfaDGVxR)ZdOY%fs3p+mdie4W!1?;bMT_FfP^gQO5To)7V%QE{Ykq6t-v!)u+ztj*h}GS z1d{z?_Id12e2~qRaukC>rr$EN?w8qtsNb=Q)+Mb|%YKV(QzD=?9r4@o5)B~2^-?Ai zsY7*=JV<)u!R}i0VQnCDLo>jPGpptmzt1joCoyU$6u?-?_0R9d)m7TK^JRa1_)L91 zYaP~$(bP0{;4=D?*EX!=CW$o(cW=Rl)EkS}5KEDB$8|Af&mP+v zZ}#cn!^cV}(=YjcSL3p0YUnkE7%D7}$z_#^s&TS44_-etw*=fkp=uu14oy1q(9@S{ zxAO%KcFu-IS9?g>%P|efF046hHGfSPM=Yw#w0;)+Ea0t)ILs2L8LFsIRb*oV4h!8Jc*0X7X+71zxyQ%cHCT1=(ANBPMnZl zv{>&x^#InYS-a@sl@SaZ4cE7j)q%R<;cS<7sgsdm{T%DjJHlGGEwN~#FWq(8JLhalhv2qrRhvnUrsX8xZQ>gllUppTCRlt5C0%N* zrc=vRT8q@tC_BVsonsfLq1X}C8WG9rBSHiD@(2oU9i=1lnUM4&iX%q{V>^aV+VRZ? zzBy6s)Y;VJB24LUmYG2g^kEF2S$B&bvmKpB3OJ)oSt zajEthl%f8#jbQ;Yk92~s7TP{1G1$wh`a>V2sAMZERIz+8Z}4Lc;OIuXB0Kl2KiZT{ zKd@%EbL>DwOSF=!JzG|Dl5%47X@W>c&uqSB3&fgZ&zU(WpTQSxnot^)T8jyi6iVt#fhwVy&eU0C2DR1dDOw-aI;e3#l}FsucTAF4^YSNe_o)(!q`>8MeVTBOL;-;oYq56rg1 zOd15JkC}GF76Dzc+OQo&@lQ!*!)FUb1e)Hlzwf74YgtPT182Vmg~$%7C^{CS*Sdc% zl25j3a_BGGyB_-ZV%nz$bA-^OkD)-gc*$I!Ck>MzA52uKQTqh7G_mHDoNH~)8Xu*$ z!>&Z;Rgq-A&U@YRRpK)%K75mhqy=i~O(JqOevmo(UKdaw(W)?ulbOrg9tV3w$*CrZ zQpL8HdbkM30A>Agc^{OdJU9V7AQ}JEnvRD1GQ9<~N1O(+LmXv3bJ?MHw^@?s9d{k~ z45Lf4UsiNvs>ViN=1ZL%lRjB9OAQ>Ysi||YFBKu&?vlT{hbq|Mu~MRs4F|bB<4T{- z6f?p%)O5<4{Mo?;f9#)Dv&NMuX0pNP9eP12`)(Wy9d`bwk`vQg=NbHmtN;50RT3&o5GD;=$D_vihaVz&7hVzM)EY??4G2pS_3o=B#>P_kNO zsoz9l2kJ3&-K=Nn=r;3j_9htwv&+DV!nt`JnYFL3CZ9ytr(L5ZHdXO=1eYK-mgxyR z6NQ)9Bi-`h7l$KP=oq{0b}ZqPIbq8Kwg{1KH&gv}l}PK!xjsirbhJ!=;svY?>MgHm z>51Mjj?)Iey~n|XilGb&JbJ-#Y*y%aC;ui!OYLNs44NvV?$6%OamRJwt1d|Mjp zQ+u7KqA}HA5d?opavOU-Y<5CCiEa&_qePO8YBWS*WwJ>y8=fs|3>H83I=bV8+3C77?I&ukz%dp?{xWgj*Ysy$C~ z-`InXarI)>aI#bvt7#(f(D;+F=+Fw;_;W2_+o)r>HX95_5XX=jvA$wMZQeYjLw`ln zI1b-@Vy)U`;!eEsbx{7=H~F9jOtr0(XsI2|4v5FGjDm7j6E{n1d}7$Y?_axTZ`gal zq+>`P9%nC%glB$KH+i%mvtymyOIJ-oh_I2KJYJOSp!j1Z5w+2eCP%3f3|`5lug@$( z+MbiXZyP=~s@}Dg7ZG?Lux7E>XT6it|4h&41bc-aYCXA5bj?7k;t5%NBW4@2vQ8rBWSFe|kU`ACluGIC_iV`Bk) zlw(UHY3yMbT$jE^MD;xxa}sGwmenH9?>cn`VW1fPlJrKbIjJ@uj+ ztnne^vSG!N^|_&}1b^8wZc-Mq0X89imXuugm$PTHDMd_Vvq_$rR;^ejO=Ca88)KvD zwC1`AYH0ql<=b!`%=;#(s{72Bd-Y;XSo_@6{A`*$ECnWMoVDGkc4z!GpvMdaNR@fb1m>Pfc!S>i%}450PGxlMkbNYNO3xc59?ZEO z^BpP9ZfX&cIfLcEmOvHWEeO9crA|T%G4>{#Mkls(bCSIbXMYDDvtb^665*+kgsBf! zyu+(c^n?xGU^+<~xsm;~qqZlpa)y()hiq|Yekyyrm-O!DV2Bp##hhW;%>(!O@mY5y zLU)%n$Z(#_@2pJI^e<@n-8ET5=tsKkfh3bCk8QDN5lV-)?PG|3Y9KxP9rnvn%+Y)k zp(np=M0xF)HjAgi-{hP^bTZ#gU&tGeCIcL{?tilXeiIMV-*M7nYjm=f$F+5EoV_|U zwRU4cW|CCN+)whGxn-Ze%($fzwYA2~Q$AB!`_8=wuv?OvoP2d%TOLdMaOh(Q(W%<% z(}qRZ`K_I5)K@H$r!2;5Ux^kl+;hs9EPJ6lYO`+H+cI$s^^>hN8h0%@DNFeByCOpk z*sE{+n0#hKuF8b0FTyIlK&25hufWzq^xM#0dg2oUK1qc*1`x}T??@MOD+}EklI2$M z{QwEy(n7;q(`-<+thxRPV`!5-&21kz0^%d;+(HM?xX+7NU@R6o) zcZ_zT)8iI7o_F^5_JxODhW}z>gCY#$Tp1#n9ex!Iqs%I=nlfw6$(FZ&Q>7Nx_6#H( z7Fv*%3Tg*XFu%O?Z9BcZo-=Q;ipIRVyY^F2wv!YZA!}B-Rq^pl=FLq-ilr;FyFj~B zoQa*_P#paOyBuuGbF!Pwql|qj-R@aKA|8c+yAp1_i$K9yMQ*;U^gUR zu@j;Ckt2J*N1YgH+rhs0WbGhIQPh6eIN=v&I@pfqE5dkb(dk8s$WC@k+{$FGsv~;R zV2Kc!*4|h@pf|iU%?CoXAV0ZfUbqo{mXF^U)faF(@*JJOz_%v9qt;jI)9QJ+8#ea! zYotkp%k+ubYJnG}f**ZMY;p@95zDvmlNA1{Htj{H<&9VcR47t_uVSs{~`k#!PRe$v)urAW>i)fOO> zegCBqlVxY}`9K$6L;r5iYx3L_uhxZZ+@lSZhR%Q(Pv<+C&@$^WK6!2b>Uh> zcH9|5&m;fpGAsJ1oQxp{8`)VUI=aM`@VJGsf-1*~pN7>7AsD8tf4`M@Prm0ZQ>YI- z4Ek)kZnMPc-^M~K^qO5bi)hJ>%5>go1t}j5AE>?9o`mAQ5)F8n+LU!`lQVqkd z!6#E_*8T%EGIJqt;y1B?nRA4k7}PH#%c}SR9I{q_RM9$=VD{OblvrJbH{eZa`!8DN z^nLi`2X{CTV!OBTvH#T*jwa~Ld&$}jwvX)43F&Zz6)Dl5bToZf_6q>$jgO#)^LZl*qrpPLjO0Rl&szcFfXj=7l@o-4;(6f9PR$ap?F7hqjJCqILY? z=A2$z?5ESTPSEbpSbWmh_>_5kW~J=k(p4mLGT-L%BeT5&c80}*oWQ3i^s!!2m=GT) zHReS>K0@OUYoEPQOngK_lM#Eg(c`!ZU`OeEC@}6U&fHr_-cc`>dO3qD&EthKeqNQ| zl;az=>CU!!3n$pZ+jng&G{^C1K8@(R^3+XjmrnDFF~bBJXZqgO+xO~EV6UIaPx}TQt zWut5w$l2+hbs7G*5~-b<9{T7FEz}*oBdI9l^xvG!<@d4 zvMIJEk*tjP+KXIT==6iw(HeF%ODuMTRUd43YF5%+lC>HW$*c!^60ZptYa0ZwGL+YA zdYcd^Sw`A$)LCDqLg`0cle}krWCh0yX_e>A0=|`(EQBS}6YaP1!s{(-+6S~5%ZwL9{JJ3L?R2m> zvvJ?(X3eYbhovEt?XflawX>o%-Mohr5;(4KEbg_(MfTgC{?~_~ezbOt0r{_}g*j1S zR;*nSt?A9D5zW)h-nH{0eJ7NUPGP07f!J5(efqG^;M+P6+UUODw#j1ct3Sg89?q9n z`Jnji=8#k~UN;z92soUdIu#m}aQ4}d^s^6%9Eog75*x`4Z@)7_@t!jkUFIfgl2nrQ zu5~VdxHdflqKBzV4^f69%h{|2Craym(i*LfF0)=^h!-7^HM3Ihsc-GVsP+;zmo01k0FKC_9*?N+%Yfp^zef9Xzwxip|w~ya;QC`1h**dS% zUFd8*w!gd5x}-EQo;7d!oVnAc&z!kv*5bw6E?lsr)tA!wc>he+HzqQIJal~P_#;~n zoe)o$F!8WAAA);49$R^j)qWspkiYRq#}f{pIR3~(#`E8{b6Naq<)ow?hAr_6%ct>M z7&Dd^;^_m-T+Y#{)Iu9CL{019$8fba$VOWmUl8PHsY!SO;r$zo6XV{2W%K5x?$#x& ziA-dE!%wcUh%|cMK(5Gg&zN|$#wrzlKzr4yRc*HGQt0AbB;(9+r4?Ppaav2MjGHiF z!V!m#vna=n*>+)%z6aMjn*|`g!dB!6J(@QFe%-qD>+Z+>q4nz?TEFg&kWT)*y8{H;I#vZ#eMd`7Fw?5H&>VC&bt&w{?gJl-EC&&`(EbJDqU{kl(Q zBO(-c@3L4wwSFDZlOTzcE6<3f7On}5hY-JA56(+1ElT5QePI2%2P}GuaesXZl0>dY9 zeJ;rfxx$&0lgx}yyQ=l;uC)?S?e|4AfoM`+a=grbsiS4e`gI@6_;z(AajEOorZL>Q z0|)WA)*uavU5KBA+Cgf0Qy8==km-a@or}~@3|EW4s@+50P^4y`A z|Fv2(t=LHYq>qQI)7M`=l*5}eWuh8ulKijM(x%i5Rg{+VJ_1nLo2+0mY=bIpQ2v7s zWgFVYH8FhfIAh)$Xdqc#SKlPv^3X2Oy+QgmjJRuUo^0a>HKslqC&pb2FBRpQJtzTd zZ!QkHs*EBJZ5gDnAvgirAOf$iL1B3MI(y*_)ikkgpognfu;p%8pBt-zLFGOFJvGtL z<)`as_0c4PwUeEj*yJ*`p6Eeh#*?v=s{%QqiWAAm6sGc3r6rr(o0#k-_di*IqV5fh zLA?w%u@KVMOwkj`g`N6MD}J=+fHXf4*!lVCmOW|dp z*CJ&^LSQ6Bc&-r=_iF;vjtQp`>~Yq*kstn7ct!ury35V&HR*}qo8sZgomjwN5xGSX z@yf09Emv-cGIf~g%@*q=a$XYF8#bkEl?@VekWPa-B19>7{S0zNQK_HnR zH(AR}-hBn3Rvq{wgYFMG5dkr|CTWbsWBd}Ks~cYNM7u+nF1A|jp>=h`NYB?g^P3gm zef6c4hPq6N%1bd!nU$?C20z%n%vlNB&JJH)nvz84zDb`PyDAbpD$*cFc7DrBnkwla zp`ba$Cy6A|(Nfvq63?+8uSqfx%9Aawwa3>}+Du{fiJqja$e4_}CXzpoxk16Hn;e3v zt9GwywAL%f1;tJ8rij*C4yCxu%AAN^0#rjHZLUxRZ&j&1B7jE`hN{S(6kKOKr+PsA z1SPpmldP2uub!uDx?JC{--XSJd6+h|0RdUeUXY|+OT~2ba>_wH)nhoE(0NdI^_b+q zjJEf(@~m$~h(JQMY$Zh>(p)m_*K5p`pYkXl#7>CeOPom12fK*Uv+ZK7Yi=fGW(qEA z_pf!o^$Za+YQ^E%^uuMzK}r8DRIP8hX1R%z#FIPJ2bss|b};BjXiv4GQ2SnU#E=-* zM13$Wo@=s}=#G~6hFBAPZGxuP^$>MEZ-^Ypa%C}{e}$#J@mM!r)tu_>XZOFprC@C+ zHa0~f;~Ai)T+Mjk>5>_j4T5|qxxT9276wyHd@d>viIZ06*F+uE#w!UG7}O61(GRDO zlDEbf{3MF~`U%-3TduX&)f)-YZQQ66xhC~U93LCpbEyPm4h=+WTskTNUenSA^I>;x z-~qy*Y|@)dpvECho;!_+?K9#!(u(lB5<3;}}43nA0wfcb|KT)J_i?xP# zcQuiXwQIgsh9f)SXRUN@v$fP^KgX<}Ijxkss;hLWuELK7+QISg zktBUq%HsAhIR}yQb}+f$f2jMJb??<_c0ZGCOUQoKn!9`lU%xnH4>?O*8PgV2 zp2JD};s&RX!^1xP`h|Y0nU@y$Nhx+Nk&+VjZA=`sqi=j{QbNiVwbd&>*`4jm7`~du zhgz(l946=63JhmC2Vr?oeOQq6MVBEpz#))M2`rOdkU&2DNWN9{Ds;u3^yz1+?8rER z%lkJ+`3O(JeyLsgBe%W%d`7|FISV>qzseBg=vtwzcAei z8I{$~XSq0kreifrPc+?2l|CFaQ^DH^)7HO&&urEl))6Ut3OlR6jBME8=5r6FV#9c> ziaIQUd_UjAt8*(d|Cz~S%eiy-^eRye%}8gdVmWCq6TUN7b9(TZ{rcXgvNWGF)%kLd zE^DPt1UFU%UX|yV9_)}<tRs@ay9`GRN=V*2CioI3XNed!(LT_1NCH^p^(31^Wv5J8p4lzwn5b~_W* zY&WNzeC5crj!tYK%3yl+BZPyaO&?j*p&PT#gJB0ow$UnSodFL$g*6}FFCEtGVk_xE zFzHxgdWjpXFQen3N5kM>ZYCUyo(+#}^&F6lx@e{m#6rhS7!1C5-`;8Cl}MB9j9$O) zzTxxp|j~!-oo<2k*kXXk?V0i>KsO)6$TwOc;CfH_PP0MRc_HX51`QGk zPl;Tc6n}C}HW(135+r*(!Wl+_p3C6Qj5G!XBi^8LraYk@({Tx^fZ%bWb;F989HR0b zjpvXIQG`YAGL;B`FQlcoVrdQmjET z463oA_IGpAvRxWzHW`;%C;CksX_etQz2<%pj9Q})wa=bnhXf~$JDYJgW1=3u);GCD zznR>s_XO-LR%=&@&&ZTpc|oPr5-;b4Hhk3E<`x@QndwV6UcH*A0dyOM;Ub%1N!oG| z{6{u0n@O+f#t+lv-b1Y&NXD+VY!c%gjTg`3ddq8>cZqlw zYKe>?HX`+hSQILGkYPtPhKMIIi1;QGZZ|0|PE?&j`<+DkX1!}!PE^n(6A~vIs2C#T zt~VEi9csf;BYLJpnHtd;XJ}s+(j+>BiX$j(#=vm%uKFw>4f5=gArm20j{-M2s>y4( z5=JIQYLwPYwV@HDY<8)Ug(Yw6EK%2}pckY_+7xjEdV&~8#H;J``YDOmnl4pi%|}iC zznTrQPQJYhdi@cn?SLri${H=QlVEzQ0XYrQI)o{axBy*xWCXSST=)Tuj0tgbLWOIL zL5Kz#tLEc1K|NCU4_Sg-H*N@|o~=g`Kx+s?mMDS`olpfWS;=^+Bn&ULaS;}!Q5BN& zYVqX4kuksJ&s?(P)+^sjiSJUoR<2?6OXq41rY{aqg_#>Ugxi`@B## z&eIPHT31y2s$V7plptH1q>y$e)MjcZIIMJ;eISC!QV%Z8RB7t0bG>Ae0uy>&Qkd(^ zZqPv8GJ1(!H>^nY6*P=Q^}P_i5S;1IF-fFBt~_cog4*DuXk1`Ul%55eRqX8J7iOyF z&~Kla;M|@O%tz&^PA8&H-#=#d6MmF>Krgd10q<;WXZd2qMEl#yH))S)nX<+{p~#2j zY;8K`y@kGkwam??Sj|&X5>Td?k@pQy4)T7NW!BV?RU`AK3g?Qvd2Qi~BBescNmZdF zDk}b5m}yB63BkOjUZ482I|NX(BMeuyHe^xUKEfnpFI&5ZM0&#+(`dK{1o!IjDp+UP zCw~uFb+}T8Q9jj!sI8Lpdev|-M$`Sp?9M!EE}fpRYZ8&WkkVFyoMe~y%z$2?w-~QV zJmDKj(hiZ?=Mo{2Erdxn6cO|K_Slt--18_EJ1rq;W3^p<>jAU2g%s3$Ntbe7XVqKR zw4$Vl*<63V@m(SztFAKZlAKeee(l0_{kCsryLWD<)|N8e$=sB;-Odeutj$>_Kl)yBMDLCl~jRRP0yv`u?? zlyEPVY&qQ};P|i92`=Kba>MSZttz;hN3Ix|s^=MF&@y}p8TPt;z%@55U-R!Hyj0y> zpx-nFq*^C7m!#j$e8RMhJVx+>ugvUKPS}+lbZ~xBvs=0Ref3+)p)r)edDj9L@$-9@UE_F=iNI= zjaSr6xbh;Sze{}%j(8#c(noTvhgw#N(uYJ^L-{u5|E~vgb2bKFp284UI5=Xq=1e#8|@^fh)`$)sEf1Y4RlsX1Hd;4E~SY z5|uPc0aj^tLKdFrUT&Q%3%k*u`FHYjDU1%@>Bbn^>PMcLdm@SK%_86N}sE+4Su%4Sv=oR598LCXlssG?l1T40z zlo~w&wT?tEO4BTtUT)LzWYgx)?3wbCmS|Uc*(K-4`OZ8Qgw#{UO*v74?N8Rxi?*FQ zQ_9OjM-wv$dy#GI3?8)wdVtEBSW3eS0pmC>vKUm&j zsh;bH7G*8~xb}U!&aEzGA%K!W1yk}z9Po%%)3){8CBkp2 zzdKGh`;CBTkaLw}7Mw3bC4PzzDM#;|p5V6Kg*^uHt}a}C27bF55??IBle zDYvReH{v-Q3>1(M3aEh1VlU5UYZi?zuMF0Sq##zXe%BVfT;F9`I^ArrpUm|VXqSNS z5s!4$_Q%|&_-?;}>SzH$Bo_~qc`yiHzs_8?St!Q924zN~OqPzyR@J2SnMD?>>I5or z=?zLT)ZWl=0OpS#E$5uer`cC4Yorkl!HqxrvykL8jOz5^Y$_AplFH!JSRyD6WE7p^ z8ZZJfiXY`v#V>XX4KQs^qm#B^S}I3@EC9m0qhDrM$>PcjA9s7i!m<5l{Bmz~Z(7Ad+b%7%>1{wyjmwPuu*}^UGvKSHU?L~v*V80ixVP;DeX`p)2IgMtN50HOTT@I+usN5XQ%BxcRurHMkuf{DIXBKDJJ9xVs4l%@7u3Yg1f zB1k8+DkwC9H^L+v>(&vB+OHh=b~23eH($|?@w0uB4Xqzpy=a0$?Kvhz4mx1|(~3P* zXb(bRxf;*qq?x7~M0@kxp6?_(IGkj&r1I8=eys5)H0z&!pS4w5K=mAENx(M_txGa% z7_Rittsd>qlrDh>AWxqGf^oW+$nX_zbs0wC>r%U4y?sh}md)o@_GJ3&oV+CbX(oDA z-QCUfp^tVd{Tos~kjU9BPZ|#n6|26IrK)`9BgQn9;X|j*xg#-P&j2U$&^_k?7K%^r z<0jPT;ep$poiSeVcnD9~`okfmP_7o;S%*xx70WDqrZ9z9eTI86UCH>m$Ui;Xho2vL z))DDemTwH)mta_VzUk~NFtc*$*7SR6I5o4OpqxQW+q~cBFwp_UYXdXkG6{u-i%&M{p}P|ew81pz+Pr+ zR0TFrrFmpb9JhGGpI77U`*8eI&uB-lvP8_tJDlWeAxbsi_@zo4WB@{DKsHU)dq7gFbv+~P z)tdwOR?lw%>0E@q8PJ%m_HVT7aie0R24Z4_G=&gQnYa=%QA2)VwI-`Mb}lSm+yf0i zb|M66=NFxxEy;q;`m6;GK{^dc$kGN_IMMADoW}9uI7f6bB46$P5dOj@&7lY`vbd6i zGxf!Y`h4-^=mT$n?-?B5Kf7|6fFy&zd0tOiJda8E;D^p?+@gpsWAx;mu<9ZqnObf$Yi%>AuT{09FABe z?CnZupeqD3i`^Rxb2EHOGm8=aXykxdUV7b3j)DTtSteHbfd`3!eFVgHl=qC@=83+S z!Uy|aWz8HuU($SMe}8wAPu<$5#pj)DZnA9A_}X{2Hs2l3HhlHfe;DshW{>|ZUuH2) z<6U2@=jwO1-+y7`@I}akm8u}yR(tA*c2C>7c8i+$<;zly>>}ycK3)4_kzMi7Hc_{F z@Hr<;7xZsz3r zUj2!X9b1^nmL~K`DQ(mR#viw-?{yaH-N+xDEn9rgQ17%AM)SFBzEbqUMx!!lQDH

AT}JC$cfPB$RXFGh3uLLzcyWrnwsB z={2>5qu|B~6$vEa7Dr%^yg{o4MZNLYcWk|*U0YhKt^TMUVPg_6709VoU@1p%k1|?& z>k~WkNq$D{%LHfzZ~Sw<;l4ZG^@s^e`%2@suWaUSm=Ea3KMhm>A(8M){-FxHP7_8> zh3_S?`B`M4qvqIcrXW)z3bt$71;*_OIXL^Gy5v&q{08H{jbf z`~9Bpc-rT{|H8I8ag9|}4%YV%cE=mnybUXIX(Pk?JTI{D*w?;kyp_IN`urP`)Y;CAb1`wFuFplRt14@E(Z> z3XUXjLK{S-J8+f?;oRa=V?VdY)3Bcflv2hJ9&sWv6hW3KQexw+Mg@<1Xvj=9{G78D zd#mRR6@L_8k`&4aAU@7B?JxgHA4u9tXUAPIw5BI z^bt;hHNJO@>+d~>T$QBy7g<%|;al{1P-)tTL8+M<>@AF|PD7zby95&ULnh%v(IT3} z8;TOV%CsxKh{hFu-?tCg+g;WuS-C&4eUvL9`OhvK6y4#6(T6^WL{*4~653WAl_Fvq zj}B39C+}^i8+LUuM2hpGXTrHLzlU3J;*7IAbfz0bbKLv zY%klbrX^m<@;RMh4XCM^5g*O92zJr$Lw}ktTIrZ)d>&tFt`+n95q)F4zqY|R-1MKm zxwB?Z5VxqrKA|HDsSM=!D=Fm9SABNkaN@46A^=@cR5;VKKT}U8gmJY0vx4Y#Ek_?> z3XlzEqZ^vjB`qt3QaEO{riO;(B715NWCpZ_2UzKk?e=8I94@6><#diPXPQ-l`t0cu zDk%dKi<{$pUm3YS@T*F5)Pi^5i}}h`fIk_1k1K>N{RRHtcurxR(&dZJ3DO51>ok8! zS7f+s>XA!A28T2%GFJtT>ea0HWW1Ul`V;x-*#nb8XF3o$4U5D~8%VTRavG)B@W^wC zzxY8?VJlqZcuQM}^Y{4t^hSB()~=ure5U~^7>ueQHIzbbMB9>D<_SLjvP-w} z*}`(AL0gb2`|YmuORS|GDl`8xK+QZ99W`2XW5uCq^2t^rcfT0#Ff%+l_Gsz)x8tdY z(`z}6B7WenEJE_1%ST!BuqN>5NF@<1gn1FTWMB5#42jn=uqUa-bQ%H>c8dVSR;0t3 zu#F@2Hg@L1V{yr>bW;_!G$SD{WuF^G{tePwwiek7dqLt_I8Jnj>Xr;w@t}ekJCtX_ zM@Xwiv7Ic#%NDxXD$ta#U;y{zA`+1$5uE+p?l=~}ylcrbTkek5R2TdtOCYge1aG!M z6}C7eoPY zW4G%fXb=`bf$6Hg0HR5u!^-u~xBOz(r52j_ZYRX3wSZs%GSG-U2-`~H>4fpDT1}9J|&u~B4hoyr6(VKHq zj~<|)l`w)LM}SaZ)n$yvPT+jw5NF9$$Y4z`TG(;U18aE_Zb=*7n% z8%MFpoae-^ydkcAVYhl4cbB~&H67){)LmznU}&4amVPYuzh>9?s23i{rtfF+q-+jUF?O zq$(ku%^^3z6PHjj(Q5}=TQq=ZXiV;Bc0)1H(D1DYnGo;N{A6=u z|8Dbx?VSUw6RUK;xxPE*dmC*f1k%=9M2=`a&2a`3&Vk92IfM%-7t3ff^T~-NZ(iGn zOvZle`bxSX{qmLafhQ38Urvl^linMeNqyWob;kS5!!EG$?=Q+5rGR|Z5xm3$Jf8cPGn@y4Os-1f#K6(F;noreQ@Qz#w#Q}-s@Y78Tisyvtnj{sJ=W;M`C|Ey3{ z0WFeLE#?-%+1@23&nc#)hHS(U)wkjKSh|jt`!uG;2BUC^ROPZ^a%a;jQ+@6@V??8j zCeZx#c=OI(D}6ErM8qWkq&HEql=qw!!dRGUY2S~0(;yn{ETk?M(L_bNHPSM-46h!@ zEZtE@9z6@Yy`IobvH%H69_5)7FkmcaaRQ;T)PAkVw3i%YVwMp;J#*P)=j9>i%_NS( zrpH;k^}3!j#5;Sh6NgDPPY7B=4+B=%Pv*1@Am+8x(1Z2AqZ4jnzIY5`+Q89dl?B-o zN6AZ|1ftpHJvrjeIQJ>%pEpmYALU6(YR)0luoLvDw^7e7@1@0J-5Jli{3Af1C7CV~ zD-yuuNmH8dY#oS}(?A%=R8a&G;R~ALt(O^JRHn{roS&tPe-+JL*Eu91yIkAhY#G)1 z<6R7`<*;vd!trCRmEYUuPm^Pmk;p3`_^??O0=#YzZIuJlXnq zZ_mCD)@w4M!H~GlAtA^itmfc6V-dDY1gy|T`gK%^Ch!H9A>1R^tTya&kW31u|Er&! z22CJEDhu9}0Y0oHE;aXUMWXpiI7{pd&$^0pw5|?V5=!I|_KT@B!)(8zSV9$!b+WkY z8&Yuqh1hfCR_K<%jAKLhuWC006q4Y7v63x=oam%2`%FupC&wF0lK7zxeCIS8uAoU?F`d{#{(BqaXQ9KV1zDwu+oTIfd+8gW_?LSVUyMwCP& zBRCYKsSgGV*~rm8`XB%9DHv2eLABT*5ZWK#*|m?nWhlWvVYk0K35UVQk1mc9k+qtg zNgf$W~yE@(rPa7}`0C zOyXf^VmtrT1nLpniT8QM>O-WLr_5fZ=7z7`FQK5Jv99yYXx8DXLh?4U>}H_J?q~;#|qhFcE=91 z!D$?*!Ngjx6<$NJtUi~3Mu2=0G{AvywvR>inF$qcwF-plbHD5w>`_H_X&^e&91*jU z7T~8~(1M`ijam?6{L@sT<$IWd50*IPlWn+%7X+R>G*@+xm-XC}spzqo5E z^j)w|GNc49q0AN<??6^{NRo6p$hBKCZd293ONG5 zOgZAfia4WGv5@t2h+SLPZgHb0M|0M=do!(yS`ASUa3*kX+6SK3F1!Dh@vm#T_z z`{Msi|MfcN0KXy#Lo_gp`OXd}btN|CEsT@pnH_nUiu^>zkwY?do7km~wp&5rMA>g$ zfX%!4h-k40{mJa12U$^2(~e!-_j1AL;HxCm-vGdt^z8TwoiIXZeATobfy7-q4#pqn zc`yXg<+73xvIJrspZsQWueeo~L+L2))A5o|^9I!-2 zA{@LNOLCv@ou?1W*+=hb+Qaji{!oiiw~}IS_^7WXRvO7>x>X&Vc^`S+F_@BA7%izH zJAap!gyVE2M%WZ_!Eq3X(oX{bh+J7wJYo{}T3q+#rqGVAKe^99Yo&sJPIHeo+U^zf zA*&Q9jabS@wn6BzgTj+fcK2@~;-D7^YFVg()p)3f;AcX3z8T!yTNfS%Agae&kxEdF|2Su7fq<99=sWKmsr} zjv%w__(Q#o2gS~@#kqbmW!4azK;EO;M;TgtsfE`VKBg81OIw8%@uUJFb;gq63k|B- zQHIy^8ib9fISJ<5qha(W10-*_Ye3Xwd|)@3 zNfH(en&&ok8qMU>kz=wb!%O&U9oW{%dk^9qMkv67v1Ud2y)sd*=3-IFt7j_cb$Exz z0XGCU;Z6*1@UL4a15mv5{7+RIzH!R&bIRdvOk;r!0vMScLYw?KkQ}s>c<2mghdy3U zd~1Gh)Sb)>FG=34iLGQ{&=EIqP0nH&7@dwB0@}{jLQ{vO_{^4>SwApP9ZgR%S4aMK z{N7&k&e%U1ihWWD%s_!C(fTVc3+o@B*g5vh5oELjG8J_V5vk6EqdJFOwn1;a3EB{( z^h?CU_!eaYH^%1q!hIEHORIwpAG>etzAnQ6BR0EnjH z6@G@jMV}nOE9Zq}rIY}paFe|3U^c2Y9}yA^F%c|pk%Gc7HTS=A=r5c2BVyR6wo?Oi zBe{E4$^EaB9DU&Ouy4Sj*ZgaJEu{xL*fJI{L_dbmt~0d21&AZW01(9R2-dY-%a=xU zz*S`?fDkfIWkV^pF;fRY^3;{n#Ui23wDS=s&6M>(UF+enh_OLFa#O+sOk^9$k1H*$ z4o~t>HrNL{IzbKrU4TZz(VlPDDmpqj4f66&>?K_|g5L%zzX|QXzr$nF$meK9zM16=oFv8mTvl|ImDp9hcM=>pWapIs& zw|aex(u1*pDGF;^)T3ce^0@rK5e$F{1eF<>jCR|uo?)Aj|6`WOSW9yt1O#JfsNUF> zBlr5|UV2Np+%zv|`2cxL*89$TOQ)&{#IE{Qhh|2R&uE9liYR8#i!k7vaiC@?NXCE- zn4MZb4*=`ysdn@MyMt5QCO73?4;0@fMGJ9H1S5%;x1hl&I*+PSVUW zcgVg4dNsd+BqgimAU;E5+0;F)bE3GC{!H*Z%+n0i36Xo|}jV zBzOcrX%_(?Htj()r=AMK<96NwLS!Wr6>Eu5GOWr+I(9jY3H*l}0u2E5>mWkCDfO;g zCqM^m#8@_DxIweHfp=J;2rJNis@|HsH+-^s9|8lZ3RsF0^6ZbJA8p&Dag*uY{@T5r z7xw;=-Tap03wz%l{fM8z8*{dADY1AsezsK{@rSR|L-ftnAKke9`U^cm)9+e0Cbk|< zbA#LeywT3@?#}a`nLuM0#$VD~8?>1^k%}A}_ucYAyXxvnBlw97ZfSgwhe=e)=Zc>BvSyA{ z%noav(o6I~v#G-3%91pLR~=JwsK)#*uC4~nK$46A8Vss4y(ht8?4YC?rVA5ULOc2q zt1RvEyg^wx58~=rd%e5r@P1>wj{~ip7R6uSJtbCy@-Ou*ZG7%h&E$){0Goo9_+q6_ zxd1^K8T!JXB}U&>!t-VkA>H&^&U>u|QSMoK&`B7b;ctdKQp~cga|o zB~hS!mCW&m@0_o$EtFH@uzz5EDKrwVP&x`VP+4|EHJ!j&nG+6 zV}gL!h#;c;O+}J=MMZOL%59Dure!or)KID*Tc;?BiV(3mu5t-rVgjyA^BZUtLFj+# z!z6a&1H2X1gqIG<6R*)yAP;LDtGLt4UyOt;1J8qn1*j3HiaxAh2gCVG1+np`EV4+t z88(fN7_wc%W0J@TnrK>yr;6W$EH2&LrtLf~BLlQ*;mkK$TG~pA>2y1Bc(J<%wv(@h z%gAN0MeiU2dNkk2;A!ph(w$zkmuMQplrQ{CoZS1c2N_4{-}HEG&m9q9B|{Kc$`?ez z4345ylD|TZf4!MsF6s|Aftxkp9hTXT&*B48u<0`g8_NF4FRx3MJv@YPOvjk|%5J!?8!#)EBR1#$%%g{% zFYH}iY$0U-o8!oX9KS*jFYBW2i01alYOkIiS6)BtakZx1ZV~t zlEC7nM+>kPU8)+G5mNy10Sns(_}lk!1B3grZe9oh1=x*8IFbf8TBwXDeNmj>Ro4Y{fawo=@lTP|M=l_*dLBktlqRV%VP$%|%>g)8t8&lOH9F1P`ZK#eoKegaPb zf!p9`o$1L5g+Lhv5;b^UPwXjneQi;vL?_Z4RDz>kT{4n7N^4p?@ibYN4wiyp?hpr9 z2a(j z#(`V$;b0~F*(PNz%~_UU#? z#*XqKr8Z$z{m(f9zNW;VwF}*%5_KSBO+qk7+SSNb5>FLeh_UFn<6JVJU<))(z@W=$Bry#M* z!4nT=QqbS~S8guRE3bL1Zs>CU2#ndFcYRVj;({TZOG8_2z6b!!iAy1Q4l@djHA_Nw zzetRL4S({#1eU61&uY*~LlbZxc>o{eA>#A2UTWulMn~mvZ?A=??Q)0~{3KH{yQGHOh0=(IpVEytmHJVsLalDz=qeH6=qbtz{czqoKLsb4p@44_g1}vyNt9^h#wY7GWrfi+^~R1?^i z4>O-JpJQ9Zgavl_%(~>Hb?g%g7X!li6wP(}{*1$^N-exA16^SyWs5Z9Z=z>&sBhfF z)Ew@dff465!s2lzLk7UAWz8Vw6oKscshI+qC$~vvQd+wM8FUe;^OSTCU?UICib};C z3tIkA-FUa1NGq3<#h6@x<^e=1C;DKq+J1X;OUtB1-jt)Od9DwwgAZhToGWgYngl!=q?nN)n6}Djwl!dd+B6dhf$2w0 z_PvMy8d^@4N1XCJh*E;YVmu}?m$HG|Gb%1n$S8@?6`f{nj8$e)<4vjX){UJ{{V=X^ zUUi=nMFm@!k7T88jKjE+>sI{sE}b-~2W$>jxaCQW4a7I?=N_8|zP`CVuJ%|zX5>E^ z)-Ylw0rZ)p_hV%pYbEP}ymkQhInFqZORf4UXVg@ok-&+4Fc)cMzBnYg@e>GDZAa55 z88!}@WLjY8sn3znLC9!|IY$m;!mMT^dXW*O5S+~@k08$tfb#>}J^B|ekS^<`#sLdN zqqY&5Jy`T%b9;C49_tC=GR~XT{IbGFWH!e39>uSHas{N25EtZme-Z-EaSq|so#zO| zVcfKd5}n#CVjZJ8vc8?7$_XGx8NdOex}Ib-0hh>RnuBS$Q&t{(?&|J%?-q+>zOZ+t zS=-uw`O44ug6qVd9n3ZRPZ{shbPzz0DZDK*@#`fRJ;;~A5sUZt z);8|hYT%^jPFlumbhAF%`$7FjLIStaribwqmVlY=JDqb63`G=d=vcPR`! z%Y-c->pa0si9r(qOZX8(c1cOCAxX0=KZ6E0xYpsbD--0T%t@&OGv>MHowP&a2+gL_B5#>oA3W@c&ft^o`%5NsY3AxA~6v8tYFW>0w%0lAcy2 zX{s!Uq)^z|)yCZT4?G)!Jwn;)3mPy(6&bLxyS$Ik{NM(sIW!YZGnC1re=q?9X`)(H z%UTl1nCDGv|cw?hZ z&9?LzwCs{UF}b$xZ$tXxx0x2TQRrp_6nEIh8e**m(hgXsK24}m(?N`Z&+3vwh~0Sb zz^%lOe$upz4sYm+SVMQwAj-20gqVFI66HZrGg)Ltc^p>^XcQL_7FAl zJ^y#dcX&PDuS)Ak9CsN$JU$`GmMlmS@rOJJLLF#?J?d~Ue84=iQ?(LFN-L$N0-Ov@ zh|T0EvWbsyH`ZXuP$-dPR?$N8@n0neMMQ1t5EG`yc^g4&%OnRkqb6fet-%l}$VP-{ zOVF~>T#)Ngx#zChJBGf<4SI~5VJIq2GhW1)C`b%adpLvSda=x~a(r_x7 z$Lu7_>@NQt|PzloQ!u00C^_}oORs%X@mGQPtAv721nsj_>2KWMx+Vn*?{GV9++Me zypzQV6j2Ob%Pl$>Y4SYPQ#S`lEigzM*>?XZ!sPZ(#|zgdt+8mS|J4(#&@lpk9NbIE z?iOGdij}M&X}Dz?eVXqhs158Upfn&uO5Qg&H}7ooP8_h%T@zmAfjq`Bb&QE)Vgk~Y z_trwar97;_@&`Ic+mMW@;&jlW=C|OJg-K(`i;W~W8;~+GING(0eNjY13A@;!+JT}% zE1XzhN;PB{>ZcwNB_1{jDvrZOPMPnX1qKVU=Yh~sT_;|;9YqV|TTIvjC3l*8CKkPR z=rBN`6X9_w)k)f&5sKO#ZaDTY3RRvBN|8n1B0TeO3TG7}u%Zv>!I2ii2%Bcd*Z^5o zNuY3iJHK$$iYx0~jc6)#j(Z0%gaRQlPy5J*ym%ft3dNBF+Ap@XR8hh> zf3|=gL;)1gU1htzs6c(fCk_J$hK2MN-t!sP7F$IJl|l{6ALrB>P*Pn%$;MO=ihYo0 zao?6L=QkyVE?p+XXF)J!DPChQ6o5!=SS`|p5f3BMS)21p>5o4^C?MN6!3ShjJL83}$E} zuMHiaE(_;NS&53-f@B^ z_^)}7%F{AyDppq!IY15*YJoMCIeRYl8q0%@fv~Oy1Ozw>56g|0h@2A~C`4Ic*C>o^ zkXI~pYEClN@YtGGSW$snsj^7A(Fi7m$Oqhj(CKT;?G&%1=HDD>Z3%{ax?-!cP1}f( zxim^w)Tfz}=)xOy=;7lTDLbc; z$Dku&7>$O{=s9|O^6q$hL>ZeYQhisU%(qCpZe9H5n~Y%2bE}sa19m7L26@+W@1c z+C{vsU@$@o?SX^YYV~opoeub+riy{VuEGCZI`NkgOWJs`;;jEw_g>VMQi=@ z5^|s97}JQrN1sGjFr&j!KBxT0O-`RW)LxQ^vR!=aTN$AT=i#i8lpT~|Kh=pqXx#1> zO$(&=iFOk@PR=HwQ)_v3!=9A%2qpNRCc;a(GA#S8a+!Yd!fhzuiPh)`8!FNu(V3U1 zey!-01xUf23BE@N0uiJ~UdvRg+2!C#RWcvssy? zB5{U!noXGl1a7aWZrJlf`=JG(!I#m44Ju$gxOe7P1TB#vM`aKPlGoznS#E?Eme557 zV%VgNKqpySUSF{AGejDw;34k8j`LVka_zz#jLCm6^L$qR;0Dip+LZYgzsvF5RjJ#M z)J9B&c3H*-T1#-@Y&9YLZqk?II>Y@U23}H9sGezX{8$5;kXr(Xs^({&^!U~Fp%~S7e^2!_{2|I@@it0?I zIiI-MDgzVFjNMri{nLEOgJxZ6I41{wd|%9}^0EW|&Ag1iYJSbU*{>47$W~XRB-J5U z!otBxvV?1LiG1AzL^$e1K+=(k1KA3>8SPi~<_3?>2$M|ixMt~b2R0C#^Z0`nLMk_i z>Z;~`r#$viuGs49iZV?2mUL-eg052sZdIi=d0{s3PU|B@k98e$c6~Ccugv~C=db|GU631n6_ zUI))@0rGuJ?8SwV6P;*IV;DNAx28Rh`RqQ3(~M`_JGY6{O@89G5ws#yum7ff)dElp zoxuQm(5XNy9T6HTxFqIGd2*MLNuVF)0h>{jT@Id%=AX`=GoGdqdtm0SAnVqz2P72= zJ~Cp@mlqU$J5>{%km0nja$2biKg5u)>~#$8%G2qS>@8ff8_@p49L?b^ehIoH?+N93 zfrHQ0FQ)pkb_IgyNlHENi z7yN~SGy&F=oC=Wf%y(2FAgooWP>_m@OQ!OybX#>1Q#zh`a|n-0B?@(;o<_1;s-7EE z0Z>qRW)5IqZGEIPr8&4=8+W;IVhuS4D;O(5@%MiJEA#uv%L+816(MCKCtaQnafobG zA)^{GFcXu@v^d`@N|&>4+BeY5Y5}J7Tg^AnNC&SKeV-r%3rnyetfn+%*1TUi&psTq zlN`R)Il^w8;dQ1wD;qNp+lW0~oN_TsxlrBrJRd@o0s@H)68Y3;1U|7@VnQ(!#TL8T z_trhcaE%C}aMhaeV|!4_=PXorpFgd{<}>ScEvUq?M|m7AQ_8kQZr*$-q z8So>;S54tnXuEtWJu?&Yh*0z9nHe(>N1xa+6N%|Mbv|Or@ksK%0VG|-MEj=|``(Ov zhR8mg1-Cs5$a9isaMhPd_zf|L!EeD>`3$kj(UQR1t0+Dt-TigrDJgG1t=LyipQ0g`#`MB#rj!pd zn_#zY(Oo9N+Y_a-3|HKv$RnGQFn%+=RGY@T_ipX)u5IsW8cR*NOv5g!UQwd+o#y$u z9oXWSZc*t{5dkry;4TmoiMWNGe<{2Xk7$%!Kngp(*UU)d))KPtvHb4O(f;c$Hyc^5 z&4fPA6r_t^9mbn(^+{B7?MAs)70dz_U+CsbV`xq%-EPEQW>evNG5n&!geDuM=8dU! zfFdJ_6sW1zhj|H?C4ME~I~{1vI7U%D{3|;=O+Of{lx!jm?vRV8tK45`n=&7Y=28sw z+YbK7seeEm1kU1yJ+fMZs#lvWz8)tLQWeYYsG((k(CHb3FA?cYtd;J}o44lYXn6zT zSrqS58-`cVaGrT^j3iq8&~A~6VeneFCUI9)%-+rFIa)aEk7tq<6e+{JsX!+`(yI^y zh2ihUyL+3H?NR!dzBw~y943INTG2{#LR~UF%0H8QsqbP&8nA&uxn%aP5Q}fW_It3u z^1qC^=Cpr9*}=tZ6+wuTWR3oAbNn7Az#$=*VDclf%id&>6-!jKQp%_8=ioZ}mKM0g zXP&8{h?C(F=$`5IfJJYW7gK2Ah*fA=juo_+xjDu$g&`@sng%;3s0YkA%ta#^F(~G6 zvU_K3d-I?CX4tKzd!^ZStk69-;;l*HV~v;1j716}JSH>XRu>35poCnq#P!Y~$r0iO z%f&&qIh)4v=IY@)n_J^s|9)3r4oHBBmV&w{C@P4@$Kf#wL4?yJ3F>4 zj5^4$KRucL!heOL4{ATp-*H8}rTNr-5R1r8ZCE?60OXP{2I>yrF(+_FWs7>k347EC`V}FS{|?S>hAJBqJna2mKUoDN{Xx z1|i8w(acik=8H}BGm+Q6XM7aEr>@a6GcfA z?oyrC@o<$aD|{8fr95RfYi6Z)XgQp+f>W4-fi=7-6%e6sFrtz}R$nuUiXGZyqCNJ> z4&JH}km*FW$4Gw4S+ye!h$Pyn(0XV3cxT7M7K^ZT23anp`1;({wVh4>w2QBc_o+IV zl`a5O9_5h&bA5q_we|J!p8c+f^vI`9jZ-+1rOj1o*_f;sP1AsjEkws0$-3G%Hc&wS zgoS5xNymou*$?jR6loNOzDRCN-rMf~gkQRZ{WpfmD9`@^CjsbTNJAS(K@Tt?198`I z1HT9qBTgqonMRJZm`)$0LR>LRvLpo&btvF!N1R98c?Rnvm?(k3VMrtd$IV8$0f~qo zYMDXvH#ye4`o>Mpw<62_Fei4`-fRB)?KfVRP_vdTXpBajloqIQXdEX%CRC@&I5$e!HjT^}$iXOc zDBWP)qmIramm8Q<^H8H*CLLwojeeC2{4Y8cbb`yw>jNZX1DS<`+W5>vgbKR$F~E>a zF4nq=d`=PyS|vL5c_14c)GZ1YR&azsF)M^0a1YRIVQ-}3ngp@UIZWc5N&z}_kPgN) z&LP8gTKd~%+Uf#riv__AM*zn^Z?4?5b)zP`8{^$8%{8yPb<9zk$R}&qK^(^MHxfjE6x7q{?_>AD{rI&%|9M&uD=VS@31`8_WJmWKTUXzh0O1a`P|3O zWXG1_NJrNv+xx6{@$!}Du4aL^_9v6A{mmWwK!{ytT)Vq}Z|mhN`@09@E3bqSeG_Y+ z1*p;oK#D6wA3Q}+_#%AR?QnoLnc!tA-A^=lNoQao*)&NcG&&;OGG#LX5kuAz0W~6h z*`~Ts+EPy~`{jX(41^18_nWY?Q@pVC%bZK98s;s0QHsbyfhHqq)T$*k1tKvP2k1}@ zYHm2N$R|!m*ZLqvbDTElAxFE9H1~+4A!(u-7-a!5N`+7YnjqB@Up=$hk05@NO$Z9P z!3+VPW4h2zV37>Lhb0d(I|P@V1-@gq5~E?xC+-zTutDK4Cl?w`vYxo3EuWB$v8OIf zcq1$z0`Fu10AZp85PhgiYw*QiOyaM)S^N=6Yt+$Od_bPO!CYwz-~hm__okji<`bQ< z62U!8s`YwpsfzE&ZT$I=SZYZhLOhJK5d|D2CF5Z?sC^YJ^+s$008s!Swh_yytTPh& z>a&C`*T1#6Q8lf=PqYWg%01Vro)I#eoXz(cPh5&mmP90ncw=qv?(GR5V?x4IoMPSf zo@)|tOIfJiqM_^qP241H6FuVt8zfwe9oVPJf~3ltf?O+EiZy+dwkRqp7(hQLhVfP+ zF4j0FT6mx$9A;`agZ9kL#B(ft0Q^{qI&krI^Pn zxGSX?h^wZw+5Ki((P`82i(sf`lRIQUce0X`qRdnTPKG6?IAaF_5LSkdTxyeu=Bh2> z%I7iGY{uy681rUeL-i1Lw2qjq7@MWY;n<^>uIs>fYwU|Vo=Z7mkr|bQZCRc!oj4I0 zjkzbuXye*xjs`Qabg5&}sgY;yG4$AJsHlQ*qu!nn1*igT1M@CW6(a-0ZJZ9y9 zM^xsE8xE@Z)J-}go!trAdyo4AsL2X3(wB&#BSb<^EnEi|0T?ADhWTpz)N#L()f0wZ8zt>hdvZoPbj1;p?IXkML zIEW?RSOctB5kl+}QW#xxg&ZuX;N4LfIeeM&oN|yt(F=~yja&fr$GJYy-G>|(DJtfm zm=apohyfyGQ>v*kwnS1np(;TiRW!l`5Km?o7W*N5BOpl4r@ee}h!aX<=@kYZ$m;Sy zWTmV5F>+CZ{W7(4YrAtr8jaGwO^wYczmS0GN^Bg!oHXN5TkzqK=WK1gcLm2&e|tNS zLakZvbj4bBOSXUJA*at5UYCxJo*Ye|9Q}fv!>8^^4s((wZ2XIF|F^vH&$G=fgo+ue z#RVt>1!N3Is9G3fZ5pSO{0+N-*cPCkk^Jh-zx&JP@BIcj-4z}U7F8v%FV@WTblq40 zn9v8aQlWgpVD+L5^00KmA^#{Gwrar0f90_~|_wa?CT$$n0s5toMyoPi9uG3|Ai6L=iCj0oFR&N_4n zblN$m4dBum`_utjP120Y^wGTW&)4qlY>i*!qj}BMjL`#g)bAAm7}oF?#~GJYW8#?w z@p@W*HQ-asjW;(`*ybm}|88H6pTi+U`3OQBH z<*ICL13GJFrX(Qw$To5=l}S#+b`=U`FS{fX=@W&t9_UGd$n%sA=F&R{TU*Vce$~0( z*e~YTha{3lddceF_Z*rXSE*J>H>P3NNo}n^Q;#Upno|q`+Qywzce%32M%tqfy&dwr z!lX<0A;0pF+rz39g%`aF_MGQKzxK53)-`MR;`-jtMm>%0y?-sz%_kN(cR4S%s~WE}CoMF!3dBX(G9V92Z&-a%JK%a%N&J zyx$O4+37K5i@+Cg9ch+WRgbdp*wbGV!3zVH<2*}Pl!)_ZHOVC zS@)cmvI;4H^xNx=tGCS_v3BpoAK7j{3YA-8F=E6ul;Stq1wbZQ-7$vgseeEzb^(We zAi!~A$1Wt(HsUifhkW03(t6PSFeMS?A>Id(BNU0R%3^x=%ed@v)0ljm1BBglOEto0 z32irOHmz<2U+}n}KI4H;J-W}UtVo410+oC3-9FFgQZ*+KP^Y&&E`2EfAvVZ^k zqr-Q{@88$o#z)7~%tw1h8KgB}BGg7^2LI;pXKPyrW9w7I{f&ux_x`)1!+Yb<@rE6| zcmIueN$qg^;NES$iwDQ;vR{$Z)JTO2EyMi3a`=x2Y!kBkKs+FFEkG<-q>^ Tw?~KX-~X?p!+*N}52ODNXi&Ip literal 0 HcmV?d00001 diff --git a/ckan/i18n/my_MM/LC_MESSAGES/ckan.po b/ckan/i18n/my_MM/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..e93f7ca1171 --- /dev/null +++ b/ckan/i18n/my_MM/LC_MESSAGES/ckan.po @@ -0,0 +1,5296 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Zar Chi Aye , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Zar Chi Aye , 2021\n" +"Language-Team: Burmese (Myanmar) (https://www.transifex.com/okfn/teams/11162/my_MM/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: my_MM\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "အသံ" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "အသံ url" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"ဥပမာ၊ http://example.com/audio.mp3 (အကယ်၍ ကွက်လပ်ဆိုပါက resource url ကို " +"အသုံးပြုသည်)။" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"သင်၏ browser သည် အသံ element ကို အထောက်အပံ့မပေးပါ။ သို့သော် " +"စိတ်မပူပါနှင့်၊ သင် ‌၎င်းကို " +"ဒေါင်းလုပ် လုပ်နိုင်ပါသည်။" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resource ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "ဤစာမျက်နှာကိုကြည့်ရန် အခွင့်မရှိပါ။" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "ပြီးပါပြီ" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "ဆိုင်းငံ့နေသည်။" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "တင်နေသည်။" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "အမှား" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Upload မလုပ်ရသေးပါ။" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "DataStore သို့ upload လုပ်ပါ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload လုပ်ရာတွင် အမှားအယွင်း -" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "အမှား -" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "အမှားအယွင်းအား ခြေရာခံခြင်း -" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "အခြေအနေ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "နောက်ဆုံး ပြင်ဆင်ခဲ့သော အချိန်" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "ဘယ်တော့မှ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "မှတ်တမ်းတင်မည်" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "အသေးစိတ်များ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "မှတ်တမ်း၏ အဆုံး" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore resource ရှာမတွေ့ခဲ့ပါ။" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Data Dictionary ကိုသိမ်းဆည်းထားခဲ့သည်။ Resource ကို DataStore သို့ " +"နောက်တစ်ကြိမ် upload လုပ်သောအခါတွင် မည်သည့် အမျိုးအစားကို မဆို override " +"လုပ်ခြင်းသည် အကျိုးသက်ရောက်ပါလိမ့်မည်။" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "ဒေတာသည် မမှန်ကန်ခဲ့ပါ - {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resource \"{0}\" ကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "အသုံးပြုသူ {0} သည် resource {1} ကို ပြင်ဆင်ရန် အခွင့်မရှိပါ။" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN ဒေတာ API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"အားကောင်းတဲ့ query အထောက်အပံ့ရှိသော web API မှတစ်ဆင့် resource ၏ ဒေတာကို " +"ရယူခြင်း" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"နောက်ထပ်သတင်းအချက်အလက်များကို အဓိက CKAN ဒေတာ API နှင့် DataStore " +"စာရွက်စာတမ်းများထဲတွင် ကြည့်ပါ။

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "အဆုံးမှတ်များ" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"ဒေတာ API ကို CKAN action API ၏ အောက်ပါလုပ်ဆောင်မှုများမှတစ်ဆင့် ရယူနိုင်သည်။" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "ဖန်တီးမည်" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "ပြင်ဆင်မည် / ထည့်သွင်းမည်" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "ရှာဖွေမည်" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "SQL မှ တစ်ဆင့်ရှာဖွေမည်" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "ရှာဖွေနေသည်။" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "ရှာဖွေမှု ဥပမာ (ပထမ ရလဒ် ၅ခု)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "ရှာဖွေမှု ဥပမာ ('jones' ဟူသည့်စကားလုံးပါဝင်သည့် ရလဒ်များ)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "ရှာဖွေမှု ဥပမာ (SQL statement မှတစ်ဆင့်)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "ဥပမာ၊ Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"jQuery ကိုအသုံးပြုပြီး ရိုးရှင်းသော ajax (JSONP) ဖြင့် ဒေတာ API " +"ကိုတောင်းဆိုခြင်း။" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "ဥပမာ၊ Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "သိမ်းဆည်းမည်" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Field {num}။" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Type Override" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "ဖော်ပြချက်" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Data Dictionary" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Column" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "အမျိုးအစား" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Loading လုပ်နေသည်..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "ဒေတာ API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "ဇယား" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsive ဖြစ်သော ပြသမှု" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Column များကို ပြပါ" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Column များကို ဖျောက်/ပြပါ" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "စာမျက်နှာတစ်ခုတွင် ရှိသော dataset များ" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Conf ကို စမ်းသပ်မည်" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "နောက်ဆုံး ပြုပြင်ခဲ့သော အချိန်" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "စိတ်ကြိုက် field ငယ်စဥ်ကြီးလိုက်" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "စိတ်ကြိုက် field ကြီးစဥ်ငယ်လိုက်" + +#: ckan/templates/group/read.html:17 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 "လူကြိုက်များသော" + +#: 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 "စိတ်ကြိုက် resource စာသား" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "၎င်းသည် ဘာသာပြန်ဆိုထားခြင်းမရှိသော string တစ်ခုဖြစ်သည်။" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "ဤအုပ်စုအတွက် ဖော်ပြချက်မရှိပါ။" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "Dataset {num} ခု" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 dataset များ" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"CKAN ၏ဒေတာကြိုတင်ကြည့်ရှုခြင်း tool တွင် " +"အားကောင်းသောစွမ်းဆောင်ချက်များစွာရှိသည်။" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Follower များ" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resource များ" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "စက္ကန့်" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "မိနစ်" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "နာရီ" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "ရက်" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "သက်တမ်းကုန်ဆုံးသည့် အချိန်" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "ယူနစ်များ" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "သက်တမ်းကုန်ဆုံးသည့် အချိန်" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "ပုံ" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "ပုံ url" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"ဥပမာ၊ http://example.com/image.jpg (အကယ်၍ ကွက်လပ်ဆိုပါက resource url ကို " +"အသုံးပြုသည်)။" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "ဒေတာ explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "ပုံပြမျဉ်း (ဂရပ်)" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "မြေပုံ" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "view ကို load လုပ်နေရင်း အမှားအယွင်းဖြစ်သွားသည်။" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "View ကို load မလုပ်နိုင်ခဲ့ပါ။" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore မှ အမှားတစ်ခု ပြန်လာခဲ့သည်။" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy မှ အမှားတစ်ခု ပြန်လာခဲ့သည်။" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Grid" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filter များ" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +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 "ဥပမာ၊ 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Row အရေအတွက်" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "ဥပမာ၊ 100" + +#: 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 "Field အမျိုးအစား" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "လတ္တီတွဒ် field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "လောင်ဂျီတွဒ် field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON field" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Feature များသို့ အလိုအလျောက် zoom ဆွဲပါ။" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Cluster marker များ" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "မမှန်ကန်သော URL။" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "ထိပ်တန်းအဆင့်ရှိသော dataset များ" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "ပျှမ်းမျှအဆင့်သတ်မှတ်ချက်" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "အဆင့်သတ်မှတ်ချက် အရေအတွက်" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "အဆင့်သတ်မှတ်ချက်များ မရှိပါ။" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "အကြီးဆုံးအုပ်စုများ" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "အုပ်စု" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Dataset အရေအတွက်" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "အုပ်စုများမရှိပါ။" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "ထိပ်တန်း tag များ" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tag အမည်" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Dataset အရေအတွက်" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Dataset အများစုကို ဖန်တီးသော အသုံးပြုသူများ" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "အသုံးပြုသူ" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "ကိန်းကဏန်းအချက်အလက် မီနူး" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "အများဆုံး edit ပြုလုပ်ခဲ့သည့် dataset များ" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "စာသား" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" +"AJAX တောင်းဆိုမှုအတွင်း အမှားတစ်ခုဖြစ်ပွားခဲ့သည်။ view ကို load " +"မလုပ်နိုင်ခဲ့ပါ။" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "ဗီဒီယို" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "ဗီဒီယို url" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"ဥပမာ၊ http://example.com/video.mpeg (အကယ်၍ ကွက်လပ်ဆိုပါက resource url ကို " +"အသုံးပြုသည်)။" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "ပိုစတာ url" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "ဥပမာ၊ http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"ဝမ်းနည်းပါတယ်၊ သင်၏ browser သည် embedded ဗီဒီယိုများကို အထောက်အပံ့ မပေးပါ။ " +"သို့သော် စိတ်မပူပါနှင့်၊ သင် ၎င်းကို ဒေါင်းလုပ် လုပ်နိုင်ပြီး " +"သင်ကြိုက်နှစ်သက်သောဗွီဒီယိုဖွင့်စက်ဖြင့် ကြည့်ရှုနိုင်ပါသည်။" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Website" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web Page url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"ဥပမာ၊ http://example.com (အကယ်၍ ကွက်လပ်ဆိုပါက resource url ကို အသုံးပြုသည်)။" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "သင်၏ browser မှ iframes ကို အထောက်အပံ့မပေးပါ။" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "ခွင့်ပြုချက် function ကို မတွေ့ရှိခဲ့ပါ : %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "စီမံခန့်ခွဲသူ" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "တည်းဖြတ်သူ" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "အဖွဲ့ဝင်" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "စီမံခန့်ခွဲရန် ဤစနစ်၏ စီမံခန့်ခွဲသူဖြစ်ရန် လိုအပ်သည်။" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "ဆိုက်အမည်" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "စတိုင်" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Site Tag Line" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "အကြောင်း" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "အကြောင်း စာမျက်နှာရှိ စာသား" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Intro စာသား" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "ပင်မစာမျက်နှာရှိ စာသား" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "စိတ်ကြိုက် CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "စိတ်ကြိုက်ပြုပြင်နိုင်သော css ကို page header သို့ထည့်မည်။" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "ပင်မစာမျက်နှာ" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"ဆက်စပ်နေ‌သော revision %s တွင် မဖျက်ထားသော package %s များ " +"ပါဝင်နေခြင်းကြောင့် package %s ကို purge မလုပ်နိုင်ပါ။" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Revision %s ကို purge လုပ်နေစဥ်တွင် ပြဿနာ - %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purge ပြီးပါပြီ။" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "ဆောင်ရွက်ချက်မပြီးမြောက်ခဲ့ပါ။" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Access denied" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "မတွေ့ရှိခဲ့ပါ။" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "တောင်းဆိုမှု မှားယွင်းနေပါသည်။" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Action အမည်မသိ - %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON အမှား - %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "%s ၏ data တောင်းဆိုမှု မှားယွင်းနေပါသည်။" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "အုပ်စု ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "အဖွဲ့အစည်း ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "မမှန်ကန်သော အုပ်စု အမျိုးအစား" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "အဖွဲ့အစည်းများ" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "အုပ်စုများ" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tag များ" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "ပုံစံများ" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "လိုင်စင်များ" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "အသုံးပြုသူ %r သည် %s ကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "အစုလိုက် အပြုံလိုက် ပြင်ဆင်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "အုပ်စုတစ်စုကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integrity အမှား" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "အသုံးပြုသူ %r သည် %s ခွင့်ပြုချက်များကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "%s အုပ်စုကို ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "အဖွဲ့အစည်းကို ဖျက်ပြီးပါပြီ။" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "အုပ်စုကို ဖျက်ပြီးပါပြီ။" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ကို ဖျက်ပြီးပါပြီ။" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "အသုံးပြုသူ %r သည် %s ၏ အဖွဲ့ဝင်များကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "%s အုပ်စု၏ အဖွဲ့ဝင်များကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "%s အုပ်စုအတွင်းသို့ အဖွဲ့ဝင်သွင်းရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "%s အုပ်စု၏ အဖွဲ့ဝင်များကို ပယ်ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "အုပ်စုအဖွဲ့ဝင်ကို ဖျက်ပြီးပါပြီ။" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "နှိုင်းယှဉ်မှုမပြုလုပ်မီ revision ၂ခုကိုရွေးချယ်ပါ။" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN အုပ်စု ပြင်ဆင်ခြင်း သမိုင်း" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN အုပ်စု၏ မကြာသေးခင်က ပြုပြင်ပြောင်းလဲမှုများ - " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "မှတ်တမ်းတင်စာ - " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "သင်ယခု {0} ကို follow လုပ်နေပါသည်။" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "သင် {0} ကို follow မလုပ်တော့ပါ။" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "%s ၏ follower များကို ကြည့်ရှုရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"ဤ site သည် လက်ရှိ off-line ဖြစ်နေသည်။ Database ကိုစတင်လုပ်ဆောင်ခြင်းမရှိပါ။" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"ကျေးဇူးပြု၍သင့် profile ကို update လုပ် ပြီး သင့် email " +"လိပ်စာကို ထည့်ပါ။ " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "အကယ်၍ password reset လုပ်လိုပါက %s သည် သင့် email ကို အသုံးပြုသည်။" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "မမှန်ကန်သော ရှာဖွေမှု - {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" သည် ကိန်းပြည့်မဟုတ်ပါ။" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "ပြန်လည်ပြင်ဆင်မှုပုံစံသည် ကိုက်ညီမှုမရှိပါ - %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"{package_type} အမျိုးအစား dataset များ ကြည့်ရှုခြင်းကို အထောက်အပံ့မပေးပါ " +"({file_!r})။" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "%s package ကိုဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Dataset ပြင်ဆင်ခြင်း သမိုင်း" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN Dataset ၏ မကြာသေးခင်က ပြုပြင်ပြောင်းလဲမှုများ - " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Package တစ်ခု ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "ဤ resource ကို edit လုပ်ရန် အခွင့် မရှိပါ။" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Dataset ကို update လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Dataset {id} ရှာမတွေ့နိုင်ခဲ့ပါ။" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "ဒေတာ resource အနည်းဆုံးတစ်ခု ထည့်သွင်းရမည်။" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Resource တစ်ခု ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "ဤ package အတွက် resource တစ်ခု ဖန်တီးရန် အခွင့် မရှိပါ။" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Package ကို ရှာဖွေခြင်း index သို့ မထည့်နိုင်ပါ။" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "ရှာဖွေမှု index ကို update မလုပ်နိုင်ပါ။" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dataset ကိုဖျက်ပြီးပါပြီ။" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "%s package ကို ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resource ကို ဖျက်ပြီးပါပြီ။" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "%s resource ကိုဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Resource view ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resource ဒေတာ ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Download လုပ်၍မရနိုင်ပါ။" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "%s dataset ကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "%s resource ကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Resource ကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "View ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "View အမျိုးအစား ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "မှားယွင်းသော resource view ဒေတာ" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Resource view မထောက်ပံ့ပေးခဲ့ပါ။" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Preview ကြည့်ရှု၍ မရသေးပါ။" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "အသုံးပြုသူ ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "အသုံးပြုသူတစ်ယောက်အနေဖြင့် register လုပ်ခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "အသုံးပြုသူတစ်ယောက် ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "ID \"{user_id}\" ရှိသော အသုံးပြုသူကို ဖျက်ခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "အသုံးပြုသူ သတ်မှတ်ထားခြင်းမရှိပါ။" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "အသုံးပြုသူ %s ကို edit လုပ်ခွင့်မရှိပါ။\"" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "ပရိုဖိုင်းကို update လုပ်ပြီးပြီ။" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "%s အသုံးပြုသူကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Bad Captcha. နောက်တစ်ကြိမ်ထပ်ကြိုးစားပါ။" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"အသုံးပြုသူ \"%s\" ကို register လုပ်ပြီးပါပြီ၊ သို့သော် သင်သည် \"%s\" ကဲ့သို့" +" log in ဝင်ထားဆဲဖြစ်သည်။" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "အသုံးပြုသူတစ်ယောက်ကို edit လုပ်ခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "ရိုက်ထည့်ခဲ့သော password သည် မမှန်ကန်ခဲ့ပါ။" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Password အဟောင်း" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "မမှန်ကန်သော password" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "" +"Login လုပ်ခြင်းမအောင်မြင်ပါ။ Username သို့မဟုတ် password မှားယွင်းနေပါသည်။" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Password reset လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "Email လိုအပ်ပါသည်။" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Email ပို့ရာတွင် အမှားအယွင်းဖြစ်သွားသည်။ နောက်မှထပ်ကြိုးစားပါ (သို့မဟုတ်) " +"စီမံခန့်ခွဲသူကို အကူအညီတောင်းပါ။" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Reset link တစ်ခုကို သင့်ထံ email ပို့ပြီး ဖြစ်သည် (သတ်မှတ်ထားသော " +"အကောင့်ရှိခဲ့ပါက)။" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Password reset ပြုလုပ်ရန်အခွင့်မရှိပါ။" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "မမှန်ကန်သော reset key ဖြစ်နေသည်။ နောက်တစ်ကြိမ်ထပ်မံကြိုးစားပါ။" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "သင့် password ကို reset ပြုလုပ်ပြီးပါပြီ။" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "သင့် password သည် စာလုံးရေ ၄လုံး သို့မဟုတ် ၄လုံးထက်ပိုရမည်။" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "သင် ထည့်သွင်းခဲ့သော password သည် မကိုက်ညီပါ။" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Password တစ်ခု ထည့်သွင်းပေးရမည်။" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Follow item ကိုရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} ကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "အားလုံး" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "ကြည့်မည်" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{site_title} မှ activity အသစ် {n} ခု" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "ယခုလေးတင်" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "မသိရှိပါ။" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "အမည်မသိ resource" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Dataset အသစ်ဖန်တီးပြီးပါပြီ။" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Resource များကို edit လုပ်ပြီးပါပြီ။" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Setting များကို edit လုပ်ပြီးပါပြီ။" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "View {number} ခု" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "မကြာသေးမီက view {number} ခု" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "လက်ခံမည့်သူ၏ email လိပ်စာမရှိပါ။" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "အဖွဲ့အစည်း" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "အုပ်စု" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "ပျောက်ဆုံးနေသာ တန်ဖိုး" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "ထည့်သွင်းသည့် field %(name)s ကို မမျှော်လင့်ခဲ့ပါ။" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "ကျေးဇူးပြု၍ ကိန်းပြည့်တန်ဖိုးထည့်သွင်းပါ။" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Unicode string တန်ဖိုးဖြစ်ရပါမည်။" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Package resource များ ကိုက်ညီမှုမရှိပါ။" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "အပိုများ" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag ဝေါဟာရ \"%s\" မရှိပါ။" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "မှန်ကန်သော JSON အနေဖြင့် ခွဲခြမ်းစိတ်ဖြာ၍မရပါ။" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "အဖွဲ့အစည်းတစ်ခုကို ထည့်သွင်းရမည်။" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "ဤ dataset ကို အခြား အဖွဲ့အစည်းသို့ ပြောင်း‌ရွှေ့၍ မရနိုင်ပါ။" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "အဖွဲ့အစည်းမရှိပါ။" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "ဤအဖွဲ့အစည်းသို့ dataset တစ်ခု ထည့်သွင်း၍ မရနိုင်ပါ။" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "ကိန်းပြည့်သည် မှန်ကန်မှုမရှိပါ။" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "သဘာဝနံပါတ်တစ်ခု ဖြစ်ရမည်။" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "အပေါင်းကိန်းပြည့်တစ်ခု ဖြစ်ရမည်။" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "ရက်စွဲ format မှန်ကန်မှုမရှိပါ။" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Log_message ထဲတွင် links များကို ခွင့်မပြုထားပါ။" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Dataset id သည် ရှိပြီးသားဖြစ်သည်။" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resource" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "ဤအုပ်စုနာမည် သို့မဟုတ် ID မရှိပါ။" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Activity အမျိုးအစား" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "အမည်များသည် string များဖြစ်ရမည်။" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "ဤအမည်ကို အသုံးမပြုနိုင်ပါ။" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "အနည်းဆုံး %s အက္ခရာ ရှည်ရမည်။" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "အမည်သည် အများဆုံး %i အက္ခရာ ရှည်ရမည်။" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "စာလုံးအသေးများ၊ နံပါတ်များ နှင့် -_ သင်္ကေတများကိုသာ အသုံးပြုရမည်။" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "ဤ URL ကို အသုံးပြုပြီးဖြစ်သည်။" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "အမည် \"%s\" သည် အနည်းဆုံးရှိရမည့် စာလုံးရေ %s ထက်တိုနေသည်။" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "အမည် \"%s\" သည် အများဆုံးရှိရမည့် စာလုံးရေ %s ထက်ရှည်နေသည်။" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Version သည် အများဆုံး စာလုံးရေ %i ရှိရမည်။" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplicate key \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Database တွင် ဤအုပ်စုအမည်ရှိပြီးသားဖြစ်သည်။" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" ၏အရှည်သည် အနည်းဆုံးရှိရမည့် %s ထက်တိုနေသည်။" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Tag \"%s\" ၏အရှည်သည် အများဆုံးရှိရမည့် %i ထက်ရှည်နေသည်။" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" သည် စာလုံးအသေးများ၊ နံပါတ်များ နှင့် -_ သင်္ကေတများသာဖြစ်ရမည်။" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" သည် စာလုံးအကြီးမဖြစ်ရပါ။" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "အသုံးပြုသူအမည်များသည် string များဖြစ်ရမည်။" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "ဤ login အမည်ကို မရရှိနိုင်ပါ။" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "ဤ login အမည်ကို ပြုပြင်၍ မရနိုင်ပါ။" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Password နှစ်ခုလုံးကိုရိုက်ထည့်ပါ။" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Password များသည် string များဖြစ်ရမည်။" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "သင့် password သည် စာလုံးရေ ၈လုံးနှင့် အထက် ဖြစ်ရမည်။" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "သင် ထည့်သွင်းခဲ့သော password များသည် ကိုက်ညီမှုမရှိပါ။" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Spam နှင့် တူသောကြောင့် edit လုပ်ခွင့် မပေးပါ။ ကျေးဇူးပြု၍ သင်၏ " +"ဖော်ပြချက်တွင် link များကို ရှောင်ကျဥ်ပါ။" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "အမည်သည် စာလုံးရေ အနည်းဆုံး %s ရှိရမည်။" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "ဤဝေါဟာရနာမည်ကို အသုံးပြုပြီးဖြစ်သည်။" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Key ၏တန်ဖိုးကို %s မှ %s သို့ပြောင်းလဲ၍မရပါ။ ထို Key " +"သည်ဖတ်ရန်အတွက်သာဖြစ်သည်။" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Tag ဝေါဟာရကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s သည် ဝေါဟာရ %s တွင်မရှိပါ။" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Tag အမည်မရှိပါ။" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s သည် ဝေါဟာရ %s တွင် ရှိပြီးဖြစ်သည်။" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "ကျေးဇူးပြု၍ မှန်ကန်သော URL တစ်ခုကိုပေးပါ။" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "role မရှိပါ။" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "အဖွဲ့အစည်းမရှိသော dataset များသည် private မဖြစ်နိုင်ပါ။" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "List မဟုတ်ပါ။" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "String မဟုတ်ပါ။" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "ဤ parent သည် hierarchy တွင် loop တစ်ခုကို ဖန်တီးလိမ့်မည်။" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" နှင့် \"filter_values\" တို့သည် တူညီသောအရှည်ရှိသင့်သည်။" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_values\" ကိုဖြည့်သောအခါ \"filter_fields\" သည်လိုအပ်သည်။" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_fields\" ကိုဖြည့်သောအခါ \"filter_values\" သည်လိုအပ်သည်။" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "အမည်တူရှိသော schema field တစ်ခုရှိသည်။" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Email {email} သည် မှန်ကန်သော ပုံစံတစ်ခုမဟုတ်ပါ။" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "Dict တစ်ခု ဖြစ်ရမည်။" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" +"Email လိပ်စာ '{email}' သည် register လုပ်ထားသော အသုံးပြုသူ တစ်‌ယောက်ထံတွင် " +"ရှိပြီးသားဖြစ်သည်။" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "တန်ဖိုးသည် {} ထဲမှ တစ်ခု ဖြစ်ရမည်။" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "တန်ဖိုးသည် မှန်ကန်သော JSON object တစ်ခု ဖြစ်သင့်သည်။" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" +"မှန်ကန်သော JSON object အနေဖြင့် တန်ဖိုးကို ခွဲခြမ်းစိတ်ဖြာ၍မရနိုင်ခဲ့ပါ။" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" +"မှန်ကန်သော JSON အနေဖြင့် အပို '{name}' ကို ခွဲခြမ်းစိတ်ဖြာ၍မရနိုင်ခဲ့ပါ။" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "ပျောက်ဆုံးနေသာ တန်ဖိုး" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "Role သည် \"{}\" ထဲမှ တစ်ခု ဖြစ်ရမည်။" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "ပူးပေါင်းဆောင်ရွက်သူများကို ထည့်ခွင့်မရှိပါ။" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Dataset ပူးပေါင်းဆောင်ရွက်သူများကို enable မလုပ်ထားပါ။" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "အဖွဲ့အစည်းတစ်ခုကို အုပ်စုတစ်စုကဲ့သို့ ဖန်တီးရန်ကြိုးစားနေသည်။" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Package id သို့မဟုတ် အမည်တစ်ခုကို ထည့်သွင်း‌ရမည် (parameter \"package\")။" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "အဆင့်သတ်မှတ်ချက်တစ်ခုကို ထည့်သွင်းရမည် (parameter \"rating\")။" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "အဆင့်သတ်မှတ်ချက်သည် ကိန်းပြည့်တန်ဖိုးတစ်ခုဖြစ်ရမည်။" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "အဆင့်သတ်မှတ်ချက်သည် %i နှင့် %i ကြားတွင်ရှိရမည်။" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"ဖိတ်ခေါ်သော email ပို့ရာတွင် အမှားအယွင်းဖြစ်သွားသည်၊ အသုံးပြုသူကို " +"မဖန်တီးခဲ့ပါ - {0}။" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "အသုံးပြုသူများကို follow လုပ်ရန်အတွက် သင့်အနေဖြင့် login လုပ်ထားရမည်။" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "သင့်ကိုယ်သင် follow လုပ်၍မရပါ။" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "{0} ကို သင် follow လုပ်ပြီးဖြစ်သည်။" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Dataset တစ်ခုကို follow လုပ်ရန်အတွက် သင့်အနေဖြင့် login လုပ်ထားရမည်။" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "User {username} မရှိပါ။" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "အုပ်စုတစ်စုကို follow လုပ်ရန်အတွက် သင့်အနေဖြင့် login လုပ်ထားရမည်။" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Package ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "Dataset များရှိနေသေးသောကြောင့် အဖွဲ့အစည်းကို ဖျက်၍မရနိုင်ပါ။" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "data ထဲတွင် ID မရှိပါ။" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "\"%s\" ဝေါဟာရကို ရှာမတွေ့နိုင်ခဲ့ပါ။" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "\"%s\" tag ကို ရှာမတွေ့နိုင်ခဲ့ပါ။" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "တစ်ခုခုကို unfollow လုပ်ရန်အတွက် သင့်အနေဖြင့် login လုပ်ထားရမည်။" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "{0} ကို သင် follow လုပ်မနေပါ။" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "Capacity သည် \"{}\" ထဲမှ တစ်ခု ဖြစ်ရမည်။" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "ပူးပေါင်းဆောင်ရွက်သူများကို retrieve လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resource ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "Parameter သည် bool မဟုတ်ပါ။" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "\"query\" parameter ကိုအသုံးပြုရာတွင် မသတ်မှတ်ပါနှင့်။" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr ": အစုံလိုက် ဖြစ်ရမည်။" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Resource_search တွင် field \"{field}\" ကိုမသိပါ။" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Package ကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Task Status ကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "အဖွဲ့အစည်းကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "အသုံးပြုသူ %s သည် package များဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "အသုံးပြုသူ %s သည် ဤအုပ်စုများကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"အသုံးပြုသူ %s သည် ဤအဖွဲ့အစည်းအတွင်းသို့ dataset ထည့်သွင်းရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Dataset id မပေးခဲ့သောကြောင့် အခွင့်ရှိမရှိ မစစ်ဆေးနိုင်ပါ။" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"ဤ resource အတွက် package ရှာမတွေ့ခဲ့သောကြောင့် အခွင့်ရှိမရှိ မစစ်ဆေးနိုင်ပါ။" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"အသုံးပြုသူ %s သည် dataset %s ၏ resource များကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "အသုံးပြုသူ %s သည် ဤ package များကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "အသုံးပြုသူ %s သည် အုပ်စုများကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "အသုံးပြုသူ %s သည် အဖွဲ့အစည်းများကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"အသုံးပြုသူ {user} သည် API မှတစ်ဆင့် အသုံးပြုသူများကို ဖန်တီးရန် " +"အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "အသုံးပြုသူများကို ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "အုပ်စုကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "အသုံးပြုသူ %s သည် အဖွဲ့ဝင်များထည့်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "အသုံးပြုသူ %s သည် အုပ်စု %s ကို edit ပြုလုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"အသုံးပြုသူ %s သည် ဤ dataset သို့ ပူးပေါင်းဆောင်ရွက်သူများထည့်သွင်းရန် " +"အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "အသုံးပြုသူ %s သည် resource %s ကိုဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Resource view ရှာမတွေ့ခဲ့သောကြောင့် အခွင့်ရှိမရှိ မစစ်ဆေးနိုင်ပါ။" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "အသုံးပြုသူ %s သည် relationship %s ကိုဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "User %s သည် အုပ်စုများကို ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "အသုံးပြုသူ %s သည် အုပ်စု %s ကို ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "အသုံးပြုသူ %s သည် အဖွဲ့အစည်းများကို ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "အသုံးပြုသူ %s သည် %s အဖွဲ့အစည်းကိုဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "အသုံးပြုသူ %s သည် task_status ကိုဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" +"အသုံးပြုသူ %s သည် ဤ dataset မှ ပူးပေါင်းဆောင်ရွက်သူများကို ဖယ်ရှားရန် " +"အခွင့်မရှိပါ။" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "အခွင့်မရှိပါ။" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "အသုံးပြုသူ %s သည် ဤ package များကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "အသုံးပြုသူ %s သည် package %s ကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "အသုံးပြုသူ %s သည် resource %s ကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "အသုံးပြုသူ %s သည် အုပ်စု %s ကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "သင်၏ dashboard ကို access လုပ်ရန် သင့်အနေဖြင့် login လုပ်ထားရမည်။" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" +"အသုံးပြုသူ %s သည် ဤ dataset မှ ပူးပေါင်းဆောင်ရွက်သူများစာရင်းကို ရရှိရန် " +"အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "အသုံးပြုသူ %s သည် package %s ကို edit ပြုလုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "အသုံးပြုသူ %s သည် resource %s ကို edit ပြုလုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "အသုံးပြုသူ %s သည် package %s ၏ အခြေအနေကို ပြောင်းလဲရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "အသုံးပြုသူ %s သည် %s အဖွဲ့အစည်းကို edit ပြုလုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "အသုံးပြုသူ %s သည် အုပ်စု %s ၏ အခြေအနေကို ပြောင်းလဲရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"အသုံးပြုသူ %s သည် အုပ်စု %s ၏ ခွင့်ပြုချက်များကို edit ပြုလုပ်ရန် " +"အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "အသုံးပြုသူကို edit ပြုလုပ်ရန် login လုပ်ထားရမည်။" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "အသုံးပြုသူ %s သည် အသုံးပြုသူ %s ကို edit လုပ်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "အသုံးပြုသူ {0} သည် အသုံးပြုသူ {1} ကို ပြင်ဆင်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "အသုံးပြုသူ %s သည် revision ၏ အခြေအနေကို ပြောင်းလဲရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "အသုံးပြုသူ %s သည် task_status ဇယားကိုပြင်ဆင်ရန် အခွင့်မရှိပါ။" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "အသုံးပြုသူ %s သည် term_translation ဇယားကိုပြင်ဆင်ရန် အခွင့်မရှိပါ။" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "ခေါင်းစဥ်" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "လိုင်စင် သတ်မှတ်ထားခြင်းမရှိပါ။" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Other (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "%s အပေါ်တွင် မူတည်သည်။" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "သည် %s ၏ dependency ဖြစ်သည်။" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "%s မှဆင်းသက်လာသည်။" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "%s တွင် မူရင်းဇစ်မြစ်ရှိသည်။" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "%s နှင့် ချိတ်ဆက်သည်။" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "%s မှချိတ်ဆက်သည်။" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "%s ၏ကလေးဖြစ်သည်။" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "%s ၏မိခင်ဖြစ်သည်။" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "%s ၏မွေးချင်းဖြစ်သည်။" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "ဤ resource ကို load ရန်အတွက် API ဒေတာမရှိပါ။" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "ဒေတာ API သတင်းအချက်အလက်ကို load ရန်မအောင်မြင်ခဲ့ပါ။" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "စာစရိုက်ပါ...။" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "ကိုက်ညီမှုများကို ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +"Input သည် အလွန်တိုသည်၊ အနည်းဆုံး စာလုံးတစ်လုံးရှိရမည်။\n" +"Input သည် အလွန်တိုသည်၊ အနည်းဆုံး စာလုံး %(num)d လုံးရှိရမည်။" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "ဤဖောင်ထဲတွင် မသိမ်းဆည်းထားရသေးသော ပြုပြင်ပြောင်းလဲမှုများ ရှိသည်။" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "ကျေးဇူးပြု၍ လုပ်ဆောင်ချက်ကို အတည်ပြုပါ။" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "ဤလုပ်ဆောင်ချက်ကို ပြုလုပ်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "အတည်ပြုပါသည်" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "ပယ်ဖျက်မည်" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Unfollow လုပ်မည်" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Follow လုပ်မည်" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "ချိတ်ဆက်မည်" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"အင်တာနက်ပေါ်တွင် ရှိသော URL တစ်ခုသို့ ချိတ်ဆက်မည်။ (API တစ်ခုသို့လည်း " +"ချိတ်ဆက်နိုင်ပါသည်။)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Upload လုပ်မည်" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "ထပ်ပြီး upload ရန် ဖိုင်ကို ရွေးချယ်ပါ။" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "ဖယ်ရှားမည်" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "သင့်ကွန်ပြူတာထဲမှ ဖိုင်တစ်ဖိုင်ကို upload လုပ်ပါ။" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "ဖိုင်" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Resource များကို ပြန်စီမည်" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"မြှားပုံကို အသုံးပြုပြီး drag လုပ်ခြင်းဖြင့် resource များကို ပြန်၍ " +"အစီအစဥ်ချနိုင်ပါသည်။ resource ကို ညာသို့ drag လုပ်ပြီး list ပေါ်ရှိ " +"ကြိုက်နှစ်သက်ရာ နေရာသို့ ထားပါ။ ပြီးသောအခါ \"Save order\" -ခလုပ်ကို နှိပ်ပါ။" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "အစီအစဥ်ကို သိမ်းဆည်းမည်" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "သိမ်းနေသည်..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "ဖိုင်တစ်ဖိုင်ကို upload လုပ်မည်" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "အမှားတစ်ခု ဖြစ်သွားခဲ့သည်။" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "ဖိုင်ကို upload မလုပ်နိုင်ပါ။" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Upload ကို authenticate မလုပ်နိုင်ပါ။" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resource ကို upload လုပ်ပြီးပါပြီ။" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Upload လုပ်ခဲ့သောဖိုင်အတွက် ဒေတာ မရနိုင်ပါ။" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"သင်သည် ဖိုင်တစ်ခုကို upload နေသည်။ လက်ရှိ upload ကို ရပ်ထားပြီး " +"အ‌ခြားနေရာသို့ သွားလိုသည်မှာ သေချာပါသလား။" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Filter ထည့်ပါ" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Field တစ်ခုကို ရွေးချယ်ပါ" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "ပြင်မည်" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "ပို၍ ပြပါ" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "ဖျောက်ပါ" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "အမှား %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "{0} အကြောင်း" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN အဖွဲ့အစည်း" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"CKANမှပံ့ပိုးသည်။" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sysadmin ၏ setting များ" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "ပရိုဖိုင်းကို ကြည့်မည်" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (item အသစ် %(num)d ခု)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "ပရိုဖိုင်း setting များ" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "ထွက်မည်" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "အကောင့်" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "ဝင်မည်" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "မှတ်ပုံတင်မည်" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Dataset များ" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Dataset များရှာမည်" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "ရှာမည်" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Dataset များရှာမည်" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "တင်သွင်းမည်" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "အကြောင်းအရာသို့ ကျော်မည်" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Breadcrumb" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "လျှော့၍ load ပါ" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "ပို၍ load ပါ" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "ဤ activity stream တွင် activity များမရှိပါ။" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "စီမံခန့်ခွဲခြင်း" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmin များ" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Config" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "အမှိုက်" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Site logo" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "ဤ config ကို reset လုပ်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reset လုပ်မည်" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Config ကို ပြင်ဆင်မည်" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN config option များ" + +#: ckan/templates/admin/config.html:52 +#, 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 instance ၏ အမည်ဖြစ်သည်။ " +"၎င်းကို CKAN ၏ နေရာအနှံ့တွင်တွေ့ရသည်။

စတိုင် - " +"အလျင်အမြန်စိတ်ကြိုက် theme တစ်ခုရရန် အ‌ရောင်စာရင်းမှ " +"ရွေးချယ်ပါ။

Site Tag Logo - ၎င်းသည် CKAN instance ၏ " +"template အားလုံး ခေါင်းစီးတွင် ပေါ်လာမည့် တံဆိပ်ဖြစ်သည်။

" +"အကြောင်း - ဤစာသားသည် CKAN instance များ၏ စာမျက်နှာအကြောင်း " +"တွင်ပေါ်လိမ့်မည်။

Intro စာသား - ဤစာသားသည် CKAN " +"instance များ၏ ပင်မစာမျက်နှာ တွင် " +"လာရောက်လည်ပတ်သူများကို ကြိုဆိုသည့် အနေဖြင့် ပြလိမ့်မည်။

" +"စိတ်ကြိုက် CSS - ၎င်းသည် စာမျက်နှာတိုင်း၏ " +"<head> tag တွင်ပေါ်သော CSS ဖြစ်သည်။ template များကို " +"စိတ်ကြိုက် ပြုပြင်ပြောင်းလဲလိုပါက၊ စာရွက်စာတမ်းများ ကို ဖတ်ရန် အကြံပြုသည်။ " +"

ပင်မစာမျက်နှာ - ၎င်းသည် " +"သင်၏ပင်မစာမျက်နှာတွင်ပေါ်သော module များအတွက် ကြိုတင်သတ်မှတ်ထားသည့် " +"အပြင်အဆင်ကို ရွေးချယ်ရန်ဖြစ်သည်။

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Reset လုပ်မည်ကို အတည်ပြုသည်" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "CKAN ကို စီမံခန့်ခွဲခြင်း" + +#: 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 "" +"

sysadmin တစ်ယောက်အနေဖြင့် သင်သည် ဤ CKAN instance ပေါ်တွင် အပြည့်အဝ " +"ထိန်းချုပ်မှုရှိပါသည်။ သတိထား၍ ကိုင်တွယ်ပါ!

sysadmin feature များကို " +"အသုံးပြုရာတွင် ညွှန်ကြားချက်များအတွက်၊ CKAN sysadmin guideကို ကြည့်ပါ။

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "အားလုံးကို purge လုပ်ချင်သည်မှာ သေချာပါသလား။" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "အားလုံးကို purge လုပ်ပါ" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"ဖျက်ထားသော dataset များ၊ အဖွဲ့အစည်းများ သို့မဟုတ် အုပ်စုများကို " +"အစဥ်အမြဲနှင့် နောက်ကြောင်းပြန်ဆုတ်၍ မရသော purge လုပ်ပါ။" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "ဖျက်ခြင်းကို အတည်ပြုခြင်း" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "ဖျက်ထားသော dataset များ" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "ဖျက်ထားသော အဖွဲ့အစည်းများ" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "ဖျက်ထားသော အုပ်စုများ" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purge လုပ်မည်" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "ဤ resource ကို လောလောဆယ် preview ကြည့်ရှု၍ မရနိုင်ပါ။" + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "ထပ်မံသိလိုသော သတင်းအချက်အလက်များအတွက် ဒီမှာနှိပ်ပါ။" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Resource ကို download လုပ်မည်" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Preview ကြည့်ရှု၍ မရနိုင်ပါ။" + +#: 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 "ဒေတာ အမျိုးအစား %(type)s အတွက် ထိန်းချုပ်မှုမရှိပါ။" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard Input" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full Width Input" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Large" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Large Input" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prepend" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "စိတ်ကြိုက် field (ဗလာ)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "စိတ်ကြိုက် field" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "ရွေးချယ်ပါ" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Activity Stream" + +#: 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:5 +msgid "Add a Group" +msgstr "အုပ်စုတစ်စု ထည့်သွင်းမည်" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "အုပ်စုဖောင်" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "{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 "{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:15 +#: 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 "အုပ်စုကို edit လုပ်မည်" + +#: 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/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:29 +msgid "There are currently no groups for this site" +msgstr "ဤ site အတွက် လောလောဆယ် အုပ်စုများမရှိသေးပါ။" + +#: 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 "အဖွဲ့ဝင်ကို edit လုပ်ခြင်း" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "အဖွဲ့ဝင်အသစ် ထည့်ခြင်း" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "ရှိပြီးသား အသုံးပြုသူ" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"ရှိပြီးသားအသုံးပြုသူတစ်ဦးကို ထည့်သွင်းလိုပါက အသုံးပြုသူအမည်ကို " +"အောက်တွင်ရှာဖွေပါ။" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "သို့မဟုတ်" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "အသုံးပြုသူ အသစ်" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "အသုံးပြုသူအသစ်တစ်ဦးကို ဖိတ်ခေါ်လိုပါက email လိပ်စာကို ထည့်ပါ။" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Role" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "ဤအဖွဲ့ဝင်ကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "ဖျက်မည်" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Role တွေက ဘာလဲ။" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

စီမံခန့်ခွဲသူ - အုပ်စု၏ သတင်းအချက်အလက်များနှင့် " +"အဖွဲ့အစည်း၏ အဖွဲ့ဝင်များကို ပြုပြင်ခြင်းနှင့် စီမံခန့်ခွဲခြင်းများ " +"လုပ်နိုင်သည်။

အဖွဲ့ဝင် - အုပ်စုများမှ dataset " +"များကို ထည့်/ဖယ်နိုင်သည်။

" + +#: 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 "အုပ်စုကို update ပြုလုပ်မည်" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "အုပ်စု ဖန်တီးမည်" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Dataset များရှာမည်..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "အုပ်စုတွင်းရှိ dataset များ - {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "အမည်" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "ကျွန်ုပ်၏ အုပ်စု" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "ကျွန်ုပ်၏ အဖွဲ့အကြောင်း သတင်းအချက်အချို့..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "ဤအုပ်စုကို သင်ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "အုပ်စုကို သိမ်းမည်" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "{name} ကိုကြည့်မည်" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "ဤအုပ်စုမှ dataset ကိုဖယ်ထုတ်မည်။" + +#: 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 "" +"Dataset များကို ဖန်တီးရန်နှင့် စီမံခန့်ခွဲရန် CKAN အုပ်စုများကို " +"အသုံးပြုနိုင်သည်။ ၎င်းသည် စီမံကိန်းတစ်ခု သို့မဟုတ် အဖွဲ့တစ်ဖွဲ့အတွက်၊ " +"သို့မဟုတ် အကြောင်းအရာတစ်ခုအတွက် dataset များကို စာရင်းပြုစုရန်၊ သို့မဟုတ် " +"သင်ကိုယ်တိုင် ထုတ်ဝေထားသော dataset များကို လူအများက ရှာဖွေရာတွင် " +"အကူအညီဖြစ်စေရန် အလွန်ရိုးရှင်းသော နည်းလမ်းတစ်ခု ဖြစ်ပါသည်။" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "ဖျက်ပြီးပါပြီ။" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "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 "" +"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" + +#: 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 "ရေပန်းစားသော tag များ" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} ကိန်းကဏန်းအချက်အလက်များ" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "dataset များ" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "အဖွဲ့အစည်းများ" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "အုပ်စုများ" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "ဤ field သည် လိုအပ်ပါသည်။" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"ဤတွင် Markdown formatting ကို အသုံးပြုနိုင်သည်။" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Key" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "တန်ဖိုး" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "စိတ်ကြိုက်" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "ဤဖောင်ထဲတွင် မမှန်ကန်သော ဖြည့်စွက်ချက်များပါသည်။" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "လိုအပ်သော field" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "ပုံ URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Upload ကိုဖျက်မည်" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "အဖွဲ့အစည်းတစ်ခုကို ထည့်ပါ" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "အဖွဲ့အစည်းဖောင်" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Dataset များကို ပြင်မည်" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " \"{query}\" အတွက် ရှာတွေ့ခဲ့သည်။" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "ဝမ်းနည်ပါတယ်၊ \"{query}\" အတွက် dataset များ ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Public ပြုလုပ်မည်" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Private ပြုလုပ်မည်" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "မူကြမ်း" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Private" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "ဤ အရာနှင့်ဆက်နွှယ်သော dataset များ ဤအဖွဲ့အစည်းတွင် မရှိပါ။" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "{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 "အဖွဲ့အစည်းကို edit လုပ်မည်" + +#: 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 "လောလောဆယ်တွင် ဤ site အတွက် အဖွဲ့အစည်းများ မရှိသေးပါ။" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Username" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email လိပ်စာ" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "အဖွဲ့ဝင်ကို update လုပ်မည်" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

စီမံခန့်ခွဲသူ - dataset များကို " +"ဖြည့်စွက်/ပြင်ဆင်ခြင်းနှင့် ပယ်ဖျက်ခြင်းတို့ကို ပြုလုပ်နိုင်ပါသည်။ " +"အဖွဲ့အစည်း၏ အဖွဲ့ဝင်များကိုလည်း " +"စီမံခန့်ခွဲနိုင်ပါသည်။

တည်းဖြတ်သူ - dataset များကို " +"ဖြည့်စွက်ခြင်းနှင့် ပြင်ဆင်ခြင်းတို့ကို ပြုလုပ်နိုင်သော်လည်း အဖွဲ့အစည်း၏ " +"အဖွဲ့ဝင်များကို စီမံခန့်ခွဲခြင်း မပြုလုပ်နိုင်ပါ။

အဖွဲ့ဝင် " +"- အဖွဲ့အစည်း၏ private dataset များကို ကြည့်ရှု့နိုင်သော်လည်း " +"dataset အသစ်များကို မထည့်နိုင်ပါ။

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "အဖွဲ့ဝင်" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "အဖွဲ့အစည်းတစ်ခု ဖန်တီးခြင်း" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "အဖွဲ့အစည်းကို update လုပ်မည်" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "အဖွဲ့အစည်း ဖန်တီးမည်" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "{group} အဖွဲ့အစည်းတွင်ရှိသော dataset များ" + +#: 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 "" +"

အဖွဲ့အစည်းများသည် dataset များအတွက် ထုတ်ဝေရေးဌာနများကဲ့သို့ ဆောင်ရွက်သည် " +"(ဥပမာ - ကျန်းမာရေး ဦးစီးဌာန)။ ဆိုလိုသည်မှာ dataset များကို " +"သုံးစွဲသူတစ်ဦးချင်းအစား ဌာနတစ်ခုမှထုတ်ဝေနိုင်သည်။

အဖွဲ့အစည်းများရှိ " +"စီမံခန့်ခွဲသူများမှ ၎င်း၏ အဖွဲ့ဝင်များကို role များ သတ်မှတ်ခြင်းနှင့် " +"ခွင့်ပြုခြင်းတို့ကို ပြုလုပ်နိုင်သည်။ ထိုမှသာလျှင် အသုံးပြုသူတစ်ဦးချင်းသည် " +"၎င်း အ‌ဖွဲ့အစည်းတွင် dataset များကို ထုတ်ဝေခွင့်ရှိသည် (ဥပမာ - " +"အမျိုးသားစာရင်းအင်းရုံး)။

" + +#: 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 "" +"Dataset များကို ဖန်တီးခြင်း၊ စီမံခန့်ခွဲခြင်းနှင့် ထုတ်‌ဝေခြင်းတို့တွင် CKAN" +" အဖွဲ့အစည်းများကို အသုံးပြုသည်။ အသုံးပြုသူများအနေဖြင့် ၎င်းတို့၏ " +"ဖန်တီးခွင့်၊ စီမံခန့်ခွဲခွင့်နှင့် ထုတ်ဝေခွင့် စသော " +"ခွင့်ပြုချက်အဆင့်များပေါ်တွင် မူတည်၍ အဖွဲ့အစည်းတစ်ခု၌ မတူညီသော role များ " +"ရှိနိုင်သည်။" + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"ဤ အဖွဲ့အစည်းကို ဖျက်ချင်သည်မှာ သေချာပါသလား။ မှတ်ချက်* - ဤ အဖွဲ့အစည်းတွင် " +"public သို့မဟုတ် private dataset များ ရှိနေပါက ဖျက်၍ မရနိုင်ပါ။" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "အဖွဲ့အစည်းကို သိမ်းဆည်းမည်" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "{organization_name} ကိုကြည့်မည်" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Dataset ဖန်တီးခြင်း" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Dataset တွေက ဘာလဲ။" + +#: 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 Dataset ဆိုသည်မှာ သတ်မှတ်ထားသော URL တွင် ဖော်ပြချက်နှင့် " +"အခြားသတင်းအချက်အလက်များနှင့်တကွ ဒေတာ resource များ (ဥပမာ ဖိုင်များ) " +"ကိုစုဆောင်းထားသော အစုတစ်ခုဖြစ်သည်။ ဒေတာများကို ရှာဖွေသောအခါတွင် dataset " +"များသည် အသုံးပြုသူများမြင်ရသော အရာများဖြစ်သည်။" + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "ပြုပြင်ပြောင်းလဲမှုများ" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "{name} - dataset ကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "{name} - resource ကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Dataset ကြည့်မည်" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Metadata ပြင်မည်" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "View ပြင်မည်" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Preview ကြည့်မည်" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Update လုပ်မည်" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "ဤ dataset ကို ဤ အုပ်စုနှင့် တွဲလိုက်ပါ။" + +#: 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 "ဤ dataset နှင့်ဆက်နွှယ်သော အုပ်စုများ မရှိပါ။" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Dataset update လုပ်မည်" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Dataset အတွင်းသို့ ဒေတာ ထည့်သွင်းမည်" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Resource အသစ်ထည့်သွင်းမည်" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Resource ထည့်သွင်းမည်" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "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 "View ထည့်သွင်းမည်" + +#: 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 "" +"DataStore extension အား မဖွင့်ထားလျှင် Data Explorer view များသည် " +"နှေးကွေးပြီး စိတ်မချရပါ။ ပိုမိုသိရှိလိုပါက Data Explorer " +"စာရွက်စာတမ်းများ ကိုကြည့်ပါ။" + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "ထည့်မည်" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"သင်သည် ဤ dataset ၏ဗားရှင်းအဟောင်းကို ကြည့်နေသည်။ လက်ရှိဗားရှင်းကိုကြည့်ရန် " +" ဤနေရာ ကိုနှိပ်ပါ။" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Resource များအားလုံး" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Resource ကို ကြည့်မည်" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Resource ကို edit လုပ်မည်" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "View များ" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Resource သို့သွားမည်" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download လုပ်မည်" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL -" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Dataset ဖော်ပြချက် -" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Source: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "ဤ resource အတွက် view များ မရှိသေးပါ။" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "သင်မျှော်လင့်ထားသည့် view များကို မမြင်ပါသလား။" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"မျှော်လင့်ထားသည့် view များကို သင်မမြင်တွေ့ရနိုင်သည့် " +"အကြောင်းရင်းအချို့ရှိသည် -" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "ဤ resource အတွက် သင့်လျှော်သော view မရှိပါ။" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"ဤ site ကို စီမံခန့်ခွဲသူများသည် သင့်လျှော်သော view plugin များကို " +"မဖွင့်ထားခဲ့ခြင်း ဖြစ်နိုင်သည်။" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"View သည် DataStore အားလိုအပ်ပါက DataStore plugin ကို မဖွင့်ထားခဲ့၍ " +"ဖြစ်နိုင်သည်၊ သို့မဟုတ် ဒေတာများကို DataStore သို့ push လုပ်၍ " +"မရနိုင်ခဲ့ခြင်းကြောင့်၊ သို့မဟုတ် DataStore သည် ဒေတာများကို processing လုပ်၍" +" မပြီးသေးခြင်းကြောင့် ဖြစ်နိုင်သည်။" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "နောက်ဆက်တွဲ သတင်းအချက်အလက်များ" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Field" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "နောက်ဆုံး ပြင်ဆင်ခဲ့သော ဒေတာ" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "အမည်မသိ/ မသိရှိပါ။" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "နောက်ဆုံး ပြင်ဆင်ခဲ့သော metadata" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "ဖန်တီးခဲ့သော အချိန်" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "ပုံစံ" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "လိုင်စင်" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "View အသစ်" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "ဤ resource တွင် view များ မရှိပါ။" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Resource အသစ်ထည့်သွင်းမည်" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

ဤ dataset တွင် ဒေတာ မရှိပါ။ ဘာကြောင့်" +" အချို့ မထည့်သွင်းပါသလဲ။

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API စာရွက်စာတမ်းများ" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +"ဤ registry ကို %(api_link)s အား အသုံးပြု၍ access လုပ်နိုင်ပါသည် " +"(%(api_doc_link)s ကို ကြည့်ပါ)။ သို့မဟုတ် %(dump_link)s တစ်ခုကို download " +"လုပ်ပါ။" + +#: 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 "" +"ဤ registry ကို %(api_link)s အား အသုံးပြု၍ access လုပ်နိုင်ပါသည် " +"(%(api_doc_link)s ကို ကြည့်ပါ)။" + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "View အားလုံး" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "View ကြည့်မည်" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Preview ကြည့်မည်" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "ပူးပေါင်းဆောင်ရွက်သူကို edit လုပ်မည်" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "ပူးပေါင်းဆောင်ရွက်သူကို ထည့်သွင်းမည်" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "ပူးပေါင်းဆောင်ရွက်သူများထံသို့ ပြန်သွားမည်" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "ဤ ပူးပေါင်းဆောင်ရွက်သူကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "ပူးပေါင်းဆောင်ရွက်သူကို update လုပ်မည်" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "ရရှိနိုင်တဲ့ role တွေက ဘာလဲ။" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

စီမံခန့်ခွဲသူ - dataset ကို စီမံခန့်ခွဲခြင်း အပြင်၊ " +"စီမံခန့်ခွဲသူများသည် dataset တစ်ခုမှ ပူးပေါင်းဆောင်ရွက်သူများကို " +"ထည့်သွင်းခြင်းနှင့် ထုတ်ပယ်ခြင်းတို့ကို ပြုလုပ်နိုင်သည်။

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

တည်းဖြတ်သူ - တည်းဖြတ်သူများသည် dataset နှင့် ၎င်း၏ " +"resource များကို edit လုပ်နိုင်သည်။ dataset သည် private ဖြစ်နေသည့်တိုင် " +"access လုပ်နိုင်သည်။

အဖွဲ့ဝင် - အဖွဲ့ဝင်များသည် " +"private ဖြစ်နေသော dataset ကို access လုပ်နိုင်သည်၊ သို့သော် ၎င်းကို edit " +"မလုပ်နိုင်ပါ။

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "ပူးပေါင်းဆောင်ရွက်သူများကို ထည့်သွင်းမည်" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} အဖွဲ့ဝင်" + +#: 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 "Source" + +#: 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 +msgid "Author" +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 "Version" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "အခြေအနေ" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "နောက်ဆုံး ပြင်ဆင်ခဲ့သော အချိန်" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Dataset တစ်ခုကို မဖန်တီးခင် အဖွဲ့အစည်းတစ်ခုကို ဖန်တီးရန် လိုအပ်သည်။" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "အဖွဲ့အစည်းအသစ်တစ်ခု ဖန်တီးမည်" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "ဤ dataset ကို သင် assign လုပ်နိုင်မည့် အဖွဲ့အစည်းများ မရှိပါ။" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"ရှေ့မဆက်ခင် အဖွဲ့အစည်းတစ်ခုကို ဖန်တီးရန် ဤ စနစ်၏ စီမံခန့်ခွဲသူ တစ်ယောက်အား " +"မေးပါ။" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "On %(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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 "ဥပမာ၊ ကျွန်ုပ်၏ dataset" + +#: 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:36 +msgid "Please select the license" +msgstr "ကျေးဇူးပြု၍ လိုင်စင်ကိုရွေးပါ။" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"လိုင်စင်အဓိပ္ပာယ်ဖွင့်ဆိုချက်များနှင့် နောက်ဆက်တွဲ သတင်းအချက်အလက်များကို opendefinition.org တွင် " +"တွေ့နိုင်သည်။" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "အဖွဲ့အစည်း" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "အဖွဲ့အစည်းမရှိပါ။" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "မြင်သာမှု" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Public" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Active" + +#: 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 "" +"သင်အထက်တွင် ရွေးချယ်လိုက်သော ဒေတာလိုင်စင် သည် ဤ dataset ရှိ resource " +"ဖိုင်များအားလုံး၏ အကြောင်းအရာများနှင့်သာ သက်ဆိုင်သည်။ ဤဖောင်ကို " +"တင်ခြင်းအားဖြင့်၊ ဖောင်တွင် ထည့်ထားသော metadata တန်ဖိုးများကို Open Database " +"Licenseအောက်တွင် ထုတ်ပြန်ရန် သင်သဘောတူသည်။" + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "ဤ dataset ကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "နောက်သို့ - ဒေတာ ထည့်သွင်းမည်" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "ရေးသားသူ၏ email လိပ်စာ" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "ထိန်းသိမ်းသူ၏ email လိပ်စာ" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Resource ကို update လုပ်မည်" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "ဒေတာ" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ဥပမာ၊ ဇန်နဝါရီ ၂၀၁၁ ရွှေဈေး" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "ဒေတာအကြောင်း အသုံးဝင်သော မှတ်စုအချို့များ" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ဥပမာ၊ CSV, XML သို့မဟုတ် JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" +"ဤဟာကို အလိုအလျောက် မှန်းဆလိမ့်မည်။ အလိုအလျောက် မှန်းဆစေချင်ပါက " +"ကွက်လပ်ချန်ထားပါ။" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ဥပမာ၊ ၂၀၁၂၊၀၆၊၀၅" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "ဖိုင်အရွယ်အစား" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ဥပမာ၊ ၁၀၂၄" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME အမျိုးအစား" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ဥပမာ၊ application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "ဤ resource ကို ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "ရှေ့သို့" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "သိမ်းပြီး အခြားတစ်ခုထည့်သွင်းမည်" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "ပြီးပါပြီ" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Resource ဆိုတာ ဘာလဲ။" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Resource ဆိုသည်မှာ မည်သည့်ဖိုင်မဆို သို့မဟုတ် အသုံးဝင်သည့် ဒေတာများပါဝင်သည့်" +" ဖိုင်တစ်ခု၏ link ဖြစ်သည်။" + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "ထပ်မံရှာဖွေမည်" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "ထပ်မံသိလိုသော သတင်းအချက်အလက်များ" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Screen အပြည့်" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Embed" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "ဤ resource view ကို လောလောဆယ် ကြည့်ရှု၍ မရနိုင်ပါ။" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Resource view ကို ထည့်သွင်းခြင်း" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"ထည့်သွင်းထားသော ကုတ်ဒ်ကို CMS တစ်ခု သို့မဟုတ် raw HTML ကို အထောက်အပံ့ပေးသော " +"blog တစ်ခုတွင် copy ကူးပြီး paste လုပ်နိုင်သည်။" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Width" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Height" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Code" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Resource Preview" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "ဒေတာနှင့် resource များ" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "ဤ dataset တွင် ဒေတာ မရှိပါ။" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Dataset ဖန်တီးမည်" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "ဒေတာ ထည့်သွင်းမည်" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ဥပမာ၊ ကျွန်ုပ်၏ View" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ဥပမာ၊ ကျွန်ုပ်၏ view အကြောင်း သတင်းအချက်" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Filter ဖယ်ရှားမည်" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "View ဆိုတာ ဘာလဲ။" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "View ဆိုသည်မှာ resource တစ်ခုကို ကိုယ်စားပြုသော ဒေတာဖြစ်သည်။" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Dataset ထည့်သွင်းမည်" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher အခြေအနေ - {status}။" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "နောက်ကြောင်းပြန်လိုက်သော URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "{facet_type} ထပ်ပြပေးပါ။" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "{facet_type} လူကြိုက်များတာ ပြပါ။" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "ဤရှာဖွေမှုနှင့် ကိုက်ညီသော {facet_type} မရှိပါ။" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "မူလစာမျက်နှာ" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "ဘာသာစကား" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "သွားမည်" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "လိုင်စင် မရှိပါ။" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "ဤ dataset သည် Open Definition နှင့် ကိုက်ညီမှုရှိပါသည်။" + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "ဤအဖွဲ့အစည်းအတွက် ဖော်ပြချက်မရှိပါ။" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "ဤ dataset အတွက်ဖော်ပြချက်မရှိပါ။" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "အလိုက်စီမည်" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "ရလဒ်များ စစ်ထုတ်မည်" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

ကျေးဇူးပြု၍ နောက်ထပ်ရှာဖွေကြည့်ပါ။

" + +#: ckan/templates/snippets/search_form.html:87 +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] "\"{query}\" အတွက် dataset {number} ခု တွေ့ရှိခဲ့ပါသည်။" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "\"{query}\" အတွက် dataset များ ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "Dataset {number} ခု တွေ့ရှိခဲ့ပါသည်။" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Dataset များ ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "\"{query}\" အတွက် အုပ်စု {number} စု တွေ့ရှိခဲ့ပါသည်။" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "\"{query}\" အတွက် အုပ်စုများ မတွေ့ရှိခဲ့ပါ။" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "အုပ်စု {number} စု တွေ့ရှိခဲ့ပါသည်။" + +#: 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] "\"{query}\" အတွက် အဖွဲ့အစည်း {number} ခု တွေ့ရှိခဲ့ပါသည်။" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\" အတွက် အဖွဲ့အစည်းများ မတွေ့ရှိခဲ့ပါ။" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "အဖွဲ့အစည်း {number} ခု တွေ့ရှိခဲ့ပါသည်။" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "အဖွဲ့အစည်းများ မတွေ့ရှိခဲ့ပါ။" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscribe" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} သည် {dataset} dataset သို့ {tag} tag ကို ထည့်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} သည် {group} အုပ်စုကို ပြင်ဆင်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} သည် {organization} အဖွဲ့အစည်းကို ပြင်ဆင်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} သည် {dataset} dataset ကို ပြင်ဆင်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "ဤဗားရှင်းကိုကြည့်မည်" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"{actor} သည် {dataset} dataset တွင် ရှိသော {resource} resource ကို " +"ပြင်ဆင်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} သည် ၎င်း၏ profile ကို ပြင်ဆင်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} သည် {group} group ကို ဖျက်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} သည် {organization} အဖွဲ့အစည်းကို ဖျက်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} သည် {dataset} dataset ကို ဖျက်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"{actor} သည် {dataset} dataset တွင် ရှိသော {resource} resource ကို " +"ဖျက်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "{actor} {activity_type}" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} သည် {dataset} ကို စ၍ follow လုပ်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} သည် {group} ကို စ၍ follow လုပ်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} သည် {user} ကို စ၍ follow လုပ်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} သည် {group} အုပ်စုကို ဖန်တီးခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} သည် {organization} အဖွဲ့အစည်းကို ဖန်တီးခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} သည် {dataset} dataset ကို ဖန်တီးခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" +"{actor} သည် {dataset} dataset သို့ {resource} resource ကို " +"ထည့်သွင်းခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} sign up လုပ်ခဲ့ပါသည်။" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} သည် {dataset} dataset မှ {tag} tag ကို ဖယ်ရှားခဲ့ပါသည်။" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" +"{pkg_link} ၏ ရေးသားသူကို {new_author} သို့ထားခဲ့သည် (ယခင်က {old_author})။" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "{pkg_link} ၏ ရေးသားသူကို {new_author} သို့ထားခဲ့သည်။" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "{pkg_link} မှ ရေးသားသူကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" +"Field များ update မလုပ်ခဲ့ပါ။ အသေးစိတ်အတွက် metadata ကွဲပြားခြားနားမှုကို " +"ကြည့်ပါ။" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"{pkg_link} ၏ ရေးသားသူ email ကို {new_author_email} သို့ ထားခဲ့သည် (ယခင်က " +"{old_author_email})။" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "{pkg_link} ၏ ရေးသားသူ email ကို {new_author_email} သို့ ထားခဲ့သည်။" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "{pkg_link} မှ ရေးသားသူ email ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "{pkg_link} မှ {resource_link} resource ကို ဖျက်ခဲ့သည်။" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ field {key} ၏ တန်ဖိုးကို {value}သို့ " +"ပြောင်းလဲခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" +"{pkg_link} သို့ field {key}နှင့်တန်ဖိုး {value} ကို " +"ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "{pkg_link} သို့ field {key} ကို ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "{pkg_link} သို့ အောက်ပါ field များကို ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} နှင့် တန်ဖိုး {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ field {key} ၏ တန်ဖိုးကို {new_val}သို့ " +"ပြောင်းလဲခဲ့သည် (ယခင်က {old_val})။" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ field {key} ၏ တန်ဖိုးကို {new_val}သို့ " +"ပြောင်းလဲခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "{pkg_link} မှ field {key} ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "{pkg_link} မှ အောက်ပါ field များကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" +"{pkg_link} ၏ လိုင်စင်ကို {new_link} သို့ပြောင်းလဲခဲ့သည် (ယခင်က {old_link})။" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" +"{pkg_link} ၏ လိုင်စင်ကို {new_link} သို့ပြောင်းလဲခဲ့သည် (ယခင်က {old_title})။" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" +"{pkg_link} ၏ လိုင်စင်ကို {new_title} သို့ပြောင်းလဲခဲ့သည် (ယခင်က {old_link})။" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" +"{pkg_link} ၏ လိုင်စင်ကို {new_title} သို့ပြောင်းလဲခဲ့သည် (ယခင်က " +"{old_title})။" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"{pkg_link} ၏ ထိန်းသိမ်းသူကို {new_maintainer} သို့ ထားခဲ့သည် (ယခင်က " +"{old_maintainer})။" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "{pkg_link} ၏ ထိန်းသိမ်းသူကို {new_maintainer} သို့ ထားခဲ့သည်။" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "{pkg_link} မှ ထိန်းသိမ်းသူကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" +"{pkg_link} ၏ ထိန်းသိမ်းသူ email ကို {new_email} သို့ ထားခဲ့သည် (ယခင်က " +"{old_email})။" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "{pkg_link} ၏ ထိန်းသိမ်းသူ email ကို {new_email} သို့ ထားခဲ့သည်။" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "{pkg_link} မှ ထိန်းသိမ်းသူ email ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "{pkg_link} ကို {old_link} မှ {new_link} သို့ ရွှေ့ခဲ့သည်။" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource သို့ ဖိုင်အသစ်တစ်ဖိုင်ကို upload " +"တင်ခဲ့သည်။" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "{resource_link} resource ကို {pkg_link} သို့ ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"{pkg_link} ၏ ဖော်ပြချက်မှာ
{old_notes}
မှ
{new_notes}
သို့ ပြင်ဆင်ခဲ့သည်။" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"{pkg_link} ၏ ဖော်ပြချက်ကို
{new_notes}
သို့ ပြင်ဆင်ခဲ့သည်။" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "{pkg_link} မှ ဖော်ပြချက်ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" +"အဖွဲ့အစည်း {old_org_link} မှ အဖွဲ့အစည်း {old_org_link} သို့ {pkg_link} ကို " +"ရွှေ့ပြောင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "အ‌ဖွဲ့အစည်း {old_org_link} မှ ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "အဖွဲ့အစည်း {new_org_link} သို့ {pkg_link} ကို ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "{pkg_link} ၏ visibility ကို {visibility} သို့ ထားခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ ဖော်ပြချက်ကို
{new_desc}
သို့ ပြင်ဆင်ခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ ဖော်ပြချက်ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ ဖော်ပြချက်ကို
{old_desc}
မှ
{new_desc}
သို့ ပြင်ဆင်ခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Field {key} နှင့်တန်ဖိုး {value} ကို {pkg_link} ရှိ " +"{resource_link} resource သို့ ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" +"Field {key} ကို {pkg_link} ရှိ {resource_link} resource သို့ " +"ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" +"အောက်ပါ field များကို {pkg_link} ရှိ {resource_link} resource သို့ " +"ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" +"Field {key} ကို {pkg_link} ရှိ {resource_link} resource မှ " +"ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" +"အောက်ပါ field များကို {pkg_link} ရှိ {resource_link} resource မှ " +"ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ field {key} တန်ဖိုးကို " +"{new_val} သို့ ပြောင်းလဲခဲ့သည် (ယခင်က {old_val})။" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ field {key} တန်ဖိုးကို " +"{new_val} သို့ ပြောင်းလဲခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" +"Field {key} ၏တန်ဖိုးကို {pkg_link} ရှိ {resource_link} resource မှ " +"ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ ပုံစံကို {format_link} သို့ " +"ထားခဲ့သည်။" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ {resource_link} resource ၏ ပုံစံကို {new_format_link} သို့ " +"ထားခဲ့သည် (ယခင်က {old_format_link})။" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"{pkg_link} ရှိ resource ကို {old_resource_link} မှ {new_resource_link} သို့ " +"အမည်ပြောင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "{pkg_link} မှ {tag_link} tag ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "{pkg_link} မှ အောက်ပါ tag များကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "{tag_link}" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "{pkg_link} သို့ {tag_link} tag ကို ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "{pkg_link} သို့ အောက်ပါ tag များကို ထည့်သွင်းခဲ့သည်။" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "ခေါင်းစဥ်ကို {title_link} သို့ ပြောင်းလဲခဲ့သည် (ယခင်က {old_title})။" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" +"{pkg_link} ၏ source URL ကို {old_link} မှ {new_link} သို့ ပြောင်းလဲခဲ့သည်။" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "{pkg_link} မှ source URL ကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "{pkg_link} ၏ source URL ကို {new_link} သို့ ပြောင်းလဲခဲ့သည်။" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" +"{pkg_link} ၏ ဗားရှင်းကို {new_version} သို့ ပြောင်းလဲခဲ့သည် (ယခင်က " +"{old_version})။" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "{pkg_link} မှ ‌ဗားရှင်းကို ဖယ်ရှားခဲ့သည်။" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "{pkg_link} ၏ ဗားရှင်းကို {new_version} သို့ ပြောင်းလဲခဲ့သည်။" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Tag များ ရှာမည်" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "API Token ဖန်တီးမည်" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "API Token များ" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "API Token များ မဖန်တီးရသေးပါ။" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "ကျွန်ုပ်၏ dataset များ" + +#: 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 "ကျွန်ုပ် follow လုပ်ထားသော item များ၏ activity" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Dataset များ မဖန်တီးရသေးပါ။" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +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:21 +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 အသုံးပြုသူများအား သင်မည်သူဖြစ်ကြောင်းနှင့် " +"သင်ဘာလုပ်သည်ကို သိစေသည်။" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "အသေးစိတ်များကို ပြောင်းလဲခြင်း" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "နာမည်အပြည့်အစုံ" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ဥပမာ၊ Joe Bloggs။" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ဥပမာ၊ joe@example.com။" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "သင့်အကြောင်း သတင်းအချက်အလက်အချို့" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "အကြောင်းကြားသည့် email ရယူမည်။" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "ပရိုဖိုင်းပုံ" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "ပရိုဖိုင်းပုံ URL" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Password ပြောင်းမည်" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Sysadmin ၏ password" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Password" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Password အတည်ပြုမည်" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "ဤအသုံးပြုသူကို သင်ဖျက်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "API key ကို ပြန်ထုတ်လိုသည်မှာ သေချာပါသလား။" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "API Key ပြန်ထုတ်မည်" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Profile update လုပ်မည်" + +#: 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 "Login" + +#: 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 "ဒါဆိုရင် တစ်မိနစ်လောက်အချိန်ပေးပြီး Sign up လုပ်လိုက်ပါ။" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "အကောင့်တစ်ခု ဖန်တီးမည်" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Password မေ့သွားပါသလား။" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"ကိစ္စမရှိပါဘူး၊ ကျွန်ုပ်တို့ရဲ့ password recovery ကို အသုံးပြုပြီး reset " +"ပြန်လုပ်လိုက်ပါ။" + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Password မေ့သွားပါသလား။" + +#: 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 "သင်ယခု {user} အနေဖြင့် logged in လုပ်ထားပါတယ်။" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logout" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "ကျွန်ုပ်ကို မှတ်မိနေပါ" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "သင် logged in လုပ်ပြီးပါပြီ။" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"သင်အခြား account တစ်ခုဖြင့် log in လုပ်လိုပါက log out လုပ်ထားရန်လိုပါသည်။" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "ယခု log out လုပ်မည်" + +#: 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 "ဘာကြောင့် sign up လုပ်မလဲ။" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" +"Dataset များ၊ အုပ်စုများ နှင့် အခြားစိတ်လှုပ်ရှားစရာအရာများ ဖန်တီးမည်။" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "username" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "နာမည်အပြည့်အစုံ" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "အကောင့် ဖန်တီးမယ်" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Password reset လုပ်မည်" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Password reset လုပ်မည်" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Username ကိုလည်း ပြောင်းလဲနိုင်သည်။ နောက်မှပြင်လို့မရနိုင်ပါ။" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Password update လုပ်မည်" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "ဒါ ဘယ်လို အလုပ်လုပ်သလဲ။" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Password အသစ်ကို ထည့်သွင်းပြီးနောက် သင့် အကောင့်ကို ကျွန်ုပ်တို့ update " +"ပြုလုပ်ပေးပါမည်။" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Dataset များ မဖန်တီးရသေးပါ။" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "သင်၏ ကိုယ်ရေးအကျဉ်းကို မထည့်သွင်းရသေးပါ။" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "ဤ user တွင် ကိုယ်ရေးအကျဉ်းမရှိပါ။" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "ဆိုလိုသည်မှာ သင်တစ်ဦးတည်းသာ မြင်နိုင်သည်။" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "အဖွဲ့ဝင်စဖြစ်သောရက်စွဲ" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Password reset လုပ်မည်" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "Email သို့မဟုတ် username" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Reset လုပ်ရန် တောင်းဆိုမည်" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"သင်၏ username သို့မဟုတ် email လိပ်စာ ကို box ထဲတွင်ထည့်သွင်းပါ၊ ထို့နောက် " +"password အသစ်ထည့်သွင်းရန် link ကိုသင့် email သို့ ကျွန်ုပ်တို့ပို့ပေးပါမည်။" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Token" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "နောက်ဆုံး access" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "လုပ်ဆောင်ချက်များ" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "ပြန်လည်ရုပ်သိမ်းမည်" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "၏ activity -" + +#: 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 "သင်မည်သည့်အရာကိုမျှ follow မလုပ်ထားပါ။" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Follower မရှိပါ" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "အသုံးပြုသူများ ရှာမည်" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "ကြီးမားသော Purge ပြီးပါပြီ။" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "success" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "Parameter u\"{parameter_name}\" သည် ကိန်းပြည့်မဟုတ်ပါ။" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Activity ရှာမတွေ့ခဲ့ပါ။" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "Activity ဒေတာများကို ကြည့်ရှုရန် အခွင့်မရှိပါ။" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "ဤ dataset ၏ activity အသေးစိတ်မရရှိနိုင်ပါ။" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "Package ကိုဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "{} ပူးပေါင်းဆောင်ရွက်သူများကို ဖတ်ရန် အခွင့်မရှိပါ။" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "{} ပူးပေါင်းဆောင်ရွက်သူများကို ဖျက်ရန် အခွင့်မရှိပါ။" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "ပူးပေါင်းဆောင်ရွက်သူများမှ အသုံးပြုသူကို ဖယ်ထုတ်ခဲ့သည်။" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "{} ပူးပေါင်းဆောင်ရွက်သူများကို ပြင်ရန် အခွင့်မရှိပါ။" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "ပူးပေါင်းဆောင်ရွက်သူများသို့ အသုံးပြုသူကို ထည့်သွင်းခဲ့သည်။" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "API token များ ကြည့်ရန် အခွင့်မရှိပါ။" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "API token များ ဖန်တီးရန် အခွင့်မရှိပါ။" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"ဖန်တီးခဲ့သော API Token: {token}" +" {copy}
သေချာ copy ကူးပါ၊ သင် နောက်တစ်ကြိမ် ပြန်တွေ့ရလိမ့်မည် မဟုတ်ပါ!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "API token များ ပြန်လည်ရုတ်သိမ်းရန် အခွင့်မရှိပါ။" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "သင့် password သည် စာလုံးရေ ၈လုံးနှင့် အထက် ဖြစ်ရမည်။" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "ပြင်ပ site သို့ လွှဲပြောင်းခြင်းကို ခွင့်မပြုပါ။" diff --git a/ckan/i18n/nl/LC_MESSAGES/ckan.po b/ckan/i18n/nl/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..c096cc088f6 --- /dev/null +++ b/ckan/i18n/nl/LC_MESSAGES/ckan.po @@ -0,0 +1,5138 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Dutch (https://www.transifex.com/okfn/teams/11162/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Bron niet gevonden" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Niet gemachtigd deze pagina te bekijken" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Compleet" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Wachtend" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Opsturen" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fout" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Nog niet geupload" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Upload naar DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Upload error:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fout:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Fout traceback:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Laatst gewijzigd" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nooit" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Upload log" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Details" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Einde van log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Datastore bron niet gevonden" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Bron \"{0}\" is niet gevonden" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Gebruiker {0} heeft geen toestemming om de bron {1} te bewerken" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Toegang tot bron data via een web API met krachtige query ondersteuning" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Eindpunten" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"De Data API kan worden benaderd via de volgende acties van de CKAN action " +"API." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Creëer" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Updaten / toevoegen" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Query" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Opvragen" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Query voorbeeld (eerste 5 resultaten)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Query voorbeeld (resultaten die 'jones' bevatten)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Query voorbeeld (via SQL statement)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Voorbeeld: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Een eenvoudige ajax (JSONP) aanvraag naar de data API met jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Voorbeeld: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Bewaar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Veld {num}" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Label" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Omschrijving" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Data woordenboek" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolom" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Type" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Laden..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabel" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsieve weergave" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Toon kolommen" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Verberg/toon kolommen" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasets per pagina" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Test conf" + +#: ckan/templates/group/read.html:13 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 "Relevantie" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Naam oplopend" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Naam aflopend" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Laatst gewijzigd" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Aangepast veld oplopend" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Aangepast veld aflopend" + +#: ckan/templates/group/read.html:17 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 "Populair" + +#: 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 "Aangepaste Text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "aangepaste text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landcode" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "Aangepaste brontekst" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Dit is een onvertaalde tekst" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Deze groep heeft geen beschrijving" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Dataset" +msgstr[1] "{num} Datasets" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Datasets" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN's data previewing tool heeft veel krachtige kenmerken" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Volgers" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Bronnen" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Afbeelding" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Afbeelding URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "bijv. http://example.com/image.jpg (gebruikt bron url als leeg)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafiek" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Kaart" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "fout bij het laden van de view" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Kon de view niet laden" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore gaf een fout terug" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy gaf een fout terug" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Grid" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filters" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rij volgnummer" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "bijv.: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Aantal rijen" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "bijv.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Grafieksoort" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Groep (As 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Series (As 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Veldsoort" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Veld voor geografische breedte (lat)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Veld voor geografische lengte (lon)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON veld" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automatische alle objecten in beeld brengen" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Objecten samenvoegen (clusteren)" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Hoogst gewaardeerde datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Gemiddelde score" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Aantal scores" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Geen score" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grootste groepen" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Groep" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Aantal datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Geen groepen" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Top labels" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tag Naam" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Aantal Datasets" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Gebruikers met het hoogste aantal datasets" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Gebruiker" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistieken Menu" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Meest bewerkte dataset" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Tekst" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Website" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "url Web Pagina" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "bijv. http://example.com (gebruikt bron url als leeg)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Uw browser ondersteunt geen i-frames." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Machtigingsfuncties niet gevonden: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Beheerder" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Muteerder" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Lid" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Dient rol systeembeheerder te hebben" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Titel" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stijl" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Site Tag Line" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Site Tag Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Over" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Over pagina" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Introductie tekst" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Tekst op de homepage" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Custom CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Aanpasbaar CSS ingevoegd in de pagina header" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Start pagina" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Can package %s niet verwijderen omdat revisie %s niet gedelete packages %s " +"bevat" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Probleem bij het verwijderen van revisie %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Verwijderen afgerond" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Actie niet geïmplementeerd" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Toestemming geweigerd" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Niet gevonden" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Onjuiste aanvraag" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Actie naam onbekend: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Error: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Bad request data: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "De titel van de dataset." + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organisatie niet gevonden" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Verkeerde groep type" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisaties" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Groepen" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tags" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formats" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenties" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Gebruiker %r is niet gemachtigd om %s aan te passen" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Niet gemachtigd om een massale bijwerking te doen" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Groep selectie veld 'user_editable_groups' is niet geinitialiseerd" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integriteits fout" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Gebruiker %r is niet gemachtigd om machtigingen van %s aan te passen" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Niet de rechten om group %s te verwijderen" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisatie is verwijderd" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Groep is verwijderd" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s is verwijderd." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Gebruiker %r is niet gemachtigd om leden van %s aan te passen" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Niet de rechten om lid toe te voegen aan groep %s " + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Niet de rechten om leden te te verwijderen ui groep %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Groepslid is verwijderd" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selecteer twee revisies voordat u een vergelijking maakt." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Groep revisie historie" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Recente wijzigingen in de CKAN groep:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Logboek bericht: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Je volgt {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Je volgt {0} niet langer" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Niet de rechtend om volgers %s te zien" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Deze site is momenteel offline. De database is niet geïnitialiseerd." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Actualiseer uw profiel en voeg uw emailadres toe." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s gebruikt uw email adres als u u wachtwoord moet herstellen." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Ongeldige zoekvraag: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" is geen integer" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset niet gevonden" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Incorrect revisieformat: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Bekijken van datasets van type \"{package_type}\" wordt niet ondersteund " +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Niet gemachtigd om package in te zien %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN dataset revisie geschiedenis" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Recente wijzigingen aan CKAN dataset:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Niet gemachtigd om een pakket aan te maken" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Niet de rechten om deze bron te bewerken" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Niet de rechten om deze dataset up te daten" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "De dataset {id} is niet gevonden." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Je moet ten minste een data bron toevoegen" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Niet de rechten om deze bron te creëren" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Niet gemachtigd om een bron te creëren voor dit pakket" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Kan de package niet toevoegen aan de zoekindex." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Kan de zoekindex niet actualiseren." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dataset is verwijderd" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Niet de rechten om dit pakket %s te verwijderen" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Bron is verwijderd" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Niet de rechten om deze bron %s te verwijderen" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Bronoverzicht niet gevonden" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Bron data niet gevonden." + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Er is geen download beschikbaar" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Niet de rechten om deze dataset te lezen %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Niet gemachtigd om bron %s te lezen" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Niet gemachtigd om bron te bewerken" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Overzicht niet gevonden" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Soort overzicht niet gevonden" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Fout in bronoverzicht gegevens" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Bronoverzicht niet ingevoerd" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Er is geen voorbeeld geselecteerd" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Gebruiker niet gevonden" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Niet gemachtigd om een gebruiker aan te maken" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Niet gemachtigd om een gebruiker aan te maken" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Niet gemachtigd om gebruiker met id \"{user_id}\" te verwijderen." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Gebruiker niet gegeven" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Niet gemachtigd om gebruiker %s te wijzigen" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profiel geactualiseerd" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Niet gemachtigd om gebruiker %s aan te maken" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha mislukt. Probeer het nog eens." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Gebruiker \"%s\" is nu geregistreerd maar u bent nog steeds ingelogd als " +"\"%s\" zoals eerder." + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Niet gemachtigd om een gebruiker te wijzigen" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Foutief wachtwoord ingevoerd" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Oude wachtwoord" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Foutief wachtwoord" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Inloggen is mislukt. Incorrecte gebruikersnaam of wachtwoord." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Niet gemachtigd om wachtwoord herstel aan te vragen." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Niet gemachtigd om een wachtwoord te herstellen." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Ongeldige reset toets. Probeert u het nog eens." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Uw wachtwoord is opnieuw ingesteld." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Je wachtwoord moet minimaal 4 karakters bevatten." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "De ingevoerde wachtwoorden komen niet overeen." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Je moet een wachtwoord invoeren." + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Volgend item niet gevonden" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} niet gevonden" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Alles" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Bekijk" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nieuwe activiteit van {site_title}" +msgstr[1] "{n} nieuwe activiteiten van {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Enkele seconden geleden" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Onbekend" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Naamloze bron" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nieuwe dataset aangemaakt." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Bronnen gewijzigd." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Settings gewijzigd." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} keer bekeken" +msgstr[1] "{number} keer bekeken" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} keer recent bekeken" +msgstr[1] "{number} keer recent bekeken" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Geen ontvanger email adres beschikbaar!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "Organisatie" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "group" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Missende waarde" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Het invoerveld %(name)s werd niet verwacht." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Vul een geheel getal in" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Moet een Unicode string waarde zijn" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Package bron ongeldig" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extra's" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Label vocabulary \"%s\" bestaat niet" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Kon niet ontleed worden als valide JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Een organisatie moet worden ingevoerd" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Oganisatie bestaat niet" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Je kan geen dataset aan deze organisatie toevoegen" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Ongeldig geheel getal" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Moet een natuurlijk getal zijn" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Moet een positieve integer zijn" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Datumformaat onjuist" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Links zijn niet toegestaan in het logboekbericht" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Er bestaat al een gegevensset met deze sleutel" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Bron" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Die groepsnaam of ID bestaat niet. " + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Soort activiteit" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Namen moeten strings zijn" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Die naam kan niet worden gebruikt" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Moet tenminste %s tekens bevatten" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Naam mag maximaal %i karakters lang zijn" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "Moet bestaan uit kleine letters (ascii), cijfers en deze symbolen: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Deze URL is al in gebruik." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "De lengte van naam \"%s\" is minder dan het minimum %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "De lengte van naam \"%s\" is meer dan het maximum %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versie mag maximaal %i karakters lang zijn" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Dubbele sleutel \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "De naam van de groep bestaat al in database" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" lengte is minder dan vereiste %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "De lengte van label \"%s\" is langer dan het maximum van %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" moet een alfanumeriek karakter zijn of symbolen: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" mag geen hoofdletters bevatten" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Gebruikersnamen moeten strings zijn" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Die loginnaam is niet beschikbaar." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Voer a.u.b. beide wachtwoorden in" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Wachwoorden moeten strings zijn" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "De wachtwoorden komen niet overeen" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"De wijziging is niet toegestaan aangezien deze op spam lijkt. Gebruik a.u.b." +" geen links in uw beschrijving." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Naam moet tenminste %s karakters lang zijn" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Die vocabulairenaam is al in gebruik." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Kan de waarde van de key niet wijzigen van %s naar %s. Deze key is alleen-" +"lezen." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Label vocabulaire niet gevonden." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Label %s behoort niet tot vocabulaire %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Geen label naam" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Label %s behoort al tot vocabulaire %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Vul een geldige URL in" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Deze rol bestaat niet." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Gegevenssets zonder organisatie kunnen niet besloten zijn." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Geen lijst" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Geen string" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Deze ouder zou een oneindige lus in de hiërarchie veroorzaken" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" en \"filter_values\" moeten dezelfde lengte hebben" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_values\" is vereist wanneer \"filter_fields\" is ingevuld" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" is vereist wanneer \"filter_fields\" is ingevuld" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Er is een veld in het schema met dezelfde naam" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "E-mail {email} is geen geldig adres" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Missende Waarde" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "U probeert een organisatie als groep te creëren" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Er moet een sleutel of naam worden ingevoerd (parameter \"package\")" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Een waardering is vereist (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Waardering moet hele waarde hebben." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Waardering moet tussen %i en %i liggen." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Fout bij het verzenden van de uitnodigingsmail, gebruiker is niet " +"aangemaakt: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "U moet ingelogd zijn om users te volgen" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "U kan niet uzelf volgen" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "U volgt {0} al" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "U moet ingelogd zijn om een dataset te kunnen volgen." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Gebruiker {username} bestaat niet." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "U moet ingelogd zijn om een groep te kunnen volgen." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id niet in data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan vocabulaire %s niet vinden" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan label \"%s\" niet vinden" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "U moet ingelogd zijn om iets te ontvolgen." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "U volgd {0} niet" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Bron niet gevonden." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Niks specificeren wanneer u gebruik maakt van de \"query\" parameter" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Moet zijn : pa(a)r(en)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Veld \"{field}\" niet herkend in resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Package is niet gevonden" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Versie bijgewerkt" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisatie is niet gevonden." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Gebruiker %s is niet gemachtigd om packages aan te maken" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Gebruiker %s is niet gemachtigd om deze groepen te wijzigen" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Gebruiker %s is niet gemachtigd om gegevenssets toe te voegen aan deze " +"organisatie" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Geen sleutel voor de gegevensset ingevoerd. Machtiging kan niet worden " +"gecontroleerd." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Geen package gevonden voor deze bron, kan autorisatie niet controleren." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Gebruiker %s is niet gemachtigd om bronnen aan te maken voor gegevensset %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Gebruiker %s is niet gemachtigd om deze pakketten te wijzigen" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Gebruiker %s is niet gemachtigd om groepen aan te maken" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Gebruiker %s is niet gemachtigd om organisaties te creëren" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Gebruiker {user} is niet gemachtigd om gebruikers aan te maken via de API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Niet gemachtigd om gebruikers te maken" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Groep niet gevonden." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Gebruiker %s is niet gemachtigd om een lid toe te voegen" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te wijzigen" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Gebruiker %s is niet gemachtigd om bron %s te verwijderen" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Bronoverzicht niet gevonden. Machtiging kan niet worden gecontroleerd." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Gebruiker %s is niet gemachtigd om relatie %s te verwijderen " + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Gebruiker %s is niet gemachtigd om een groep te verwijderen" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te verwijderen " + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Gebruiker %s is niet gemachtigd om een organisatie te verwijderen" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Gebruiker %s is niet gemachtigd om organisatie %s te verwijderen" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Gebruiker %s niet gemachtigd om task_status te verwijderen" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Geen toegang" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Gebruiker %s is niet gemachtigd om deze pakketten te lezen" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Gebruiker %s is niet gemachtigd om pakket %s te lezen " + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Gebruiker %s is niet gemachtigd om bron %s te lezen " + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Gebruiker %s is niet gemachtigd om groep %s te lezen " + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "U moet ingelogd zijn om toegang te hebben tot uw dashboard." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Gebruiker %s is niet gemachtigd om pakket %s te wijzigen " + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Gebruiker %s is niet gemachtigd om bron %s te veranderen" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Gebruiker %s is niet gemachtigd om status van pakket %s te wijzigen " + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Gebruiker %s is niet gemachtigd om organisatie %s te veranderen" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Gebruiker %s is niet gemachtigd om status van groep %s te wijzigen" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Gebruiker %s is niet gemachtigd om rechten van groep %s te wijzigen" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "U dient te zijn ingelogd om gebruikersgegevens te wijzigen" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Gebruiker %s is niet gemachtigd om gebruiker %s te wijzigen" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" +"Gebruiker {0} heeft geen toestemming om de gebruiker {1} bij te werken" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Gebruiker %s is niet gemachtigd om status van revisie te wijzigen" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Gebruiker %s is niet gemachtigd om task_status tabel te wijzigen" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Gebruiker %s niet gemachtigd om term_translation tabel te wijzigen" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licentie is niet gespecificeerd" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Public Domain Dedication and Licence (PDDL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Other (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Other (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Other (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Other (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Other (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "hangt af van %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "is een afhankelijkheid van %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "vloeit voort uit %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "heeft afgeleide %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "linkt naar %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "is naar gelinkt vanaf %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "is een kind van %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "is een ouder van %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "heeft broer %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Er is geen API data om deze bron te openen" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Het laden van de API informatie data is mislukt" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Begin met typen" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Geen overeenkomsten gevonden" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Uw input is te kort, hij moet uit minimaal een karakter bestaan " +msgstr[1] "" +"Uw input is te kort, hij moet uit minimaal %(num)d karakters bestaan" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Er zijn niet-opgeslagen wijzigingen in dit formulier" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Bevestig de actie" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Weet u zeker dat u deze actie uit wil voeren?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Bevestig" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Afbreken" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Ontvolgen" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Volg" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Gebruik een weblocatie (URL). Dit mag ook de URL van een API zijn." + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Upload" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Verwijder" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Upload een bestand" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Bestand" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Bewaar sortering" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Opslaan..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Upload een bestand" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Er is een fout opgetreden" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Kan het bestand niet uploaden" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Kan de upload niet authenticeren" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "De bron is geupload" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Kan geen data vinden voor het geuploaden bestand" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Bestand wordt geupload. Als u deze pagina verlaat stopt de upload. Weet u " +"zeker dat u de pagina wilt verlaten?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Filter toevoegen" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Kies een veld" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Bijwerk" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Toon meer" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "verberg" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fout %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "over {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Sysadmin settings" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "bekijk profiel" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d nieuw item)" +msgstr[1] "Dashboard (%(num)d nieuwe items)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Dashboard" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Uitloggen" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Inloggen" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Register" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datasets" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "doorzoek datasets" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Zoek" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ga verder naar de inhoud" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "laat minder zien" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "laat meer zien" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "geen resultaten binnen deze activiteit " + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Beheer" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Beheerders" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "configuratie" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Prullenbak" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Site logo" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "weet u zeker dat u wilt resetten" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "reset" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Updaten configuratie" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN configuratie settings" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Titel: Dit is de titel van deze CKAN installatie. De " +"titel verschijnt op verschillende plaatsen in de applicatie.

" +"

Stijl: Kies uit een lijst met variaties van het " +"standaard kleurenschema.

Site Tag Logo: Dit is het " +"logo dat verschijnt in de kop van alle CKAN sjablonen.

" +"

Over: Deze tekst verschijnt op de \"over\" pagina.

" +"

Introductietekst: Deze tekst verschijnt op de \"home\" pagina als welkomstboodschap voor " +"bezoekers.

Custom CSS: Deze CSS verschijnt in de kop" +" (<head>) sectie van elke pagina. Voor het geavanceerd " +"aanpassen van de sjablonen van CKAN verwijzen we graag naar de documentatie.

" +"

Home pagina: Hiermee kan worden aangegeven in welke " +"layout en welke modules op de home pagina worden getoond.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bevestig reset" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Beheer CKAN" + +#: 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 "" +"

Als sysadmin gebruiker heeft u de volledige controle over deze CKAN " +"installatie. Wees voorzichtig!

Zie de CKAN sysadmin guide voor hulp bij het gebruik van sysadmin " +"functionaliteiten.

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "bevestig delete" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Definitief verwijderen" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Deze bron heeft op dit moment geen preview." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klik hier voor meer informatie." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Download bron" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Geen voorbeeld aanwezig." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Meer details..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Geen toepassing beschikbaar voor dit data type: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standaard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standaard invoer" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Middel" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Medium Width Input" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Vol" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Volledige breedte input" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Groot" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Grote input" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Voorzetten" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Voorafgaande input" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Aangepast veld (leeg)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Aangepast veld" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "afprijzen" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "tekst gebied" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "selecteren" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Activiteiten stroom" + +#: 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 "Beheerders" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Voeg een groep toe" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "groep formulier" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Weet u zeker dat uw deze groep wilt deleten - {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 "Weet u zeker dat u dit lid wilt deleten - {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:15 +#: 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 "Beheer" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Bewerk Groep" + +#: 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 "Leden" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Groep toevoegen" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Zoek groepen..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Er zijn momenteel geen groepen voor deze site" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Wil je er niet een maken?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Terug naar alle leden" + +#: 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 "Bewerk lid" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Voeg lid toe:" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Bestaande gebruiker" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Als je een nieuwe gebruiker wil toevoegen, zoek dan zijn gebruikersnaam " +"hieronder." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "of" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Nieuwe gebruiker" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Als je een nieuwe gebruiker wil uitnodigen, vul dan zijn mailadres in." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rol" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Weet u zeker dat u dit lid wil verwijderen?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Verwijderen" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Wat zijn de rollen?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: Kan groepsinformatie wijzigen en organisatieleden" +" beheren.

Member: Kan datasets toevoegen/verwijderen" +" van groepen

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Maak een Groep" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Bewerk Groep" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Maak Groep" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Doorzoeken datasets..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datasets in groep: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Naam" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Mijn Groep" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Informatie over mijn groep..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Weet je zeker dat je deze Groep wilt verwijderen?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Groep Opslaan" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Bekijk {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Verwijder dataset van deze groep" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Wat zijn groepen?" + +#: 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 "" +"U kunt een CKAN groep maken en collecties van datagroepen beheren. DIt kan " +"zijn om datasets te catalogiseren voor een project of een team, of op basis " +"van een thema, of als een eenvoudige weg om mensen jouw datasets te vinden " +"en te doorzoeken." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Verwijderd" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "lees meer" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Welkom" + +#: 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 is een toonaangevend open-source data portal platform.

CKAN " +"is een out-of-the-box software oplossing die data bruikbaar en open maakt. " +"CKAN biedt instrumenten aan die de mogelijkheden geven voor de publicatie, " +"het delen, het vinden en het gebruiken van data. (inclusief de opslag van " +"data). CKAN richt zich op data publishers (nationale en regionale overheden," +" bedrijven en organisaties) die hun data open en beschikbaar willen " +"maken.

CKAN wordt gebruikt door overheden en communities over de " +"hele wereld. Waaronder het Verenigd Koninkrijk de Verenigde Statendata.gov.uk de Europeese Unie publicdata.eu, de Braziliaanse dados.gov.br,en Nederlandse overheid.

" +"

CKAN: http://ckan.org/
CKAN Tour: " +"http://ckan.org/tour/
Features " +"overzicht: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Welkom bij 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 "" +"Dit is een mooie inleidende pararaaf over CKAN of de site in het algemeen. " +"Tot op heden hebben we nog geen copy hier, maar dit zal binnenkort komen." + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dit is een gekenmerkte sectie" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Bijv. omgeving" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Zoek gegevens" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Veel gebruikte labels" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistieken" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasets" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisaties" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "groepen" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Dit veld is verplicht" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"U kan hiet Markdown formatting gebruiken" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Waarde" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Op maat gemaakt" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Het formulier bevat onjuiste informatie:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Verplicht veld" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Image URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Ruim upload op" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisatie Vorm" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Wijzig datasets" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "gevonden voor \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Excuses, geen datasets gevonden voor \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Maak publiek" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Maak prive" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Schets" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privë" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Deze organisatie heeft geen datasets" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Weet je zeker dat je deze organisatie wilt verwijderen - {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 "Bewerk Organisatie" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Organisatie toevoegen" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Zoek organisaties" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Er zijn momenteel geen organisaties beschikbaar voor deze site" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Gebruikersnaam" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "E-mail adres" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Bijwerken lid" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Admin: Kan datasets toevoegen/bewerken/verwijderen en " +"leden van organisaties beheren.

Editor: Kan datasets" +" toevoegen en bewerken, maar kan de leden van organisaties niet beheren.

" +"

Member: Kan de datasets van organisaties bekijken , " +"maar niet toevoegen.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} leden" +msgstr[1] "{count} leden" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Creëer een Organisatie" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Update Organisatie" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Creëer Organisatie" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datasets in organisatie: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Wat zijn organisaties?" + +#: 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 "" +"

Organisaties zijn afdelingen die datasets publiceren (bv. de afdeling " +"Volksgezondheid). Dit betekent dat de datasets gepubliceerd en beheerd " +"kunnen worden door een afdeling in plaats van een enkele gebruiker.

" +"

Binnen organisaties kunnen beheerders rollen toewijzen aan leden. Hiermee" +" geven zij leden toestemming om datasets te publiceren (bv. Centraal Bureau " +"voor de Statistiek).

" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +"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 organisaties worden gebruikt om collecties van datasets te maken, " +"beheren en publiceren. Gebruikers kunnen meerdere rollen hebben binnen een " +"organisatie, afhankelijk van een autorisatielevel om toe te voegen, " +"wijzigen en publiceren." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Mijn Organisatie" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Informatie over de organisatie..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Organisatie opslaan" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Bekijk {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Creëer Dataset" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Wat zijn datasets?" + +#: 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 "" +"Een CKAN dataset is een verzameling van data bronnen (zoals bestanden), " +"samen met een beschrijving en andere informatie, op een vaste URL. Datasets " +"is datgene dat gebruikers zien wanneer ze zoeken voor data." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Veranderingen" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Weet je zeker dat je deze dataset wilt verwijderen - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Weet je zeker dat je deze bron wilt verwijderen - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Bekijk dataset" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Wijzigen metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Overzicht bijwerken" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Preview" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "updaten" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Link deze groep aan deze dataset" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Voeg toe aan groep" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Er zijn geen groepen gekoppeld aan deze dataset" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Update Dataset" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Data toevoegen aan de dataset" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Voeg een nieuwe bron toe" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Voeg bron toe" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nieuwe bron" + +#: 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 "Overzicht toevoegen" + +#: 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 "" +"Data Explorer views kunnen traag en onbetrouwbaar zijn tenzij de DataStore " +"extensie actief is. Zie de Data Explorer " +"documentatie voor meer informatie. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Toevoegen" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle bronnen" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Bekijk bron" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Wijzig bron" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Overzichten" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Ga naar bron" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Download" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Bron: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Er zijn nog geen overzichten voor deze bron." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Ziet u niet de views die u verwacht?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Een aantal redenen waarom u niet de verwachte views kan zien:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Er is geen view gemaakt die geschikt is voor deze bron." + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"De site administrators hebben mogelijk de relevante view plugins niet " +"geactiveerd." + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Additionele informatie" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Veld" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Data laatst gewijzigd" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "Onbekend" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadata laatst gewijzigd" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Gecreëerd" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formaat" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licentie" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nieuw overzicht" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Deze bron heeft geen overzichten" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Voeg een nieuwe bron toe" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Deze dataset heeft geen data, Voeg " +"toe

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API documentatie" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "volledige {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +" U kunt ook het register raadplegen met behulp van de %(api_link)s (see " +"%(api_doc_link)s) of download een %(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 "" +"U kunt ook het register raadplegen met behulp van de %(api_link)s (see " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Alle overzichten" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Overzicht bekijken" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Voorbeeld bekijken" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Extra Informatie" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Bron" + +#: 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 +msgid "Author" +msgstr "Auteur" + +#: 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 "Beheerder" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versie" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Provincie" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Laatst gewijzigd" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Voor u een dataset kan toevoegen moet u een organisatie aanmaken." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Maak een nieuwe organisatie" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Er zijn geen organisaties waaraan u deze dataset kan toewijzen." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Vraag een systeembeheerder een organisatie te maken voor u verder gaat." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "vb. Een beschrijvende titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "vb. mijn-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "bv. Enkele nuttige informatie over de data" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "vb. Economie, geestelijke gezondheidszorg, overheid" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Defenities van licenties en aanvullende informatie is te vinden op opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisaties" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Geen organisatie" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Zichtbaarheid" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Publiek" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Actief" + +#: 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 "Weet u zeker dat u deze dataset wilt verwijderen?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Volgende: Data toevoegen" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Jan Jansen" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Auteur Email" + +#: 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 "jan@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Beheerder Email" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Werk een bron bij" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Data" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "vb. Januari 2011 Gouden Prijzen" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Enkele nuttige informatie over de data" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "vb. CSV, XML of JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "vb. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Bestands grootte" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "vb. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "vb. applicatie/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Weet u zeker dat u deze bron wilt verwijderen" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Vorige" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Opslaan & een nieuwe toevoegen" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Einde" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Wat is een bron?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Een bron kan een bestand of link zijn die over nuttige informatie beschikt" + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Ontdek" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Meer informatie" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Insluiten" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "Breedte" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Hoogte" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Code" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Voorbeeld van de bron" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data en bronnen" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Deze gegevensset heeft geen inhoud" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Creëer dataset" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Data toevoegen" + +#: 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 "b.v. informatie over mijn overzicht" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Filter verwijderen" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Wat is een overzicht?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Een overzicht is een representatie van gegevens uit een bepaalde bron" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Dataset toevoegen" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher status: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Toon meer {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Toon enkel populaire {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Er zijn geen {facet_type} die overeenkomen met het gezochte" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Taal" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ga" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Geen licentie verstrekt" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Deze dataset voldoet aan de Open definitie." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Er is geen beschrijving voor deze organisatie" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Deze dataset heeft geen beschrijving" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sorteer op" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filter Resultaten" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Probeer een andere zoekopdracht.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} dataset gevonden voor \"{query}\"" +msgstr[1] "{number} datasets gevonden voor \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Geen datasets gevonden voor \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset gevonden" +msgstr[1] "{number} datasets gevonden" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Geen datasets gevonden" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} groep gevonden voor \"{query}\"" +msgstr[1] "{number} groepen gevonden voor \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Geen groepen gevonden voor \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} groep gevonden" +msgstr[1] "{number} groepen gevonden" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Geen groepen gevonden" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organisatie gevonden voor \"{query}\"" +msgstr[1] "{number} organisaties gevonden voor \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Geen organisaties gevonden voor \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organisatie gevonden" +msgstr[1] "{number} organisaties gevonden" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Geen organisatie gevonden" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sociaal" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonneren" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} heeft de tag {tag} toegevoegd aan dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} heeft de groep {group} bijgewerkt" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} heeft de organisatie {organization} bijgewerkt" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} heeft de dataset {dataset} bijgewerkt" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} heeft de bron {resource} in dataset {dataset} bijgewerkt" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} heeft zijn of haar profiel bijgewerkt" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} heeft de groep {group} verwijderd" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} heeft de organisatie {organization} verwijderd" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} heeft de dataset {dataset} verwijderd" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} heeft de bron {resource} verwijderd van dataset {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} is volgt nu {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} volgt nu {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} volgt nu {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} heeft de groep {group} opgericht" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} heeft de organisatie {organization} gemaakt" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} heeft de dataset {dataset} gemaakt" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} heeft de bron {resource} toegevoegd aan dataset {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} heeft zich ingeschreven" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} heeft de tag {tag} verwijderd van dataset {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Zoeklabels" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mijn Datasets" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mijn organisaties" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mijn groepen" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Activiteit van paginas die ik volg" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Je hebt geen datasets aangemaakt." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Nu een aanmaken?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "U bent lid van geen enkele groep" + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "U bent lid van geen enkele organisatie" + +#: 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 "Gebruikers" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Accountinformatie" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Jouw profiel laat andere CKAN gebruikers zien wie jij bent en wat jij doet." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Wijzigen details" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Volledige naam" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "Bijvoorbeeld: Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "Bijvoorbeeld: joe@voorbeeld.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Informatie over jou" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Notificatie e-mails ontvangen?" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Wijzigen wachtwoord" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Systeembeheer wachtwoord" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Wachtwoord" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Bevestig wachtwoord" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Weet u zeker dat u deze gebruiker wilt verwijderen?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Vernieuw API key" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Profiel bewerken" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle gebruikers" + +#: 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 "Inloggen" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Heb je een Account nodig?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Schrijf je nu in, het kost je alleen een minuut." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Account aanmaken" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Wachtwoord vergeten?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Geen probleem, gebruik ons wachtwoordherstelformulier om je wachtwoord " +"opnieuw in te stellen." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Wachtwoord vergeten?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Uitgelogd" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Je bent nu uitgelogd." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Je bent al ingelogd als {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Uitloggen" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Inloggegevens onthouden" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Je bent al ingelogd" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Je moet eerst uitloggen voordat je kan inloggen met een andere account." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Uitloggen" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Inschrijving" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registreren voor een nieuwe Account" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Waarom aanmelden?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Dreëer datasets, groepen en andere interessante dingen" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "gebruikersnaam" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Volledige naam" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Account aanmaken" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Wachtwoord Herstellen" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Wachtwoord Herstel" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Wachtwoord Bijwerken" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Hoe werkt dit?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Voor een nieuw wachtwoord in en wij werken je account bij" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Gebruiker heeft geen datasets aangemaakt." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Je hebt geen biografie aangemaakt." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Deze gebruiker heeft geen biografie." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Dit betekent dat alleen jij het kan zien" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Lid sinds" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Herstel uw wachtwoord" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Activiteit op: " + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Zoek resultaten..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Je volgt op dit moment niets" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Geen volgers" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Zoek Gebruikers" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Het is niet toegestaan door te verwijzen naar externe omgevingen." diff --git a/ckan/i18n/no/LC_MESSAGES/ckan.po b/ckan/i18n/no/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..2a7033ec9e1 --- /dev/null +++ b/ckan/i18n/no/LC_MESSAGES/ckan.po @@ -0,0 +1,5142 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Norwegian (https://www.transifex.com/okfn/teams/11162/no/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ressursen ikke funnet" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Ikke tilgang til å se denne siden" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Fullfør" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Venter" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Sender inn" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Feil" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ikke lastet opp ennå" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Last opp til DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Feil ved opplasting:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Feil:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Sporing av feil: " + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Sist endret" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldri" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Last opp logg" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaljer" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Slutt på logg" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Fant ikke DataStore-ressurs" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Fant ikke ressursen \"{0}\"" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Brukeren {0} har ikke tillatelse til å oppdatere ressursen {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN data-API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Få tilgang til ressursdata via et web-API med sterk query-støtte" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Endpoints" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data-APIet kan nås via disse handlingene til CKANs action-API." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Opprett" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Oppdater/legg til" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Spørring" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Spørring (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Spør" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Eksempel på spørring (første fem resultater)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Eksempel på spørring (resultater inneholder 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Eksempel på spørring (via SQL-statement)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Eksempel: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "En enkelt ajax (JSONP) forespørsel til data-APIet ved bruk av jQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Eksempel: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Lagre" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Felt {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Merkelapp" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Beskrivelse" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Dataordbok" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolonne" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Type" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Laster..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data-API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabell" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Responsiv visning" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Vis kolonner" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Skjul/vis kolonner" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasett per side" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testkonfigurasjon" + +#: ckan/templates/group/read.html:13 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 "Relevans" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Navn stigende alfabetisk" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Navn synkende alfabetisk" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Sist endret" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Egendefinert felt stigende" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Egendefinert felt synkende" + +#: ckan/templates/group/read.html:17 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 "Populære" + +#: 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 "Egendefinert tekst" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "egendefinert tekst" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landkode" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "egendefinert ressurstekst" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Denne teksten er ikke oversatt" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Denne gruppen har ingen beskrivelse" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} datasett" +msgstr[1] "{num} datasett" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 datasett" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN har mange nyttige verktøy for forhåndsvisning av data" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Følgere" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ressurser" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Bilde" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL til bilde" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"f.eks. http://example.com/image.jpg (hvis denne er tom brukes URL til " +"ressursen)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graf" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Kart" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "feil ved lasting av visning" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Klarte ikke å laste visning" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "Feilmelding fra DataStore" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Feilmelding fra DataProxy" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Rutenett" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtere" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Startpunkt i rader" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "f.eks.: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Antall rader" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "f.eks.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Type graf" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Gruppe (akse 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serie (akse 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Felttype" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Breddegrad" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Lengdegrad-felt" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON-felt" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Automatisk zoom til funksjoner" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markører for klynger" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Best vurderte datasett" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Gjennomsnittlig vurdering" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Antall vurderinger" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ingen vurderinger" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Største grupper" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Gruppe" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Antall datasett" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Ingen grupper" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Mest brukte stikkord" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Stikkordnavn" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Antall datasett" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Brukere som har opprettet flest datasett" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Bruker" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistikkmeny" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Oftest redigerte datasett" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Tekst" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Nettside" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Nettside-adresse" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"f.eks. http://example.com (hvis denne er tom brukes URL til ressursen)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Din nettleser støtter ikke iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Autoriseringsfunksjonen ikke funnet: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Admin" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaktør" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Medlem" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Du må være systemadministrator for å forvalte" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Nettstedets tittel" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Nettstedets slagord" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logo" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Om" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Tekst til om-siden" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Introtekst" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Tekst på hjemmesiden" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Egendefinert CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Egendefinert CSS som settes inn på hver side" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Hjemmeside" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Kan ikke tømme pakken %s fordi tilknyttet versjon %s inkluderer ikke-" +"slettede datakilder %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Feil på sletting av versjon %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Tømming komplett" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Handling ikke implementert." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Ingen tilgang" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Ikke funnet" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Feilaktig forespørsel" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Handlingsnavn ukjent: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-feil: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Feil på dataene i forespørselen: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Fant ikke gruppen" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Fant ikke organisasjon." + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Feil gruppetype" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisasjoner" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupper" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Stikkord" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formater" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Lisenser" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Bruker %r har ikke tillatelse til å redigere %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Ikke tilgang til å utføre bulk-oppdatering" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Ikke tilgang til å opprette en ny gruppe" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritetsfeil" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Bruker %r har ikke tilgang til å redigere rettighetene til %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Ikke tillatelse til å slette gruppen %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisasjonen er blitt slettet." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Gruppen har blitt slettet." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s har blitt slettet." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Brukeren %r har ikke tilgang til å redigere medlemmer av %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Ikke tilgang til å legge medlem til gruppen %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Ikke tilgang til å slette medlemmer fra gruppen %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Gruppemedlem er blitt slettet." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Velg to versjoner før du gjør sammenligningen." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Endringshistorikk for gruppe" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nylige endringer i gruppen:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Loggmelding:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Du følger nå {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Du følger ikke lenger {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Ikke tilgang til å se følgere %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Dette nettstedet er frakoblet. Databasen er ikke startet." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Oppdater profilen din og legg til e-postadressen din." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s bruker e-postadressen din i tilfelle du trenger å tilbakestille passordet" +" ditt." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Ugyldig søk: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameteren \"{parameter_name}\" er ikke et heltall" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Datasett ikke funnet" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Ugyldig versjonsformat: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Støtter ikke visning av datasett av typen \"{package_type}\" ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Har ikke tilgang til å lese datakilden %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Endringshistorikk for datasett." + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Siste endringer i CKAN-datasettet:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Ikke tilgang til å opprette en datakilde" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Ikke tilgang til å redigere denne ressursen" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Ikke tilgang til å oppdatere datasettet" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Fant ikke datasettet {id}." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Du må legge til minst en dataressurs" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Ikke tilgang til å opprette en ressurs" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Ikke tilgang til å lage en ressurs for denne pakken" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Kan ikke legge datakilden til søkeindeksen." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Kan ikke oppdatere søkeindeksen." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Datasettet har blitt slettet." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Ikke tilgang til å slette datakilde %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ressursen har blitt slettet." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Ikke tilgang til å slette ressursen %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Fant ikke ressursvisning" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Fant ikke ressursdata" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Materiale til nedlasting ikke tilgjengelig." + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Ikke tilgang til å lese datasettet %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Ikke tilgang til å lese ressursen %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Ikke tlgang til å redigere ressurs" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Fant ikke visning" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Fant ikke visningstype" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Feil i data for ressursvisning" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Ressursvisning finnes ikke" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Ingen forhåndsvisning er definert." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Bruker ikke funnet" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Ikke tilgang til å registrere som bruker." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Ikke tilgang til å opprette en brukerkonto" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Har ikke tillatelse til å slette brukeren \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Ingen bruker spesifisert" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Ikke tilgang til å redigere brukeren %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil oppdatert" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Ikke tilgang til å opprette bruker %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Feil i captcha. Prøv igjen." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Bruker \"%s\" er nå registrert, men du er fortsatt logget inn som \"%s\" fra" +" før" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Ikke tilgang til å redigere en bruker." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Feil passord" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Gammelt passord" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "feil passord" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Innlogging mislyktes. Galt brukernavn eller passord." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Ikke tilgang til å be om tilbakestilling av passord." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Ikke tilgang til å tilbakestille passord." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Ugyldig tilbakestillingskode. Prøv igjen." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ditt passord har blitt tilbakestilt." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Passordet må bestå av 4 tegn eller mer." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Passordene du skrev inn stemmer ikke overens." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Du må oppgi et passord" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Fant ikke materiale" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} ikke funnet" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Alt" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Se" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} ny aktivitet fra {site_title}" +msgstr[1] "{n} nye aktiviteter fra {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "akkurat nå" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Ukjent" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Ressurs mangler navn" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Opprettet nytt datasett." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Redigerte ressurser." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Redigerte innstillinger." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visning" +msgstr[1] "{number} visninger" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nylig visning" +msgstr[1] "{number} nylige visninger" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Ingen e-postadresse for mottaker tilgjengelig" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisasjon" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "gruppe" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Manglende verdi" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Feltet %(name)s er uventet." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Oppgi et heltall" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Må være en unicode-streng" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Ugyldige ressurser for datakilde" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Ekstra" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Stikkordtype \"%s\" eksisterer ikke" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Datasett" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Klarte ikke å tolke som gyldig JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Du må oppgi en organisasjon" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisasjonen eksisterer ikke" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Du kan ikke legge et datasett til denne organisasjonen" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Ugyldig heltall" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Må være et heltall" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Må være et positivt heltall" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Feil i datoformat" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Ingen lenker er tillatt i log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Datasett-ID finnes allerede" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ressurs" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Dette gruppenavnet eller ID eksisterer ikke." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Aktivitetstype" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Navn må være tekststrenger" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Navnet kan ikke brukes" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Må være på minst %s tegn" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Navnet må inneholde maksimalt %i tegn" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "Må bestå av små bokstaver, tall og og disse symbolene: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Denne URL er allerede i bruk." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Navnet \"%s\" inneholder mindre enn %s tegn" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Navnet \"%s\" inneholder flere enn %s tegn" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versjon må inneholde maksimalt %i tegn" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Dupliser nøkkel \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "En gruppe med dette navnet finnes allerede i databasen" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Lengden til stikkordet \"%s\" er kortere enn minimum %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Lengden til stikkordet \"%s\" er mer enn maksimalt %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Stikkordet \"%s\" må skrives med alfanumeriske tegn (ascii) og symboler: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Stikkordet \"%s\" kan ikke inneholde store bokstaver" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Brukernavn må være tekststrenger" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Brukernavnet er ikke tilgjengelig." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Skriv inn begge passordene" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Passord må være tekststrenger" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Passordene du skrev inn stemmer ikke overens" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Endring ikke godkjent, da innholdet ser ut som spam. Unngå lenker i " +"beskrivelsen din." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Navnet må være minst %s tegn langt" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Dette navnet er allerede i bruk." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "Kan ikke endre verdi på nøkkel fra %s til %s. Nøkkelen er read-only" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Fant ikke stikkordvokabular." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Stikkord %s tilhører ikke vokabularet %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Intet stikkordnavn" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Stikkord %s tilhører allerede vokabular %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Oppgi en gyldig URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rollen eksisterer ikke." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Datasett uten organisasjon kan ikke være private." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "ikke en liste" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "ikke en streng" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" +"Kan ikke sette dette elementet som overordnet, det ville føre til en sirkel " +"i hierarkiet" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" og \"filter_values\" må ha samme lengde" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" er nødvendig når \"filter_values\" er oppgitt" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" er nødvendig når \"filter_fields\" er oppgitt" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Det finnes et skjema-felt med samme navn" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "E-post-adressa {email} har ikke gyldig format." + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Manglende verdi" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Prøver å opprette en organisasjon som en gruppe" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Du må angi et navn eller id for datakilden (parameter \"pakke\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Du må angi en rangering (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Rangeringen må være et heltall" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Rangeringen må være mellom %i og %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Klarte ikke å sende invitasjons-e-post, brukeren ble ikke opprettet: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Du må være innlogget for å kunne følge brukere" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Du kan ikke følge deg selv" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Du følger allerede {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Du må være innlogget for å følge et datasett." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Bruker {username} eksisterer ikke." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Du må være logget inn for å følge en gruppe." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id finnes ikke i data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan ikke finne vokabular \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan ikke finne stikkord \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Du må være innlogget for å slutte å følge noe." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Du følger ikke {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Fant ikke ressursen." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ikke spesifiser hvis \"query\"-parameter brukes" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Må være : pair(s)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Feltet \"{field}\" ikke gjenkjent i resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Fant ikke datakilden." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Fant ikke TaskStatus." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Fant ikke organisasjon." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Bruker %s ikke tilgang til å registrere datakilder" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Bruker %s ikke tilgang til å redigere disse gruppene" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "Bruker %s ikke tilgang til å legge datasett til denne organisasjonen" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Datasett-ID ikke oppgitt, kan ikke sjekke autentisering." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "Ingen datakilde funnet for denne ressursen, kan ikke sjekke aut." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Bruker %s har ikke tillatelse til å opprette ressurser for datasettet %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Bruker %s ikke tilgang til å redigere disse datakildene" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Bruker %s ikke tilgang til å opprette grupper" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Bruker %s har ikke tilgang til å opprette organisasjoner" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Brukeren {user} har ikke tillatelse til å opprette brukere via API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Har ikke tillatelse til å opprette brukere" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Fant ikke gruppen." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Bruker %s har ikke tilgang til å legge til medlemmer" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Bruker %s har ikke tilgang til å redigere gruppen %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Bruker %s har ikke tilgang til å slette ressursen %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Fant ikke ressursvisning, kan ikke sjekke autentisering." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Bruker %s har ikke tilgang til å slette forhold %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Bruker %s har ikke tilgang til å slette grupper" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Bruker %s har ikke tilgang til å slette gruppen %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Bruker %s har ikke tilgang til å slette organisasjoner" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Bruker %s har ikke tilgang til å slette organisasjonen %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Bruker %s har ikke tilgang til å slette task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Ikke tilgang" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Bruker %s har ikke tilgang til å lese disse datakildene" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Bruker %s har ikke tilgang il å lese datakilden %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Bruker %s har ikke tilgang til å lese ressurs %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Bruker %s har ikke tilgang til å lese gruppe %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Du må være innlogget for å få tilgang til kontrollpanelet ditt." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Bruker %s har ikke tilgang til å redigere datakilden %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Bruker %s har ikke tilgang til å redigere ressursen %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Bruker %s har ikke tilgang til å endre status for datakilden %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Bruker %s har ikke tilgang til å redigere organisasjonen %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Bruker %s har ikke tilgang til å endre status for gruppen %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Bruker %s har ikke tilgang til å redigere tillatelsene for gruppen %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Må være logget inn for å redigere bruker" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Bruker %s har ikke tilgang til å redigere bruker %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Bruker {0} har ikke tilgang til å oppdatere bruker {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Bruker %s har ikke tilgang til å endre status for versjonen" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Bruker %s har ikke tilgang til å oppdatere tabellen task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Bruker %s har ikke tilgang til å oppdatere term_translation table" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Lisens ikke oppgitt" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Navngivelse" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Navngivelse-Del på samme vilkår" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Annet (åpen)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Annet (public domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Annet (navngivelse)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons ikke-kommersiell" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Annet (ikke-kommersiell)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Annet (ikke åpen)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "avhenger av %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "tilhører %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "avledes fra %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "har avledningen %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "lenker til %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "er lenket fra %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "er underordnet av %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "er overordnet til %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "har søsken %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Ingen API-data kan lastes for denne ressursen" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Kunne ikke laste informasjon om data-API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Skriv inn..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Ingen treff" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "For kort, må være minst ett tegn" +msgstr[1] "For kort, må være minst %(num)d tegn" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Du har gjort endringer i skjemaet som ikke er lagret" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Bekreft handling" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Er du sikker på at du vil utføre denne handlingen?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Bekreft" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Avbryt" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Ikke følg" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Følg" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Lenke" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Lenke til en URL på internett (du kan også lenke til et API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Opplasting" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Fjern" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Last opp en fil til datamaskinen din" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Fil" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Lagre rekkefølge" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Lagrer..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Last opp en fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "En feil oppsto" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Klarer ikke å laste opp fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Klarer ikke å autentisere opplasting" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ressurs lastet opp" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Finner ikke data for opplastet fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Du laster opp en fil. Er du sikker på at du vil forlate siden og stoppe " +"denne opplastingen?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Opprett filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Velg et felt" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Rediger" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Vis mer" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Skjul" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Feil %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Om {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Association" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Laget med CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Innstillinger for sysadmin" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "vis profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Dashboard (%(num)d nytt element)" +msgstr[1] "Kontrollpanel (%(num)d nye elementer)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Kontrollpanel" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Logg ut" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Logg inn" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrer" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datasett" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Søk datasett" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Søk" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Søk i datasett" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Gå til innhold" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Last mindre" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Last mer" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ingen aktiviteter i denne aktivitetsstrømmen" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrasjon" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Systemadministratorer" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Oppsett" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Søppel" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logo for nettstedet" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Er du sikker på at du vil tilbakestille oppsettet?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Tilbakestill" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Oppdater oppsett" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Oppsett-valg for CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Nettstedets tittel: Dette er navnet på dette CKAN-" +"nettstedet. Det dukker opp forskjellige steder rundt omkring i CKAN.

" +"

Stil: Velg blant flere varianter av fargekart for å få " +"en rask tilpasning av utseendet.

Logo: Dette er " +"logoen som vises i toppteksten på alle sidene.

Om: " +"Denne teksten vises på om-siden.

" +"

Introtekst: Denne teksten vises på hjemmesiden, og er en første informasjon til alle " +"besøkende.

Egendefinert CSS: Dette er en CSS-blokk " +"som settes inn i i <head>-tagten på alle sidene. Hvis du " +"vil styre utseendet mer fullstendig, les dokumentasjonen.

" +"

Hjemmeside: Her velger du en forhåndsdefinert layout for" +" modulene som vises på hjemmesiden.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bekreft tilbakestilling" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrer CKAN" + +#: 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 "" +"

Som sysadmin-bruker har du full kontroll over denne CKAN-installasjonen." +" Vær sikker på at du vet hva du gjør!

Du finner mer informasjon i " +"CKANs sysadmin-" +"dokumentasjon

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Bekreft sletting" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Slett" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Ingen forhåndsvisning av denne ressursen for øyeblikket." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klikk her for mer informasjon." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Last ned ressurs" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Ingen forhåndsvisning tilgjengelig." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Flere detaljer..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Ingen håndtering definert for datatype: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standard inndata" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Middels bredde inndata" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Full bredde inndata" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stor" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Store inndata" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Legg til på begynnelsen" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Legg til på begynnelsen av inndata" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Tilpasset felt (tomt)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Tilpasset felt" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstområde" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Velg" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitetsstrøm" + +#: 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 "Administratorer" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Legg til en gruppe" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Gruppeskjema" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Er du sikker på at du vil slette gruppen - {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 "Er du sikker på at du vil slette medlem - {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:15 +#: 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 "Administrer" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Rediger gruppen" + +#: 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 "Medlemmer" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Legg til gruppe" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Søk i grupper..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Det er for tiden ingen grupper for dette nettstedet" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Hva med å opprette en?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Tilbake til alle medlemmer" + +#: 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 "Rediger medlem" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Legg til medlem" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Eksisterende bruker" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Hvis du vil legge til en eksisterende bruker, søk etter brukernavnet " +"nedenfor." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "eller" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Ny bruker" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Hvis du vil invitere en ny bruker, oppgi e-postadressen deres" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rolle" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Er du sikker på at du vil slette dette medlemmet?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Slett" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Hva er roller?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: Kan redigere informasjon om gruppa og " +"administrere medlemmer av organisasjonen.

Medlem: " +"Kan legge til og fjerne datasett fra grupper.

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Opprett en gruppe" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Oppdater gruppen" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Opprett gruppe" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Søk i datasett..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datasett i gruppen: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Navn" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Min gruppe" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Litt informasjon om min gruppe..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Er du sikker på at du vil slette denne gruppen?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Lagre gruppe" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Se {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Fjern datasett fra denne gruppen" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Hva er grupper?" + +#: 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 "" +"Du kan bruke grupper i CKAN for å opprette og administrere samlinger av " +"datasett. Du kan for eksempel gruppere datasett for et bestemt prosjekt " +"eller en arbeidsgruppe, et bestemt emne, eller som en enkel måte å hjelpe " +"brukere til å finne fram til datasettene dine." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Slettet" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "les mer" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Velkommen" + +#: 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 er verdens ledende programvare for dataportaler, basert på åpen " +"kildekode.

CKAN er en komplett programvareløsning som gjør data " +"tilgjengelig og klar for bruk - ved å tilby verktøy som gjør det lett å " +"publisere, dele, finne og bruke data (inkludert lagring av data og robuste " +"data-APIer). CKAN er rettet mot dem som vil publisere data (nasjonale og " +"regionale myndigheter, bedrifter og organisasjoner) og åpne dem opp for " +"viderebruk.

CKAN brukes av myndigheter og brukergrupper verden over, " +"og brukes til en rekke offisielle og brukerdrevne dataportaler, som " +"Storbritannias data.gov.uk og EUs publicdata.eu, den brasilianske dados.gov.br, så vel som portaler for byer" +" og kommuner i USA, Storbritannia, Argentina, Finland og andre steder.

" +"

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" +msgstr "Velkommen til 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 "" +"Dette er en fin innledning til CKAN eller om nettstedet. Snart har vi en bra" +" tekst klar her." + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Dette er en framhevet seksjon" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "F.eks. miljø" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Søk i data" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populære stikkord" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistikker" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "datasett" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasett" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisasjoner" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupper" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Dette feltet er obligatorisk" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Du kan bruke Markdown-formatering her" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Verdi" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Tilpasset" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Skjemaet inneholder ugyldig informasjon:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Obligatorisk felt" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL for bilde" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Fjern opplasting" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisasjonsskjema" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Rediger datasett" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "funnet for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Beklager, ingen datasett funnet for \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Gjør offentlig" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Gjør privat" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Utkast" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Ingen datasett knyttet til denne organisasjonen" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Er du sikker på at du vil slette organisasjonen - {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 "Rediger organisasjon" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Legg til organisasjon" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Søk i organisasjoner..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Det er for tiden ingen organisasjoner for dette nettstedet" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Brukernavn" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "E-post" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Oppdater medlem" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Admin: Kan legge til, redigere og slette datasett, og " +"administrere gruppemedlemmer.

Redaktør: Kan legge " +"til og redigere datasett, men ikke administrere gruppemedlemmer.

" +"

Medlem: Kan se gruppens private datasett, men ikke legge" +" til nye datasett.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} medlem" +msgstr[1] "{count} medlemmer" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Opprett en organisasjon" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Oppdater organisasjon" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Opprett organisasjon" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datasett i organisasjon: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Hva er organisasjoner?" + +#: 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 "" +"

Organisasjoner fungerer som publiserende enheter for datasett. Dette " +"betyr at datasett kan bli publisert av og tilhøre en enhet (f.eks. " +"Helsedirektoratet eller Statistisk sentralbyrå) i stedet for en enkelt " +"bruker.

Innen en organisasjon kan administratorer tildele roller og gi" +" tillatelser til medlemmene sine, slik at enkeltbrukere kan å publisere " +"datasett fra organisasjonen sin.

" + +#: 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 "" +"Organisasjoner i CKAN brukes for å opprette, administrere og publisere " +"samlinger av datasett. Brukere kan ha forskjellige roller innen en " +"organisasjon, med forskjellige tillatelser til å opprette, redigere og " +"publisere." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Min organisasjon" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Litt informasjon om min organisasjon..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Lagre organisasjon" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Vis {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Opprett datasett" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Hva er datasett?" + +#: 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 "" +"Datasett i CKAN er en samling av dataressurser (f.eks. filer), sammen med " +"beskrivelse og annen informasjon, på en fast URL. Datasett er det brukere " +"ser når de søker etter data." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Endringer" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Er du sikker på at du vil slette datasettet - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Er du sikker på at du vil slette ressursen - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Vis datasett" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Rediger metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Rediger visning" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Forhåndsvisning" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Oppdater" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Knytt denne gruppen til dette datasettet" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Legg til i gruppe" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Ingen grupper er knyttet til dette datasettet" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Oppdater datasettet" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Legg data til datasettet" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Legg til ressurser" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Legg til ressurs" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Ny ressurs" + +#: 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 "Opprett visning" + +#: 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 "" +"Data Explorer-visninger kan være trege og upålitelige hvis ikke DataStore-" +"tillegget er installert. Les mer i dokumentasjonen for Data " +"Explorer. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Legg til" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alle ressurser" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Vis datasettets ressurser" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Rediger ressurs" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Visninger" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Gå til ressurs" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Nedlasting" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Kilde: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Det er ikke laget noen visninger for denne ressursen ennå." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Ser du ikke de visningene du ventet deg?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Dette er noen mulige grunner til at visningene mangler:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Det har ikke blitt laget noen visning som passer for denne ressursen" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Nettstedsadministratorene har kanskje ikke aktivert de nødvendige tilleggene" +" for visningen." + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Hvis en visning krever DataStore kan det hende at DataStore-tillegget ikke " +"er aktivert på nettstedet, eller dataene har ikke blitt importert inn i " +"DataStore ennå, eller DataStore er ikke ferdig med å behandle dataene." + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Tilleggsinformasjon" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Felt" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Data sist oppdatert" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "ukjent" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadata sist oppdatert" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Opprettet" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Lisens" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ny visning" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Denne ressursen har ingen visninger" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Legg til ny ressurs" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Dette datasettet har ingen data, hva" +" med å legge til noen?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API-dokumenter" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "full {format}-dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +"Du kan også få tilgang til registeret ved å bruke %(api_link)s (se " +"%(api_doc_link)s) eller last ned en %(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 "" +"Du får også tilgang til dette registeret med %(api_link)s (se " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Alle visninger" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Se visning" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Forhåndsvis visning" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Tilleggsinformasjon" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Kilde" + +#: 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 +msgid "Author" +msgstr "Forfatter" + +#: 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 "Vedlikeholdes av" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versjon" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Status" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Sist oppdatert" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Før du kan opprette et datasett må du opprette en organisasjon" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Opprett ny organisasjon" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Det finnes ikke noen organisasjoner som du kan knytte dette datasettet til" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "Be en administrator om å opprette en organisasjon før du fortsetter." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Tittel" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "f.eks. en beskrivende tittel" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "f.eks. mitt-datasett" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "f.eks. noen nyttige notater om dataene" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "f.eks. økonomi, helse, myndigheter" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Definisjoner av lisenser og tilleggsinformasjon kan bil funnet på opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisasjon" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Ingen organisasjon" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Synlighet" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Offentlig" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktiv" + +#: 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 "" +"Datalisensen du velger over gjelder kun innholdet av ressursfilene du" +" legger til i dette datasettet. Ved å fylle ut dette skjemaet godtar du å " +"publisere metadataene under lisensen Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Er du sikker på at du vil slette dette datasettet?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Neste: Legg til data" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Kari Nordmann" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Forfatters e-post" + +#: 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 "kari@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Vedlikeholders e-post" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Oppdater ressurs" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Data" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/eksterne-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "f.eks. gullpriser i januar 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Noen nyttige notater om dataene" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "f.eks. CSV, XML eller JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Vil bli fylt ut automatisk. Du kan la dette feltet stå tomt." + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "f.eks. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Filstørrelse" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "f.eks. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "f.eks. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Er du sikker på at du vil slette denne ressursen?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Tidligere" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Lagre og legg til et nytt" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Avslutt" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Hva er en ressurs?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"En ressurs kan være en fil eller lenke til en fil som inneholder nyttige " +"data." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Utforsk" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Tilleggsinformasjon" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Inkluder (embed)" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Denne ressurvisningen er ikke tilgjengelig nå." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Bygg inn ressursvisning" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Du kan kopiere og lime inn koden for innebygging i et " +"nettpubliseringsverktøy (f.eks. en blogg) som tillater HTML." + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Bredde" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Høyde" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kode" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Forhåndsvisning av ressurs" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data og ressurser" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Dette datasettet har ingen data" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Opprett et datasett »" + +#: 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 "Legg til data" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "f.eks. Min visning" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "f.eks. Informasjon om visningen min" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Fjern filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Hva er en visning?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "En visning er en representasjon av data i en ressurs." + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Legg til datasett" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher-status: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Tilbakesporings-URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Vis flere {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Vis bare populære {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Det er ingen {facet_type} som passer med dette søket" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Hjem" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Språk" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Velg" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Lisens er ikke oppgitt" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Dette datasettet tilfredsstiller \"Open Definition\", en definisjon av åpen " +"kunnskap." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Det er ingen beskrivelse av denne organisasjonen" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Dette datasettet mangler beskrivelse" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sorter etter" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filterresultater" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Prøv et annet søk.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Det oppstod en feil under søkinga. " +"Prøv igjen.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "Fant {number} datasett for \"{query}\"" +msgstr[1] "Fant {number} datasett for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Fant ingen datasett for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "Fant {number} datasett" +msgstr[1] "Fant {number} datasett" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Fant ikke noen datasett" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "Fant {number} datasett for \"{query}\"" +msgstr[1] "Fant {number} datasett for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Fant ingen grupper for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "Fant {number} gruppe" +msgstr[1] "Fant {number} grupper" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Fant ingen grupper" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "Fant {number} organisasjon for \"{query}\"" +msgstr[1] "Fant {number} organisasjoner for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Fant ingen organisasjoner for \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "Fant {number} organisasjon" +msgstr[1] "Fant {number} organisasjoner" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Fant ingen organisasjoner" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Sosiale nettverk" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonner" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "E-post" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} la stikkordet {tag} til datasettet {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} oppdaterte gruppen {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} oppdaterte organisasjonen {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} oppdaterte datasettet {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} oppdaterte ressursen {resource} i datasettet {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} oppdaterte profilen sin" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} slettet gruppen {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} slettet organisasjonen {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} slettet datasettet {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} slettet ressursen {resource} fra datasettet {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} følger nå {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} følger nå {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} følger nå {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} opprettet gruppen {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} opprettet organisasjonen {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} opprettet datasettet {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} la ressursen {resource} til datasettet {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} registrert" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fjernet stikkordet {tag} fra datasettet {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Søk i stikkord" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nyhetsstrøm" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mine datasett" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mine organisasjoner" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mine grupper" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktiviteter fra elementer jeg følger" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Du har ikke opprettet noen datasett." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Opprette nå?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Du er ikke medlem av noen grupper." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Du er ikke medlem av noen organisasjoner." + +#: 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 "Brukere:" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontoinformasjon" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"I profilen kan du fortelle andre CKAN-brukere om hvem du er og hva du gjør." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Endre detaljer" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Fullt navn" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "f.eks. Kari Nordmann" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "f.eks. kari@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Litt informasjon om deg selv." + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonner på e-postvarsling" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Endre passord" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Passord for systemadministrator" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Passord" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Bekreft passord" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Er du sikker på at du vil slette denne brukeren?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" +"Er du sikker på at du vil lage ny API-nøkkel? (Den vil erstatte den gamle.)" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Lag en ny API-nøkkel" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Oppdater profil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alle brukere" + +#: 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 "Innlogging" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Trenger du en konto?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Opprett brukerkonto, det tar bare et øyeblikk." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Opprett konto" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Har du glemt passordet ditt?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Ikke noe problem, bruk skjemaet vårt for tilbakestilling av passord." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Glemt passordet?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Logget ut" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Du er logget ut." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Du er allerede logget inn som {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logg ut" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Husk meg" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Du er logget inn allerede" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Du må logge ut før du kan logge inn med en annen konto." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Logg ut nå" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrering" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Opprette brukerkonto" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Hvorfor registrere deg?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Opprett datasett, grupper og andre interessante ting" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "brukernavn" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fullt navn" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Opprett konto" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Tilbakestill passordet ditt" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Tilbakestill passord" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Oppdater passord" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Hvordan virker dette?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Oppgi nytt passord, så oppdaterer vi informasjonen for kontoen din" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Brukeren har ikke opprettet noen datasett" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Du har ikke skrevet noen biografi." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Denne brukeren har ingen biografi." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Det betyr at du er den eneste som kan se dette" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Medlem siden" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API-nøkkel" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Tilbakestill ditt passord" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivitet fra:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Søk i lista..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Du følger ikke noe" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Ingen følgere" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Søk brukere" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Videresending til eksternt nettsted er ikke tillatt." diff --git a/ckan/i18n/pl/LC_MESSAGES/ckan.po b/ckan/i18n/pl/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..4230b0d2ebf --- /dev/null +++ b/ckan/i18n/pl/LC_MESSAGES/ckan.po @@ -0,0 +1,5057 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Polish (https://www.transifex.com/okfn/teams/11162/pl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: pl\n" +"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Zasób nie został znaleziony" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Brak autoryzacji, aby zobaczyć tę stronę" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Błąd" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Błąd przesyłania:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Błąd:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Opis błędu:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ostatnia modyfikacja" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nigdy" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Szczegóły" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Kwerenda" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Przykład: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Przykład: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Zapisz" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Opis" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolumna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Typ" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Ładowanie..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabela" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Ostatnia modyfikacja" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "Popularne" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 zbiorów danych" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Zasoby" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Obraz" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Adres URL obrazu" + +#: 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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Najlepiej ocenione zbiory danych" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Średnia ocena" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Liczba ocen" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Brak ocen" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Największe grupy" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupa" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Liczba zbiorów danych" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Najczęstsze tagi" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Liczba zbiorów" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Użytkownik" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Najczęściej edytowane zbiory danych" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funkcja autoryzjacji nie została znaleziona: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Edytor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Członek" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Aby zarządzać trzeba mieć uprawnienia administratora" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Tytuł strony" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Styl" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "O serwisie" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Tekst na stronie \"O nas\"" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Tekst na stronie głównej" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Własny CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Strona główna" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Nie można unicestwić pakietu %s ponieważ wersja %s posiada pakiety, które " +"nie zostały usunięte %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Wystąpił problem przy usuwaniu wersji %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Usuwanie zakończone" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Akacja nie jest zaimplementowana." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Odmowa dostępu" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nie znaleziono" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Nieprawidłowe żądanie" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nieznana nazwa akcji:%s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Błąd JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Błędne żądanie: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupa nie została znaleziona" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizacje" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupy" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tagi" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licencje" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Użytkownik %r nie posiada autoryzacji by edytować %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Brak autoryzacji by utworzyć grupę" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Błąd integralności" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Użytkownik %r nie posiada autoryzacji by edytować autoryzacje %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizacja została usunięta." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Grupa została usunięta" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Zaznacz dwie wersje aby móc dokonać porównania." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Histora wersji grupy CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Ostanie zmiany w grupie CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Wiadomość w logu:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Strona w tej chwili nie działa. Baza danych nie została zainicjowana." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Prosimy o zaktualizowanie profilu i dodanie adresu " +"e-mail." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s używa Twojego adresu e-mail jeśli chcesz zrestartować hasło." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Zbiór danych nie został znaleziony" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Nieprawidłowy format wersji: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Brak autoryzacji by wyświetlić pakiet %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historia zmian zbioru danych CKAN." + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Ostanie zmiany w zbiorze danych CKAN: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Brak autoryzacji by utowrzyć pakiet" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Nie można dodać pakiet do indeksu wyszukiwania." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Nie można uaktualnić indeksu wyszukiwania." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Brak autoryzacji do odczytania zasobu %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Nie znaleziono użytkownika" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Brak autoryzacji by utworzyć użytkownika" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nie określono użytkownika" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Brak autoryzacji by zmodyfikować użytkownika %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil zaktualizowany" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Brak autoryzacji by utworzyć użytkownika %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Błędny kod Captcha. Spróbuj ponownie." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Błędy klucz resetujący. Spróbuj ponownie." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Twoje hasło zostało zresetowane." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Twoje hasło musi posiadać co najmniej 4 znaki." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Wprowadzone hasła różnią się." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Przeglądanie" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Adres e-mail adresata niedostępny" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Brakująca wartość" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Niepoprawne zasoby pakietu" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Dodatkowe informacje" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Zbiór danych" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Niepoprawna liczba całkowita" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Nieprawidłowy format danych" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Nie można umieszczać linków w treści logu." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Zasób" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Typ aktywności" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nazwa może zawierać maksymalnie %i znaków" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Ten URL jest już używany." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Nazwa \"%s\" jest krótsza niż wymagane minimum %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Nazwa \"%s\" jest dłuższa niż dopuszczalne maksimum %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Wersja może zawierać maksymalnie %i znaków" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Zduplikowany klucz \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Grupa o tej nazwie już się występuje w bazie danych" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" jest krótszy od wymagego minimum %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Tag \"%s\" jest dłuższy niż wynosi maksium: %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Tag \"%s\" musi zawierać znaki alfanumeryczne oraz symbole:-_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" nie może zawierać wielkich liter" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Ten login nie jest dostępny." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Proszę wprowadzić oba hasła" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Wprowadzone hasła nie pokrywają się" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Modyfikacja została zablokowana, ponieważ wygląda na spam. Prosimy o " +"powstrzymanie się od używanai linków w opisie." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Nazwa musi posiadać co najmniej %s znaków" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Brakująca wartość" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" +"Musisz określić identyfikator pakietu lub jego nazwę (parametr \"pakiet\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Musisz wprowadzić ocenę (parametr \"ocena\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Ocena musi być liczbą całkowitą." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Ocena musi być między %i i %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Zasób nie został znaleziony." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pakiet nie został znaleziony." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Nie znaleziono stanu zadania." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Użytkownik %s nie jest upoważniony do tworzenia pakietów" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Użytkownik %s nie jest upoważniony do edycji tych grup" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nie znaleziono pakietu dla tego zasobu, nie można sprawdzić autoryzacji." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Użytkownik %s nie jest upoważniony do edycji tych pakietów" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Użytkownik %s nie jest upoważniony do tworzenia grup" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupa nie została znaleziona." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Użtkownik %s nie jest upoważniony do edycji grupy %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Użytkownik %s nie jest upoważniony do usunięcia relacji %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Użytkownik %s nie jest upoważniony do usunięcia grupy %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Użytkownik %s nie jest upoważniony by usunąć task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Użytkownik %s nie jest upoważniony do odczytania tych pakietów" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Użytkownik %s nie jest upoważniony do odczytania pakietu %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Użytkownik %s nie jest upoważniony by odczytać zasób %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Użytkownik %s nie jest upoważniony do edycji pakietu %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Użytkownik %s nie jest upoważniony do zmiany stanu pakietu %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Użytkownik %s nie jest upoważniony do zmiany stanu grupy %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Użytkownik %s nie jest upoważniony do edycji praw dostępu do grupy %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Użytkownik %s nie jest upoważniony do edycji użytkownika %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Użytkownik %s nie jest upoważniony do zmiany stanu wersji" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Użytkownik %s nie jest upoważniony by modyfikować tabelę task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Nie określono licencji" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Inne (domena publiczna)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "zależy od %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "jest zależnością %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "dziedziczy z %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "posiada pochodne %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "posiada link do %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "jest powiązany z %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "jest dzieckiem %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "jest rodzicem %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "ma rodzeństwo %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Anuluj" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Prześlij plik" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Plik" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Prześlij plik" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Edycja" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Wyloguj się" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Zaloguj" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Zarejestruj się" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Zbiory danych" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Wyszukaj zbiory danych" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Szukaj" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Kosz" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logo strony" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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 "Administratorzy" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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 "Członkowie" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Dodaj grupę" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Usuń" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nazwa" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Witamy" + +#: 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 "Witaj w 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 "" + +#: 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:11 +msgid "dataset" +msgstr "zbiór danych" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "zbiory danych" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Wartość" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formularz posiada nieprawidłowe pola:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:98 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nazwa użytkownika" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Adres email" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Zmiany" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Podgląd" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Dodaj" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Punkt dostępowy API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Pobierz" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Dodatkowe informacje" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Pole" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencja" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Dokumentacja API" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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 "Źródło" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Opiekun" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Wersja" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stan" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Tytuł" + +#: 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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "Szerokość" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Wysokość" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Dodaj zbiór danych" + +#: 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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Strona startowa" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Język" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ten pakiet jest zgodny z Definicją Otwartości (Open Definition)." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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] "" +msgstr[2] "" +msgstr[3] "" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Adres e-mail" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 "Użytkownicy" + +#: 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:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Zmień hasło" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Hasło" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Powtórz hasło" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Zaloguj się" + +#: 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 "Zapomniałeś(aś) hasła?" + +#: 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 "Wyloguj się" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Klucz API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Zresetuj swoje hasło" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..bcb26534099 --- /dev/null +++ b/ckan/i18n/pt_BR/LC_MESSAGES/ckan.po @@ -0,0 +1,5186 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/okfn/teams/11162/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Recurso não encontrado" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Não autorizado a ver esta página" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completo" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendente" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submetendo" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Erro" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Não inserido ainda" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Enviar para DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Erro no envio:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Erro:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Rastreamento do erro:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ultima atualização" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Enviar Log" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalhes" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fim do log" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "recurso DataStore não encontrado" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" não foi encontrado." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Usuário {0} não está autorizado para atualizar o recurso {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "API de Dados do CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Acesse recursos pela web API com poderoso suporte a consultas" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Pontos de acesso" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "A Data API pode ser acessada pelas seguintes ações da CKAN action API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Criar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Atualizar / Inserir" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Consulta" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Consulta (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Consultando" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Exemplo de consulta (primeiros 5 resultados)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Exemplo de consulta (resultados contendo 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Exemplo de consulta (via SQL statement)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Exemplo: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Uma simples consulta ajax (JSONP) para a data API usando jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Exemplo: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Salvar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Campo {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Rótulo" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descrição" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Dicionário de Dados" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Coluna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipo" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Carregando ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API de dados" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabela" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Tela responsiva" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar Colunas" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Mostrar/Ocultar Colunas" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de dados por página" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Configuração teste" + +#: ckan/templates/group/read.html:13 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 "Relevância" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome Crescente" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome Descrescente" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Modificada pela última vez" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo Personalizado Crescente" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo Personalizado Decrescente" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Customizar texto" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "texto personalizado" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código do país" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +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 é um texto não traduzido" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Este grupo está sem descrição" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Conjunto de dados" +msgstr[1] "{num} Conjuntos de dados" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Conjunto de Dados" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"A ferramenta de pré-visualização de dados do CKAN tem muitas funcionalidades" +" poderosas" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imagem" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Url da imagem" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"ex.: http://exemplo.com/imagem.jpg (se estiver em branco usará a url do " +"recurso)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Explorador de Dados" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Gráfico" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "erro ao carregar visualização" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Não foi possível carregar a visão" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore retornou um erro" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataPorxy retornou um erro" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Grade" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtros" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Deslocamento de linhas" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "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 "Quantidade de linhas" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "ex.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tipo de gráfico" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Eixo 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Série (Eixo 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tipo de campo" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo de latitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo de longitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Aproximar automaticamente de pontos de interesse" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Marcadores de algomeração" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Conjuntos de Dados mais bem avaliados" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Média de avaliação" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Número de avaliações" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Nenhuma avaliação" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Maiores Grupos" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupo" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Número de conjuntos de dados" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Sem grupos" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Principais Etiquetas" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nome da etiqueta" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Número de conjuntos de dados" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Usuários que Mais Criaram Conjuntos de Dados" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Usuário" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Estatísticas" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Conjuntos de Dados Mais Editados" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Texto" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Website" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +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 "ex.: http://exemplo.com (se estiver em branco usará a url do recurso)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Seu browser não suporta iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Função de autorização não encontrada: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrador" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Membro" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "É necessário ser administrador do sistema para gerenciar" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Título do Site" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Estilo" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Lema do site" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logomarca do site" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Sobre" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Texto na página Sobre" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Texto Introdutório" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Texto na Home Page" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS customizado" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS customizável foi inserido no header da página" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Homepage" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Não foi possível expurgar o pacote %s pois a revisão associada %s inclui " +"pacotes não excluídos %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema ao expurgar a revisão %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Expurgação completa" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Ação não implementada." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Acesso negado" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Não encontrado" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Requisição incorreta" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nome de ação desconhecido: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Erro JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Erro nos dados da requisição: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupo não encontrado" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organização não encontrada" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorreto" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizações" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupos" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiquetas" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatos" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenças" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Usuário %r não autorizado a editar %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Não autorizado a realizar atualização em lote" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Não autorizado a criar um grupo" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Erro de Integridade" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Usuário %r não autorizado a editar as autorizações %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Não autorizado a excluir o grupo %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "A organização foi excluída" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "O grupo foi excluído" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi excluído(a)." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Usuário %r não autorizado a editar membros de %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Não autorizado a adicionar membro ao grupo %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Não autorizado a excluir membros do grupo %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Membro foi excluído do grupo" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selecione duas revisões antes de fazer a comparação." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Histórico de Revisões de Grupos do CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Alterações recentes no Grupo CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mensagem de log: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Você está seguindo {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Você não está mais seguindo {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Não autorizado a visualizar os seguidores %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Este site está fora do ar no momento. Base de dados não está inicializada." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Por favor atualize o seu perfil e adicione o seu endereço" +" de e-mail. " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s usa o seu endereço de e-mail se você precisar redefinir a sua senha." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Consulta de pesquisa inválida: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametro \"{parameter_name}\" não é do tipo inteiro" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Conjunto de dados não encontrado" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato inválido de revisão: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Visualizações de conjuntos de dados do tipo \"{package_type}\" não são " +"suportadas ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Não autorizado a ler o pacote %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Histórico de Revisões de Conjuntos de Dados do CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Alterações recentes a Conjuntos de Dados do CKAN: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Não autorizado a criar um pacote" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Não autorizado a editar esse recurso" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Não autorizado a atualizar o conjunto de dados" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "O conjunto de dados {id} não pôde ser encontrado." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Você deve adicionar pelo menos um recurso" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Não autorizado a criar recurso" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Não autorizado a criar um recurso para este pacote" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Não é possível adicionar pacote para índice de pesquisa." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Não é possível atualizar índice de pesquisa." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "O conjunto de dados foi excluído." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Não autorizado a excluir o pacote %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "O recurso foi excluído." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Não autorizado a excluir o recurso %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Visão de recurso não encontrada" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Dados de recursos não encontrado" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Nenhum arquivo está disponível para baixar." + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Não autorizado a ler o conjunto de dados %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Não autorizado a ler o recurso: %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Não autorizado a editar o recurso" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Visualização não encontrada" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tipo de Visualização não encontrado" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Dados para visão do recurso estão defeituosos" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Visão do recurso não fornecida" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Não foi definida uma pré-visualização." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Usuário não encontrado" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Você não possui autorização para se registar como um usuário." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Não autorizado a criar um usuário" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Você não possui autorização para deletar o usuário com id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nenhum usuário especificado" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Não autorizado a editar o usuário %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Perfil atualizado" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Não autorizado a criar o usuário %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Texto da imagem incorreto. Por favor, tente novamente." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"O usuário \"%s\" foi registrado, porém você ainda está identificado como " +"\"%s\" do login anterior" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Você não possui autorização para editar um usuário." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "A senha digitada está incorreta" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Senha Antiga" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Senha incorreta" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Entrada falhou. Nome de usuário ou senha incorretos." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Você não possui autorização para solicitar redefinição de senha." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "Email obrigatório" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Erro ao enviar o e-mail. Tente novamente mais tarde ou entre em contato com " +"o administrador para ajuda." + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Não autorizado a redefinir senha." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Chave de redefinição inválida. Por favor, tente novamente." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Sua senha foi redefinida." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Sua senha deve conter 4 ou mais caracteres." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "As senhas que você forneceu são diferentes." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Você deve informar uma senha" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Item de seguimento não encontrado" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} não foi encontrado" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Tudo" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Ver" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} nova atividade em {site_title}" +msgstr[1] "{n} novas atividades em {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Agora há pouco" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Desconhecido" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Recurso sem nome" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Criado um novo conjunto de dados." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Editados os recursos." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Editadas as configurações." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visualização" +msgstr[1] "{number} visualizações" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} visualização recente" +msgstr[1] "{number} visualizações recentes" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nenhum endereço de destinatário de e-mail disponível!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organização" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Faltando valor" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "O campo de entrada %(name)s não era esperado." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Por favor entre com um valor inteiro" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Deve ser um valor de string Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Recurso(s) do pacote inválido(s)" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "O vocabulário de etiquetas \"%s\" não existe" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Conjunto de dados" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Não foi possível interpretar como JSON válido" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "É necessário informar uma organização" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "A organização não existe" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Você não pode adicionar um conjunto de dados a essa organização" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Inteiro inválido" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Precisa ser um número natural" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Precisa ser um inteiro positivo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Formatação de data incorreta" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Links não são permitidos em log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Id de conjunto de dados já existe" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Esse nome ou ID de grupo não existe." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipo de atividade" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Nomes devem ser strings" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Esse nome não pode ser usado" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Precisa ter pelo menos %s caracteres" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Nome tem que ter um máximo de %i caracteres" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Precisa conter apenas caracteres alfanuméricos (ascii) e os seguintes " +"símbolos: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Essa URL já está em uso." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "O comprimento do nome \"%s\" é menor que o mínimo %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "O comprimento do nome \"%s\" é maior que o máximo %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versão tem que ter um máximo de %i caracteres" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Chave duplicada \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Nome do grupo já existe na base de dados" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Comprimento da etiqueta \"%s\" é menor que o mínimo %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "O comprimento da etiqueta \"%s\" é maior que o máximo %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "A etiqueta \"%s\" deve conter caracteres alfanuméricos ou símbolos: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "A etiqueta \"%s\" não pode ter caixa alta" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Nomes de usuário devem ser strings" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Esse nome de login não está disponível." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Este nome de login não pode ser modificado" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Por favor forneça as duas senhas" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Senhas devem ser strings" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Sua senha deve possuir 8 caracteres ou mais" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "As senhas que você digitou não são iguais" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Editar não é permitido, já que a descrição parece spam. Por favor, evite " +"links na sua descrição." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "O nome deve conter pelo menos %s caracteres" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Esse nome de vocabulário já está sendo utilizado." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Não é possível alterar o valor da chave de %s para %s. Essa chave é somente " +"para leitura." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Vocabulário de etiquetas não encontrado." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "A etiqueta %s não pertence ao vocabulário %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nenhum nome de etiqueta" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "A etiqueta %s já pertence ao vocabulário %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Por favor forneça uma URL válida" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Esse papel não existe" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Conjuntos de dados sem uma organização não podem ser privados." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Não é uma lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Não é uma string" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Esse pai criaria um ciclo na hierarquia" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" é obrigatório quando \"filter_values\" estiver preenchido" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" é obrigatório quando \"filter_fields\" está preenchido" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Há um campo de esquema com o mesmo nome" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "E-mail {email} não está em um formato válido" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Faltando valor" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Tentando criar uma organização como um grupo" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Você deve informar um id ou nome de pacote (parâmetro \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Você deve informar uma avaliação (parâmetro \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Avaliação deve ser um valor inteiro." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Avaliação deve ser entre %i e %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Houve um erro ao enviar o e-mail de convite, o usuário não foi criado: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Você precisa estar autenticado para seguir usuários" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Você não pode seguir você mesmo" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Você já está seguindo {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Você precisa estar autenticado para seguir um conjunto de dados." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "O usuário {username} não existe." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Você precisa estar autenticado para seguir um grupo." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "Organização não pode ser excluída enquanto possuir conjuntos de dados" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id não está nos dados" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Não foi possível encontrar o vocabulário \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Não foi possível encontrar a etiqueta \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Você precisa estar autenticado para deixar de seguir algo" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Você não está seguindo {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Recurso não foi encontrado." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Não especifique se estiver usando o parâmetro \"query\"." + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Precisa ser par(es) :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Campo \"{field}\" não é reconhecido em resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pacote não foi encontrado." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus não foi encontrado." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organização não foi encontrada." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Usuário %s não autorizado a criar pacotes" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Usuário %s não autorizado a editar esses grupos" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"O usuário %s não está autorizado a adicionar conjuntos de dados a essa " +"organização" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Nenhum id de conjunto de dados foi fornecido, não é possível verificar " +"autorização." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nenhum pacote encontrado para este recurso, não foi possível verificar a " +"autenticação." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Usuário(a) %s não está autorizado(a) a criar recursos no conjunto de dados " +"%s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Usuário %s não autorizado a editar esses pacotes" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Usuário %s não autorizado a criar grupos" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Usuário %s não está autorizado a criar organizações" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "O usuário {user} não está autorizado a criar usuários pela API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Não está autorizado a criar usuários" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupo não foi encontrado." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Usuário %s não está autorizado a adicionar membros" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Usuário %s não autorizado a editar o grupo %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Usuário %s não está autorizado a excluir o recurso %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Visão de recurso não encontrada, não é possível verificar a autenticação." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Usuário %s não autorizado a excluir o relacionamento %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Usuário %s não está autorizado a excluir grupos" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Usuário %s não autorizado a excluir o grupo %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Usuário %s não está autorizado a excluir organizações" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Usuário %s não está autorizado a excluir a organização %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Usuário %s não está autorizado a excluir " + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Não autorizado" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Usuário %s não autorizado a ler estes pacotes" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Usuário %s não autorizado a ler o pacote %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Usuário %s não está autorizado a ler o recurso %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Usuário(a) %s não está autorizado(a) a ler o grupo %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Você precisa estar autenticado para acessar o seu painel de controle. " + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Usuário %s não autorizado a editar o pacote %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Usuário %s não está autorizado a editar recurso %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Usuário %s não autorizado a alterar o estado do pacote %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Usuário %s não está autorizado a editar a organização %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Usuário %s não autorizado a alterar o estado do grupo %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Usuário %s não autorizado a editar as permissões do grupo %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Precisa estar autenticado para editar usuário" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Usuário %s não autorizado a editar o usuário %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Usuário(a) {0} não autorizado(a) a atualizar o(a) usuário(a) {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Usuário %s não autorizado a alterar o estado de revisão" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Usuário %s não está autorizado a atualizar a tabela " + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"O usuário %s não está autorizado a atualizar a tabela term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "título" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licença não especificada" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Licença e Dedicação ao Domínio Público do Open Data Commons (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Licença Aberta para Bases de Dados (ODbL) do Open Data Commons" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Licença de Atribuição do Open Data Commons" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Atribuição" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Atribuição e Compartilhamento pela mesma Licença" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "Licença GNU para Documentação Livre" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Outra (Aberta)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Outra (Domínio Público)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Outra (Atribuição)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "Open Government Licence do Reino Unido (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Não-Comercial (Qualquer)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Outra (Não-Comercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Outra (Não Aberta)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "é uma dependência de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "tem derivação %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "relaciona-se com %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "é relacionado com %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "é filho de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "é pai de %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "tem irmão %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Não existe API de dados para carregar para este recurso" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Falhou em carregar informações sobre a API de dados" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Comece a digitar ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Nenhum resultado encontrado" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "A entrada é curta demais, deve possuir pelo menos um caractere" +msgstr[1] "" +"A entrada é curta demais, deve possuir pelo menos %(num)d caracteres" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Há modificações não salvas neste formulário" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Favor confirmar a ação" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Você tem certeza de que deseja executar essa ação?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirme" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancelar" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Deixar de seguir" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Seguir" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Link" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Link para uma URL na internet (você também pode ligar a uma API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Enviar" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Remover" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Enviar um arquivo do seu computador" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Arquivo" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Reordenar recursos" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Salvar ordem" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Salvando..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Carrega um arquivo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ocorreu um erro" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Não foi possível enviar o arquivo" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Não foi possível autenticar o envio" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Recurso enviado" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Não foi possível obter os dados do arquivo carregado" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Você está enviando um arquivo. Tem certeza de que quer navegar para outra " +"página e parar esse envio?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Adicionar Filtro" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Selecione um campo" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editar" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mostrar mais" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Ocultar" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Erro %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Sobre {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API do CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Associação CKAN" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Impulsionado por CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Configurações de administração do sistema" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Visualizar Perfil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Painel de Controle (%(num)d novo item)" +msgstr[1] "Painel de Controle (%(num)d novos itens)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Painel de Controle" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Sair" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Entrar" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrar" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Conjuntos de dados" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Buscar conjunto de dados" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Pesquisar" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Pular para o conteúdo" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Carregar menos" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Carregar mais" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Nenhuma atividade nesse fluxo de atividades" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administração" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administradores" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configuração" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Lixo" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logo do site" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Você tem certeza de que deseja reinicializar a configuração?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reinicializar" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Atualizar Configuração" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opções de configuração do CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Título do sítio: Este é o título dessa instância do " +"CKAN Ele aparece em vários lugares em todo o CKAN.

" +"

Estilo: Escolha a partir de uma lista de variações " +"simples do esquema principal de cores para conseguir um tema personalizado " +"funcionando muito rapidamente.

Logomarca do sítio: " +"Esta é a logomarca que aparece no cabeçalho de todos os modelos dessa " +"instância do CKAN.

Sobre: Esse texto aparecerá na página sobre dessa instância do CKAN.

" +"

Texto introdutório: Esse texto aparecerá na página inicial dessa instância do CKAN como uma " +"mensagem de boas vindas aos visitantes.

CSS " +"Personalizado: Esse é o bloco de CSS que aparece na tag " +"<head> de cada página. Se você desejar personalizar os " +"modelos mais completamente, recomendamos ler a documentação.

Página " +"inicial: Isso é para escolher uma disposição pré-definida para os " +"módulos que aparecem na sua página inicial.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmar reinicialização" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrar o CKAN" + +#: 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 "" +"

Como um(a) usuário(a) administrador(a) do sistema você tem total " +"controle sobre esta instância do CKAN. Proceda com cuidado!

Para " +"aconselhamento sobre o uso das funcionalidades de administrador do sistema, " +"vejao guia do administrador " +"do CKAN.

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirmar apagar" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Expurgar" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "A pré-visualização deste recurso não está disponível no momento." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Clique aqui para saber mais ..." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Baixar recurso" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Não há pré-visualização disponível." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Mais detalhes ..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Não há tratador definido para o tipo de dados: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Padrão" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrada padrão" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Médio" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Entrada de Largura Média" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Completo" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Entrada de Largura Total" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Grande" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Entrada Grande" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prefixar" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Entrada Prefixada" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Campo Personalizado (vazio)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Campo customizado" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de texto" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selecionar" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Fluxo de Atividades" + +#: 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 "Administradores" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Adicionar Um Grupo" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulário Grupo" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Você tem certeza de que deseja apagar este 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 "Você tem certeza de que deseja apagar o 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:15 +#: 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 "Gerenciar" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +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 "Membros" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Adicionar Grupo" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Buscar grupos..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Atualmente não há grupos neste sítio" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Que tal criar um?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Voltar a todos os membros" + +#: 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 "Editar membro" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Adicionar membro" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Usuário Existente" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Se você quer adicionar um usuário existente, busque pelo nome de usuário " +"dele abaixo." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ou" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Novo Usuário" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Se você quer convidar um novo usuário, inclua o endereço de email dele." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Papel" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Você tem certeza de que deseja apagar este usuário?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Excluir" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "O que são papeis?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administrador: Pode editar informações do grupo, bem " +"como gerenciar os membros da organização.

Membro: " +"Pode adicionar ou remover conjuntos de dados dos grupos

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Criar um Grupo" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Atualizar Grupo" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Criar Grupo" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Pesquisar conjuntos de dados..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de dados no grupo: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nome" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Meu Grupo" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Um pouco de informações sobre o meu grupo..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Você tem certeza de que deseja apagar este Grupo?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Salvar Grupo" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Visualizar {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remover conjunto de dados deste grupo" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "O que são grupos?" + +#: 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 "" +"Você pode usar Grupos do CKAN para criar e gerenciar coleções de conjuntos " +"de dados. Isso pode ser feito para catalogar conjuntos de dados de um " +"projeto ou time particular, ou em um tema particular, ou como uma forma " +"simples de ajudar as pessoas a encontrar e buscar seus próprios conjuntos de" +" dados." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "excluído" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "Leia mais" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bem vindo" + +#: 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 é a maior plataforma para portal de dados em software livre do " +"mundo.

CKAN é uma solução completa e pronta para usar que torna os " +"dados acessíveis e utilizáveis – ao prover ferramentas para simplificar a " +"publicação, o compartilhamento, o encontro e a utilização dos dados " +"(incluindo o armazenamento de dados e o provimento de robustas APIs de " +"dados). CKAN está direcionado a publicadores de dados (governos nacionais e " +"regionais, companhias e organizações) que querem tornar seus dados abertos e" +" disponíveis.

CKAN é usado por governos e grupos de usuários em todo " +"o mundo e impulsiona vários portais oficiais e da comunidade, incluindo " +"portais governamentais locais, nacionais e internacionais, tais como o data.gov.uk do Reino Unido, o publicdata.eu da União Europeia, o dados.gov.br do Brasil, o portal do " +"governo da Holanda, assim como sítios de cidades e municípios nos EUA, Reino" +" Unido, Argentina, Finlândia e em outros lugares.

CKAN: http://ckan.org/
Tour do CKAN: http://ckan.org/tour/
Visão geral " +"das funcionalidades: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bem-vindo ao 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 "" +"Este é um belo parágrafo introdutório sobre o CKAN ou sobre o sítio em " +"geral. Nós não temos uma cópia para colocar aqui, mas em breve teremos" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Esta é uma seção de destaque" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Ex.: meio ambiente" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Pesquisar dados" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas populares" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estatísticas" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjuntos de dados" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de dados" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizações" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Este campo é obrigatório" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Você pode usar formatação Markdown aqui" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Chave" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Customizar" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "O formulário contém entradas inválidas:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Campo obrigatório" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://exemplo.com.br/minha-imagem.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL da imagem" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Apagar Envio" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulário da Organização" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar conjuntos de dados" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrado para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Desculpe, nenhum conjunto de dados foi encontrado para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Tornar público" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Tornar privado" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Rascunho" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privada" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Essa organização não possui conjuntos de dados associados" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Você tem certeza de que deseja excluir a organização - {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 "Editar organização" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Adicionar uma Organização" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Pesquisar organizações..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Atualmente não há organizações neste sítio" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome de usuário" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Endereço de e-mail" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Atualizar Membro" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administrador: Pode adicionar/editar e excluir " +"conjuntos de dados, assim como gerenciar membros da organização.

" +"

Editor: Pode adicionar e editar conjuntos de dados, mas " +"não gerenciar membros da organização.

Membro: Pode " +"ver os conjuntos de dados privados da organização, mas não adicionar novos " +"conjuntos de dados.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} membro" +msgstr[1] "{count} membros" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Criar uma Organização" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Atualizar organização" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Criar Organização" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Conjuntos de dados na organização: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "O que são Organizações?" + +#: 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 "" +"

Organizações funcionam como órgãos de publicação para conjuntos de dados" +" (por exemplo, o Ministério da Saúde). Isso significa que conjuntos de dados" +" podem ser publicados por e pertencer a um órgão em vez de um usuário " +"individual.

Dentro de organizações, os administradores podem atribuir" +" papeis e autorizar seus membros, dando a usuários individuais o direito de " +"publicar conjuntos de dados daquela organização específica (ex.: Instituto " +"Brasileiro de Geografia e Estatística).

" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +"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 "" +"Organizações do CKAN são usadas para criar, gerenciar e publicar coleções de" +" conjuntos de dados. Usuários podem possuir diferentes papéis em uma " +"organização, dependendo do seu level de autorização para criar, editar e " +"publicar." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Minha Organização" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Um pouco de informações sobre a minha organização..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Tem certeza que deseja excluir esta organização? Nota*: A exclusão não pode " +"ser executada enquanto conjuntos de dados, públicos ou privados, pertencerem" +" a esta Organização." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Salvar Organização" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Visualizar {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Criar um conjunto de dados »" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "O que são conjuntos de dados?" + +#: ckan/templates/package/base_form_page.html:25 +msgid "" +"A CKAN Dataset is a collection of data resources (such as files), together " +"with a description and other information, at a fixed URL. Datasets are what " +"users see when searching for data." +msgstr "" +"Um conjunto de dados do CKAN é uma coleção de recursos de dados (como " +"arquivos), unidos com uma descrição e outras informações, em uma URL fixa. " +"Conjuntos de dados são o que usuários visualizam quando estão buscando " +"dados." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Alterações" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Você tem certeza de que deseja excluir o conjunto de dados - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Você tem certeza de que deseja excluir o recurso - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Ver conjunto de dados" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Editar metadados" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Editar visão" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Pré-visualização" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Atualiza" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associar este grupo a este conjunto de dados" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Adicionar ao grupo" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Não há grupos associados a este conjunto de dados" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Atualizar conjunto de dados" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Adicionar dados ao conjunto de dados" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Adicionar novo recurso" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Adicionar recurso" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Novo 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 "Adicionar visão" + +#: 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 "" +" As visões do Data Explorer podem ser lentas e instáveis se a extensão " +"DataStore não estiver habilitada. Para mais informações, por favor veja a documentação do Data " +"Explorer. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Adicionar" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos os recursos" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Visualizar recurso" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Editar recurso" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Visões" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Ponto de Acesso à API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Ir para recurso" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Baixar" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fonte: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Não há visões criadas para este recurso ainda." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Não está vendo as visões que esperava?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" +"Seguem alguns possíveis motivos para que você não veja as visões esperadas:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Nenhuma visão que seja adequada para este recurso foi criada" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Os administradores do site podem não ter habilitado os plugins de visões " +"relevantes" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Se uma visão exigir o DataStore, o plugin do DataStore pode não estar " +"habilitado, os dados podem ainda não ter sido carregados no DataStore, ou o " +"DataStore pode ainda não ter terminado de processar os dados" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Informações Adicionais" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Dados atualizados pela última vez" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "Desconhecido" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadados atualizados pela última vez" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Criado" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formato" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licença" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nova visão" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "O recurso não tem visões" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Adicionar novo recurso" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Esse conjunto de dados não possui dados, por que não adicionar alguns?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Documentação da API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "dum completo em {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 "" +" Você também pode ter acesso a esses registros usando a %(api_link)s (veja " +"%(api_doc_link)s) ou descarregar um %(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 "" +" Você também pode ter acesso a esses registros usando a %(api_link)s (veja " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Todas as visões" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver visão" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver pré-visualização" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informações Adicionais" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Fonte" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Mantenedor" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versão" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Estado" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última Atualização" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"Antes que você possa criar um conjunto de dados, você precisa criar uma " +"organização." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Criar uma nova organização" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" +"Não há organizações para as quais você possa atribuir este conjunto de " +"dados." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Peça a um administrador do sistema para criar uma organização antes que você" +" possa continuar." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ex.: Um título descritivo" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "Ex.: meu-conjunto-de-dados" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "ex.: Algumas anotações úteis sobre os dados" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "ex.: economia, saúde mental, governo" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +" Definições de licenças e informações adicionais podem ser encontradas em opendefinition.org " + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organização" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Sem organização" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibilidade" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Pública" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Ativo" + +#: 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 "" +"A licença de dados que você escolher acima aplica-se somente ao " +"conteúdo de quaisquer recursos de arquivos que você adicionar a este " +"conjunto de dados. Ao enviar este formulário, você concorda em lançar os " +"valores de metadados que você incluir sob a licença Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Você tem certeza de que deseja apagar este conjunto de dados?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Próximo: Adicionar Dados" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "José da Silva" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-mail do 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 "ze@exemplo.com.br" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-mail do Mantenedor" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atualizar Recurso" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dados" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://exemplo.com.br/dados-externos.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ex.: Preços do Ouro em Janeiro de 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Algumas notas sobre os dados" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ex.: CSV, XML ou JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Isto será estimado automaticamente. Deixe em branco se quiser" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ex.: 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Tamanho do arquivo" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ex.: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ex.: application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Você tem certeza de que deseja excluir esse recurso?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Anterior" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Salvar & adicionar outro" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Finalizar" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "O que é um recurso?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Um recurso pode ser um arquivo ou um link para um arquivo que contenha dados" +" úteis" + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explorar" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Mais informações" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Tela cheia" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Embutir" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Esta visão de recurso não está disponível no momento." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Incorporar visão de recurso" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Você pode copiar e colar o código para embutir em um CMS ou software de blog" +" que suporte HTML puro" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Largura" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Altura" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Código" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Pré-visualização do Recurso" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Dados e recursos" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Este conjunto de dados não tem dados" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Criar um conjunto de dados »" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Adicionar dados" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "ex.: Minha Visão" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "ex.: Informações sobre a minha visão" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remover Filtro" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "O que é uma visão?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Uma visão é uma representação dos dados contidos num recurso" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Adicionar Conjunto de Dados" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "status do Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL de retorno Trackback" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mostrar mais {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar somente {facet_type} popular" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Não há {facet_type} que correspondam a essa busca" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Início" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Nenhuma Licença Fornecida" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" +"Este conjunto de dados satisfaz a Definição de Aberto - Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Não há descrição para essa organização" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Este conjunto de dados não tem descrição" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Por favor tente uma nova pesquisa.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "" +"

Houve um erro ao pesquisar. Por " +"favor tente novamente.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} conjunto de dados encontrado para \"{query}\"" +msgstr[1] "{number} conjuntos de dados encontrados para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Não foram encontrados conjuntos de dados para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} conjunto de dados encontrado" +msgstr[1] "{number} conjuntos de dados encontrados" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Não foram encontrados conjuntos de dados" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{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 "Não foram encontrados grupos para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} grupo encontrado" +msgstr[1] "{number} grupos encontrados" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Não foram encontrados grupos" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organização encontrada parar \"{query}\"" +msgstr[1] "{number} organizações encontradas para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Não foram encontradas organizações para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organização encontrada" +msgstr[1] "{number} organizações encontradas" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Não foram encontradas organizações" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Assinar" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "E-mail" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} atualizou o grupo {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} atualizou a organização {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} atualizou o conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} atualizou o recurso {resource} do conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} atualizou seu perfil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} excluiu o grupo {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} excluiu a organização {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} excluiu o conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} excluiu o recurso {resource} do conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} começou a seguir {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} começou a seguir {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} começou a seguir {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} criou o grupo {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} criou a organização {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} criou o conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} registrou-se" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} excluiu a etiqueta {tag} do conjunto de dados {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Buscar Etiquetas" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Feed de notícias" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Meus Conjuntos de Dados" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Minhas Organizações" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Meus grupos" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Atividade de itens que estou seguindo" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Você não criou nenhum conjunto de dados." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Criar um agora?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Você não é membro de nenhum grupo." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Você não é membro de nenhuma organização." + +#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 +#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 +#: ckan/templates/user/snippets/user_search.html:2 +msgid "Users" +msgstr "Usuários" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informações da Conta" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Seu perfil permite que outros usuários do CKAN saibam quem você é o que você" +" faz." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Mudar detalhes" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nome completo" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ex.: José da Silva" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ex.: jose@exemplo.com.br" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Um pouco de informações sobre você" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Assine o recebimento de notificações por e-mail" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Mudar a senha" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Senha do Administrador do Sistema" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Senha" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirme a senha" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Tem certeza que quer apagar este Usuário ?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Você tem certeza de que deseja gerar uma nova chave para a API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Gerar Nova Chave para API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Atualizar Perfil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Todos os usuários" + +#: 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 "Acessar" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Precisa de uma conta?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Então inscreva-se agora, leva apenas um minuto." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Criar uma Conta" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Esqueceu sua senha ?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Sem problema, use nosso formulário de recuperação de senha para redefiní-la." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Esqueceu sua senha?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Desconectado" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Você saiu. " + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Você já está autenticado como {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Sair" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Lembre me" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Você já está autenticado" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Você precisa sair antes de poder entrar com uma nova conta" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Sair agora" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registro" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrar uma nova Conta" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Por que Cadastrar-se ?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crie conjuntos de dados, grupos e outras coisas interessantes" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nome de usuário" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nome Completo" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Registar Conta" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Redefinir sua senha" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Redefinir Senha" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" +"Você também pode alterar o nome de usuário. Ele não poderá ser modificado " +"mais tarde." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Atualizar Senha" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Como isso funciona?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Simplesmente insira uma nova senha e nós vamos atualizar sua conta" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Usuário não criou nenhum conjunto de dados" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Você não descreveu quem você é." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Este usuário não tem bio." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Isso significa que você só pode ver isso" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Membro desde" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Chave da API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Redefinir sua senha" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "Email ou usuário" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Entre seu nome de usuário para que um e-mail seja enviado com um link para " +"restaurar sua senha." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Atividade de:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de busca..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Você não está seguindo nada" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Sem seguidores" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Buscar Usuários" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "A sua senha deve possuir 8 caracteres ou mais." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Redirecionar a um site externo não é permitido." diff --git a/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..86f8ccd46df --- /dev/null +++ b/ckan/i18n/pt_PT/LC_MESSAGES/ckan.po @@ -0,0 +1,5169 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Portuguese (Portugal) (https://www.transifex.com/okfn/teams/11162/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Recurso não encontrado" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Não está autorizado a ver esta página" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Completo " + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Pendente" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Submeter" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Erro" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ainda não foi enviado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Carregar pata o DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Erro de envio:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Erro:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Estado" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Última Atualização" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nunca" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Registo de envios" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalhes" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Terminar sessão" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "O recurso DataStore não foi encontrado" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Recurso \"{0}\" não foi encontrado." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Utilizador {0} não está autorizado a atualizar o recurso {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Dados API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"O acesso ao recurso dados através de um API na internet é um apoio de " +"consulta poderoso" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Pontos de acesso" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "É possivel aceder aos dados API seguindo as ações API no CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Criar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Atualizar / Inserir" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Query" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Query (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Pesquisar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Query exemplo (os 5 primeiros resultados)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Query exemplo (resultados que contenham 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Query exemplo (via instrução SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Exemplo: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Um pedido AJAX (JSONP) à API dos Dados usando jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Exemplo: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Guardar" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Campo {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descrição" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Dicionário de Dados" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Coluna" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tipo" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "A carregar ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Dados API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabela " + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Mostrar Colunas" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Ocultar/Mostrar Colunas" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Conjuntos de dados por página" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testar Conflitos " + +#: ckan/templates/group/read.html:13 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 "Relevância" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome Ascendente" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nome Descendente" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Última Modificação" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Campo personalizado Ascendente" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Campo personalizado Descendente" + +#: ckan/templates/group/read.html:17 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 "Popular" + +#: 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 "Personalizar texto" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "personalizar texto" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Código do país" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "personalizar o texto do recurso" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Isto é uma expressão não traduzida" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Este grupo não tem nenhuma descrição" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Conjunto de dados" +msgstr[1] "{num} Conjuntos de dados" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Conjuntos de dados" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"A ferramenta de pré-visualização dos dados CKAN é munida de poderosas " +"funcionalidades." + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Seguidores" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Recursos" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imagem" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Imagem URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"p.ex. http://example.com/image.jpg (se estiver em branco use o URL do " +"recurso)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Explorador de dados" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Gráfico" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "erro a carregar a vista" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Não foi possível carregar a vista" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Grelha" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtros" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Deslocamento da linha" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +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 "Número de linhas" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "p.ex.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Gráfico tipo" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupo (Axis 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Séries (Eixo 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Campo Tipo" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Campo Latitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Campo Longitude" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Campo GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zoom automático às entidades" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Grupo de marcadores " + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Os conjuntos de dados mais votados" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Média das Classificações" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Número de classificações" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Sem classificação " + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Os maiores grupos" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupo" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Número de conjuntos de dados" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Não existem Grupos " + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "As principais Etiquetas " + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Nome da Etiqueta" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Número de conjuntos de dados" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Utilizador" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menu Estatística " + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Os conjuntos de dados mais editados" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Texto" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Página de internet" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL da página de internet" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "p.ex. http://example.com (se estiver em branco use o URL do recurso)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "O seu navegador não suporta iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Não foi encontrada a função 'Autorização': %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administração" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Membro" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Precisa de ser o administrador do sistema para administrar" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Título da Página" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Estilo" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Subtítulo da Página" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logótipo da página" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Sobre" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Texto da página Sobre" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Texto Introdutório" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Texto na página principal" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Personalizar CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Personalizar CSS inserido no cabeçalho da página" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Página Principal" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Não é possível purgar o pacote %s como revisão %s associada inclui os " +"pacotes %s não apagados" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problema ao purgar a revisão %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Purgar completo" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Ação não implementada." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Acesso negado" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Não encontrado" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Pedido errado" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Nome da ação não conhecido: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Erro JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Pedido de dados errado: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupo não encontrado" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organização não encontrada" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tipo de grupo incorreto" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizações" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupos" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiquetas" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatos" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenças" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Utilizador %r não está autorizado a editar %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Não está autorizado a realizar atualizações. " + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Não está autorizado a criar um grupo" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Erro de Integridade" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Utilizador %r não está autorizado a editar %s autorizações" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Não está autorizado a eliminar grupo %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "A organização foi apagada." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "O grupo foi apagado." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s foi eliminado." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Não está autorizado a adicionar o grupo %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Não está autorizado a apagar os membros do grupo %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "O membro do grupo foi apagado." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selecionar duas revisões antes de efetuar a comparação." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Histórico Revisão Grupo CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Alterações recentes ao grupo CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mensagem de registo: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Começou a seguir {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Já não está a seguir {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Não está autorizado a visualizar os seguidores %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Esta página está, de momento, sem acesso à Internet. A base de dados não " +"será iniciada." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Por favor atualize o seu perfil e adicione o seu " +"endereço de email." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s use o seu endereço de email se precisar de redefinir a sua palavra-passe." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "O parâmetro \"{parameter_name}\" não é um inteiro" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Conjunto de dados não encontrado" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Formato de revisão inválido: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Não é autorizado a ler o pacote %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Histórico de Revisões de Conjuntos de dados CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Alterações recentes ao conjunto de dados CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Não está autorizado a criar um pacote" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Não está autorizado a editar este recurso" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Não está autorizado a atualizar conjuntos de dados" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "O conjunto de dados {id} não foi possível de ser encontrado." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Deve adicionar pelo menos um recurso de dados" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Não está autorizado a criar um recurso" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Não está autorizado a criar um recursos para este pacote" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Não é possível adicionar pacote ao índice de pesquisa. " + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Não é possível atualizar o índice de pesquisa." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "O conjunto de dados foi eliminado. " + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Não está autorizado a eliminar o pacote %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "O recurso foi apagado." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Não está autorizado a eliminar o recurso %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Vista do recurso não encontrada" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Dados do recurso não encontrados" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Nenhuma transferência disponível " + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Não está autorizado a ler o conjunto de dados %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Não está autorizado a ler o recurso %s " + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Não está autorizado a editar o recurso" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Vista não encontrada" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tipo de Vista Não encontrada " + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Dados da vista do recurso errados" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Vista de recurso não fornecida" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Não foi definida nenhuma pré-visualização." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Utilizador não encontrado" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Não está autorizado a registar-se como um utilizador." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Não está autorizado a criar um utilizador." + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Não está autorizado a apagar o utilizador com a id. \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nenhum utilizador especificado" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Não está autorizado a editar o utilizador %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Perfil atualizado" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Não está autorizado a criar o utilizador %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "'Captcha' errada. Por favor, tente de novo." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"O utilizador \"%s\" já está registado, porém ainda está com a sessão " +"iniciada como \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Não está autorizado a editar um utilizador." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Palavra-passe inserida está incorreta" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Palavra-passe antiga " + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Palavra-passe incorreta" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Início de sessão falhou. Nome de utilizador ou palavra-passe errada." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Não está autorizado a solicitar a redefinição da palavra-passe." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Não está autorizado para redefinir a palavra-passe." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Chave de redefinição inválida. Por favor, tente novamente. " + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "A sua palavra-passe foi redefinida." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "A sua palavra-passe deve ter 4 ou mais carateres." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "As palavras-chave inseridas são diferentes." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Deve indicar uma palavra-chave" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Seguir item não encontrado" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} não encontrado" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Tudo" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Visualização" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Agora" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Desconhecido" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Recurso sem nome" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Foi criado um novo conjunto de dados." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Recursos editados." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Configurações editadas." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visualização" +msgstr[1] "{number} visualizações" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} visualização recente" +msgstr[1] "{number} visualizações recentes" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nenhum endereço de email disponível. " + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organização" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupo" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Valor em falta" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Campo de entrada %(name)s não esperado. " + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Por favor, insira um número de valor inteiro." + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Tem de ser um valor de expressão Unicode" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Pacote de recurso(s) inválido" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Vocabulário de etiquetas \"%s\" não existe" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Conjunto de Dados" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Não foi possível analisar como um JSON válido" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Tem de ser fornecida uma organização" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "A organização não existe" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Não pode adicionar um conjunto de dados nesta organização" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Inteiro inválido" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Deve ser um número natural" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Deverá ser um inteiro positivo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Formato de data incorreto" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Não são permitidos links na mensagem de registo. " + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "O ID do conjunto de dados já existe" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Recurso" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "O nome do grupo ou a Id. não existe." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tipo de Atividade" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Os nomes devem ser em formato texto" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Esse nome não pode ser utilizado" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Devem ter pelo menos %s caracteres" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "O nome deve ter no máximo %i caracteres" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Deverão ser, unicamente, carateres alfanuméricos minúsculos (ascii) e os " +"símbolos: - _ ." + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "O URL já está a ser utilizado." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "O tamanho do nome \"%s\" é menor que o mínimo permitido %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "A versão deve ter no máximo %i caracteres" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Chave duplicada \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "O nome do grupo já existe na base de dados" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "O tamanho da etiqueta \"%s\" é menor que o mínimo permitido %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "O tamanho da etiqueta \"%s\" é maior que o máximo permitido %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "A etiqueta \"%s\" deve ser de carateres alfanuméricos ou símbolos: - _ ." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "A etiqueta \"%s\" não deve ser em maiúsculas" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "O nome do utilizador deve ser em formato texto" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Esse nome de utilizador não está disponível." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Por favor, insira ambas as palavras-chave" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Palavras-passe devem ser em formato texto" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "As palavras-passe inseridas são diferentes." + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Edite, não é permitido parece como spam. Por favor, evite links na sua " +"descrição." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "O nome deve conter pelo menos %s caracteres" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Esse nome de vocabulário já está em uso." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Não é possivel alterar o numero da chave de %s para %s. Esta é somente de " +"leitura." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Vocabulário de etiquetas não encontrado." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "A etiqueta %s não pertence ao vocabulário %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nenhum nome de etiqueta" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "A etiqueta %s já pertence ao vocabulário %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Por favor, forneça um URL válido." + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "A função não existe." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Conjuntos de dados sem organização não podem ser privados. " + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Não é uma lista." + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Não é um formato texto" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Este superior iria criar um ciclo na hierarquia" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" e \"filter_values\" devem ter o mesmo comprimento." + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" é solicitado quando \"filter_values\" é preenchido" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" é solicitado quando \"filter_fields\" é preenchido" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Há um campo com o mesmo nome. " + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Valor em falta" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "A tentar criar uma organização como um grupo" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Deverá fornecer um pacote ID ou um nome (parâmetro \"pacote\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Deverá fornecer uma classificação (parâmetro \"classificação\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "A classificação deverá ser um valor inteiro. " + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "A classificação deverá ser entre %i e %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Precisa de iniciar a sessão para poder seguir utilizadores " + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Não pode seguir-se a si próprio" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Já está a seguir {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" +"É necessário ter a sessão iniciada para poder seguir um conjunto de dados. " + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Utilizador {username} não existe." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "É necessário ter a sessão iniciada para poder seguir um grupo." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "Os dados não têm ID" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Não foi possível encontrar o vocabulário \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Não foi possivel encontrar a etiqueta \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Precisa de ter a sessão iniciada para poder deixar de seguir alguém. " + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Não está a seguir {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "O recurso não foi encontrado." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Não especificou o parâmetro \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Deverá ser : par(es)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "O campo \"{field}\" não é reconhecido no recurso de pesquisa." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "O pacote não foi encontrado." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus não encontrado." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "A organização não foi encontrada." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Utilizador %s não está autorizado a criar pacotes" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Utilizador %s não está autorizado a editar estes grupos" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Utilizador %s não está autorizado a adicionar conjuntos de dados nesta " +"organização" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Não existe ID fornecido ao conjunto de dados, não foi possivel verificar " +"autor. " + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Não foi encontrado nenhum pacote para este recurso, não foi possivel " +"verificar autor." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Utilizador %s não está autorizado a criar recursos no conjunto de dados %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Utilizador %s não está autorizado a editar estes pacotes" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Utilizador %s não está autorizado a criar grupos" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Utilizador %s não está autorizado a criar organizações" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Utilizador {user} não está autorizado a criar novos perfis de utilizadores " +"via API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Não está autorizado a criar utilizadores" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "O grupo não foi encontrado." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Utilizador %s não está autorizado a adicionar membros" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Utilizador %s não está autorizado a editar o grupo %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Utilizador %s não está autorizado a eliminar o recurso %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Visualização de recurso não encontrado, não é possível verificar autor." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Utilizador %s não está autorizado a eliminar a conexão %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Utilizador %s não está autorizado a eliminar grupos" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Utilizador %s não está autorizado a eliminar o grupo %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Utilizador %s não está autorizado a eliminar organizações" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Utilizador %s não está autorizado a eliminar a organização %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Utilizador %s não está autorizado a eliminar task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Não autorizado" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Utilizador %s não está autorizado a ler estes pacotes" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Utilizador %s não está autorizado a ler o pacote %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Utilizador %s não está autorizado a ler o recurso %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Utilizador %s não está autorizado a ler o grupo %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" +"Necessita de iniciar a sessão para poder ter acesso ao painel de controlo. " + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Utilizador %s não está autorizado a editar o pacote %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Utilizador %s não está autorizado a editar o recurso %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Utilizador %s não está autorizado a alterar o estado do pacote %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Utilizador %s não está autorizado a editar a organização %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Utilizador %s não está autorizado a alterar o estado do grupo %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Utilizador %s não está autorizado a editar as permissões do grupo %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "É necessário iniciar a sessão para poder editar o seu perfil" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Utilizador %s não está autorizado a editar o perfil %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Utilizador {0} não está autorizado a atualizar o perfil {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Utilizador %s não está autorizado a alterar o estado de revisão" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Utilizador %s não está autorizado a atualizar a tabela task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Utilizador %s não está autorizado a atualizar a tabela term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licença não especificada" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons - Domínio Público" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons - Atribuição e Compartilha Igual" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons - Atribuição" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons - Domínio Público" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons - Atribuição" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons - Atribuição e Compartilha Igual" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Outro (Abrir)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Outro (Domínio Público)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Outro (Atribuição)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons - Atribuição e Não Comercial" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Outro (Não Comercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Outro (Não Abrir)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depende de %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "é uma dependência de %s " + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "deriva de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "tem derivação de %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "liga a %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "está ligado desde %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "é um inferior de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "é um superior de %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "tem ao mesmo nível %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Não há dados API para carregar neste recurso" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Falha no carregamento da informação dos dados API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Comece a escrever ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Não foram encontradas correspondências" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Existem modificações que não estão a ser guardadas" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Por favor, Confirme a Ação" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Tem a certeza que deseja realizar esta ação?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirmar" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Cancelar" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Não Seguir" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Seguir" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Hiperligação" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Link para um URL na internet ( pode também ligar-se com API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Enviar" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Remover" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Envie um ficheiro no seu computador" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Ficheiro" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Guardar ordenação" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "A guardar ..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Enviar um ficheiro" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ocorreu Um Erro" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Não é possivel enviar o ficheiro" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Não é possivel autenticar o envio" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Recurso enviado" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Não foi possivel obter dados a partir do ficheiro enviado" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Está a enviar um ficheiro. Tem a certeza de que deseja sair e parar o envio?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Adicionar Filtro" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Selecione um campo" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editar" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mostrar mais" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Ocultar" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Erro %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Sobre {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +" Fornecido por CKAN " + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Configurações do Administrador de sistema" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Ver perfil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Painel de Controlo (%(num)d novo item)" +msgstr[1] "Painel de Controlo (%(num)d novos itens)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Painel de controlo" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Terminar Sessão" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Iniciar Sessão" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registar" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Conjuntos de Dados" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Pesquisar Conjuntos de Dados" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Procurar" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Ir para o conteúdo" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Carregar menos" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Carregar mais" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Não há atividades dentro deste fluxo de atividades" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administração" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administração do Sistema" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configurar" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Lixo" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Tem a certeza que deseja redefinir a configuração?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Redefinir" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Atualizar Configurações" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opções da configuração CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Título do portal: Este é o título desta instância " +"CKAN. Aparece em vários pontos do CKAN.

Estilo: " +"Escolha de uma lista de esquemas de cores com variações simples do esquema " +"principal para conseguir uma personalização rápida do tema do portal.

" +"

Logótipo do portal: Este é o logótipo que aparece no " +"cabeçalho de todos os modelos de instância CKAN.

Sobre: " +" Texto descritivo sobre a página será " +"exibido nesta instância CKAN .

Texto Introdutório: " +" Este texto será exibido nesta instância CKAN home page como uma nota de boas vindas aos " +"visitantes.

CSS personalizado: O bloco CSS " +"aparece na <head> etiqueta de cada página. Se deseja " +"personalizar os estilos e os conteúdos da página de uma forma mais completa," +" recomendamos a leitura da " +"seguinte documentação .

Página Inicial: " +"Permite escolher o layout pré-definido dos módulos que surgem na página " +"inicial.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Confirmar redefinição" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrador CKAN" + +#: 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 "" +"

Como Administrador do Sistema tem total controlo sobre o CKAN. Proceda " +"com CUIDADO!

Para obter mais informações para um uso correto, " +"consulte no CKAN o guia " +"Administrador do Sistema

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirmar Eliminação" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Purgar" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Este recurso não pode ser pré-visualizado no momento." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Clique aqui para mais informações." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Transferir recurso" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Nenhuma pré-visualização disponível." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Mais detalhes ..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Nenhum tratamento definido para o tipo de dados: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Entrada padrão " + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Médio" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Largura média da entrada" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Total" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Largura total da entrada" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Grande" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Entrada grande" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Prefixo" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prefixo de entrada" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Personalizar Campo (vazio)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Personalizar Campo" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Área de texto" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selecionar" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Histórico de atividades" + +#: 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 "Administradores" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Adicionar um Grupo" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulário de Grupo" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Tem a certeza que deseja apagar o grupo - {name}?" + +#: 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 "Tem a certeza que deseja apagar o 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:15 +#: 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 "Gerir" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +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 "Membros" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Adicionar Grupo" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Procurar grupos ..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Atualmente, este site não tem grupos" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "E que tal criar um?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Voltar para todos os membros" + +#: 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 "Editar Membro" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Adicionar Membro" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Utilizador Existente" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Se deseja adicionar um utilizador já existente, procure o nome do mesmo " +"abaixo. " + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ou" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Novo Utilizador" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Se pretende convidar um novo membro, escreva o respetivo contacto de email. " + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Função" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Tem a certeza que deseja apagar este membro?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Apagar" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "O que são as funções?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administrador: Pode editar as informações do grupo, " +"bem como gerir os membros da organização.

Membro: " +" Pode adicionar e remover conjuntos de dados provenientes de grupos

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Criar um Grupo" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Atualizar Grupo" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Criar Grupo" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Pesquisar conjuntos de dados..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Conjuntos de dados no grupo: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Nome" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "O Meu Grupo" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Alguma informação sobre o meu grupo ..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Tem a certeza que deseja apagar este Grupo?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Guardar Grupo" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Ver {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Remover o conjunto de dados deste grupo" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "O que são os Grupos?" + +#: 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 "" +"Pode usar Grupos CKAN para criar e gerir coleções de conjuntos de dados. " +"Poderão servir para catalogar conjuntos de dados de um projeto ou equipa em " +"particular, ou sobre um tema especifico, ou como uma forma simples de ajudar" +" os utilizadores a encontrar e pesquisar os seus próprios conjuntos de dados" +" publicados." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Apagado" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "ler mais" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bem-vindo" + +#: 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 "" +"

A plataforma CKAN é líder mundial em portais de dados abertos.

" +"CKAN é um software revolucionário, uma solução que torna dados acessíveis e " +"utilizáveis - fornecendo ferramentas para agilizar a publicação, partilha, " +"encontrar e utilizar dados (incluindo o armazenamento de dados e prestação " +"de dados APIs). CKAN é dirigido a editores de dados (governos nacionais e " +"regionais, empresas e organizações) que querem fazer dos seus dados, dados " +"abertos e disponíveis.

CKAN é usado pelos governos e grupos de " +"utilizadores em todo o mundo em portais de dados da comunidade, incluindo " +"portais para o governo local, nacional e internacional, tais como o Reino " +"Unido data.gov.uk e União Europeia publicdata.eu, os brasileiros dados.gov.br, os portais governamentais " +"holandeses e dos países baixos, bem como das cidades e locais municipais dos" +" EUA, Reino Unido, Argentina, Finlândia, entre outros.

CKAN: http://ckan.org/
CKAN Tour: http://ckan.org/tour/
Vista geral " +"das características: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bem-vindo ao 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 "" +"Este é um parágrafo introdutório agradável sobre o CKAN ou sobre o site em " +"geral. Ainda não temos qualquer cópia para ir aqui, mas em breve vamos ter" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Esta é uma secção em destaque" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "P.ex. ambiente" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Pesquisar dados" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiquetas Populares" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} estatísticas" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "conjunto de dados" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "conjuntos de dados" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizações" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupos" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "O campo é necessário" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Aqui, pode usar o formato Markdown " + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valor" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Personalizar" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "O formulário contém entradas inválidas:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Campo Obrigatório " + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL da Imagem" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Limpar Enviar" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulário de organização" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editar conjuntos de dados" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "encontrados para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "" +"Pedimos desculpa, não foram encontrados conjuntos de dados para \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Tornar público" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Tornar privado" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Rascunho" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privado" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Esta organização não tem nenhum conjunto de dados associado" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Tem a certeza que deseja apagar a organização - {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 "Editar Organização" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Adicionar Organização" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Procurar organizações ..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Atualmente, não existem organizações para este site" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nome de utilizador" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Endereço de email" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Atualizar Membro" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administrador: Pode adicionar, editar e excluir " +"conjuntos de dados, bem como gerir os membros da organização

" +" Editor: Pode adicionar e editar conjuntos de dados, mas não pode " +"girir os membros da organização.

Membro: Pode " +"visualizar os conjuntos de dados privados da organização, mas não pode " +"adicionar novos conjuntos de dados.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Criar uma Organização" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Atualizar Organização" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Criar Organização" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Conjuntos de dados na organização: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "O que são as Organizações?" + +#: 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 "" +"

As organizações agem como departamentos de publicação para conjuntos de dados (p.ex., o Departamento de Saúde).\n" +"Isto significa que os conjuntos de dados podem ser publicados e pertencem a um departamento em vez de a um utilizador individual.

Dentro das organizações, os administradores podem atribuir funções e autorizar os seus membros, dando aos utilizadores individuais, o direito de publicar conjuntos de dados de determinada organização (p.ex., Instituto Nacional de Estatística).

" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +"CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending " +"on their level of authorisation to create, edit and publish." +msgstr "" +"Organizações CKAN são usadas para criar, gerir e publicar coleções de " +"conjuntos de dados. Os utilizadores podem ter diferentes funções dentro de " +"uma organização, dependendo do nível de autorização cedido para criar, " +"editar e publicar." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "A Minha Organização" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Alguma informação sobre a minha organização ..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Guardar Organização" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Ver {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Criar Conjunto de Dados" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "O que são conjuntos de dados?" + +#: ckan/templates/package/base_form_page.html:25 +msgid "" +"A CKAN Dataset is a collection of data resources (such as files), together " +"with a description and other information, at a fixed URL. Datasets are what " +"users see when searching for data." +msgstr "" +"Um conjunto de dados CKAN é uma coleção de recursos de dados (como p.ex. " +"ficheiros), juntamente com uma descrição, entre outras informações, num URL " +"fixo. Os conjuntos de dados são os que os utilizadores vêem quando pesquisam" +" por dados." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Alterar" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Tem a certeza que pretende eliminar o conjunto de dados - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Tem certeza de que deseja excluir recurso - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Ver conjunto de dados" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Editar metadados" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Editar vista" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Prévisualização" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Atualizar" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Associar este grupo com este conjunto de dados " + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Adicionar ao grupo" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Não existem grupos associados a este conjunto de dados" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Atualizar conjunto de dados" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Adicionar dados ao conjunto de dados " + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Adicionar Novo Recurso" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Adicionar recurso" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Novo 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 "Adicionar vista" + +#: 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 "" +"Vistas do tipo Data Explorer podem ser lentas e falíveis, a não ser que a " +"extensão DataStore seja ativada. Para mais informação, consulte por favor a " +"documentação do Data Explorer . " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Adicionar" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Todos os recursos" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Ver recurso" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Editar recurso" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vistas" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Ponto de acesso à API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Ir para o recurso" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Transferir" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Fonte: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Ainda não há vistas criadas para este recurso." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Não está a ver as vistas que estava à espera?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Algumas razões pelas quais não está a ver as vistas esperadas: " + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Não foi criada nenhuma vista que seja adequada a este recurso" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Os administradores do site podem não ter ativado os plugins de visualização " +"relevantes" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Se a visualização requer o DataStore, o plugin DataStore pode não estar " +"ativo, ou os dados podem não ter sidos carregados no DataStore, ou o " +"DataStore pode ainda não ter acabado o processamento." + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Informação adicional " + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Campo" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "desconhecido" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Data de criação" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formato" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licença" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nova vista" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Este recurso não tem vistas" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Adicionar novo recurso" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Este conjunto de dados não tem dados, não gostaria de acrescentar alguns?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Documentos API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "descarregamento integral {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 "" +"Pode aceder a este registo usando %(api_link)s (ver %(api_doc_link)s) ou " +"transferir em %(dump_link)s. " + +#: ckan/templates/package/search.html:60 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" +"Pode aceder a este registo usando %(api_link)s (ver %(api_doc_link)s)." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Todas as vistas" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Ver vista" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Ver pré-visualização" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informação Adicional" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Fonte" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Gestor" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versão" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Estado" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Última Atualização " + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Título" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "p.ex. Um título descritivo. " + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "p.ex. O meu conjunto de dados" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "p.ex. Algumas notas úteis sobre os dados" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "p.ex. economia, saúde mental, governo" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"As definições das licenças e mais informações adicionais sobre as mesmas, " +"podem ser encontradas em " +"creativecommons.org e em opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organização" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Nenhuma organização" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Visibilidade" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Público" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Ativo" + +#: 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 "" +"A licença escolhida acima só se aplica aos conteúdos de todos os " +"ficheiros de recursos que se adicionem a este conjunto de dados. Ao submeter" +" este formulário, está a concordar em ceder livremente os
metadados
" +"que inseriu, sob a forma Open Database " +"License ." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Tem a certeza que deseja eliminar este conjunto de dados?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Próximo: Adicionar Dados" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joel Martins" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email do 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email do Gestor" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Atualizar Recurso" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Dados" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "pe. Preço do Ouro em janeiro de 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Algumas notas úteis sobre os dados" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "p.ex. CSV, XML ou JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Será inferido automaticamente. Deixe em branco se desejar" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "p.ex. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Tamanho do Ficheiro" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "p.ex. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "Tipo MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ex. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Tem certeza de que deseja excluir este recurso?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Anterior" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Guardar & Adicionar" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Terminar" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "O que é um recurso?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Um recurso pode ser qualquer ficheiro ou a ligação a um ficheiro que " +"contenham dados úteis." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Explorar" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Mais informação" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Ecrã cheio" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Incorporar " + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Esta vista de recurso não está disponível neste momento." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Incorporar vista de recurso" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Pode copiar e colar o código para embutir num CMS ou blogue que suporte a " +"escrita de HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Largura" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Altura " + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Código" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Pré-visualização de Recursos" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Dados e Recursos" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Este conjunto de dados não tem dados " + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Criar conjunto de dados" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Adicionar dados" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "p.ex. A Minha Vista" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "p.ex. Informação sobre a minha vista" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Remover Filtro " + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "O que é uma vista?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Uma vista é uma representação dos dados realizada sobre um recurso" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Adicionar Conjunto de Dados" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Estado do Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Mostrar mais {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Mostrar apenas os/as {facet_type} mais populares" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Não existe nenhum {facet_type} que corresponda a esta pesquisa" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Página inicial" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Idioma" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ir" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Sem licença" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Este conjunto de dados satisfaz os requisitos de Dados Abertos." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Não existe nenhuma descrição para esta organização" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Este conjunto de dados não tem nenhuma descrição" + +#: ckan/templates/snippets/search_form.html:33 +#: 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:74 +msgid "Filter Results" +msgstr "Filtrar Resultados" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Por favor, tente um novo termo de pesquisa.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} conjunto de dados encontrado para \"{query}\"" +msgstr[1] "{number} conjuntos de dados encontrados para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Não foram encontrados conjuntos de dados para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} conjunto de dados encontrado" +msgstr[1] "{number} conjuntos de dados encontrados" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Não foram encontrados conjuntos de dados" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{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 "Nenhum grupo encontrado para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} grupo encontrado " +msgstr[1] "{number} grupos encontrados" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nenhum grupo encontrado" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organização encontrada para \"{query}\"" +msgstr[1] "{number} organizações encontradas para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Não foram encontradas organizações para \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organização encontrada" +msgstr[1] "{number} organizações encontradas" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Nenhuma organização encontrada" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Subscrever" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "O {actor} adicionou a etiqueta {tag} ao conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "O {actor} atualizou o grupo {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "O {actor} atualizou a organização {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "O {actor} atualizou o conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" +"O {actor} atualizou o recurso {resource} no conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "O {actor} atualizou o seu perfil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "O {actor} eliminou o grupo {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "O {actor} eliminou a organização {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "O {actor} eliminou o conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" +"O {actor} eliminou o recurso {resource} do conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "O {actor} começou a seguir {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "O {actor} começou a seguir {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "O {actor} começou a seguir {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "O {actor} criou o grupo {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "O {actor} criou a organização {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "O {actor} criou o conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" +"O {actor} adicionou o recurso {resource} ao conjunto de dados {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} subscreveu " + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "O {actor} removeu a etiqueta {tag} do conjunto de dados {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Pesquisar por Etiquetas" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Notícias" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Os meus Conjuntos de Dados" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "As minhas Organizações" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Os meus Grupos" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Atividade dos itens que está a seguir" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Ainda não criou nenhum conjunto de dados." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Criar um agora?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Não é membro de nenhum grupo." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Não é membro de nenhuma organização." + +#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 +#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 +#: ckan/templates/user/snippets/user_search.html:2 +msgid "Users" +msgstr "Utilizadores " + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informação sobre a conta" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"O seu perfil permite que outros utilizadores CKAN saibam quem é e o que faz." +" " + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Alterar detalhes" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Nome completo" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "p.ex. Joel Martins" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "p.ex. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Alguma informação sobre si" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Subscrever notificações por email" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Alterar palavra-passe" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Palavra-passe" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirmar Palavra-passe" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Tem a certeza que pretende eliminar este utilizador?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Tem a certeza que pretende voltar a gerar a chave API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Gerar nova Chave API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Atualizar Perfil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Todos os utilizadores " + +#: ckan/templates/user/login.html:3 ckan/templates/user/login.html:6 +#: ckan/templates/user/login.html:12 +#: ckan/templates/user/snippets/login_form.html:28 +msgid "Login" +msgstr "Iniciar sessão" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Precisa de uma Conta?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Faça a sua inscrição correta e completa, leva apenas um minuto." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Criar uma Conta" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Esqueceu a sua palavra-passe?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Não há problema, para redefinir a palavra-passe, use o formulário de " +"recuperação de palavras-passe." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Esqueceu a sua palavra-passe?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Sessão terminada" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Acabou de terminar a sessão." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Já iniciou a sessão como {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Terminar sessão" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Memorizar" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Já está com a sessão iniciada" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Precisa de terminar a sua sessão para poder iniciar uma sessão com uma conta" +" diferente." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Terminar sessão agora" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Inscrição" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registe-se para criar uma Conta" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Porquê inscrever-se?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Crie conjuntos de dados, grupos, entre outras \"coisas\" interessantes" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "nome de utilizador" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Nome completo" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Criar Conta" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Redefina a sua Palavra-passe" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Palavra-passe redefinida" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Atualizar Palavra-passe" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Como é que isto funciona?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Basta escrever uma nova palavra-passe que nós atualizaremos a sua conta" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "O utilizador não criou nenhum conjunto de dados." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Não forneceu uma biografia." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Este utilizador não tem bibliografia." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Abrir ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Isso significa que somente pode ver isto" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Membro desde" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Chave API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Redefina a sua palavra-passe" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Atividade de:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista de pesquisa ... " + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Não está a seguir nada" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Sem seguidores" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Pesquisar por utilizadores" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Não é permitido redirecionar para página externa. " diff --git a/ckan/i18n/ro/LC_MESSAGES/ckan.po b/ckan/i18n/ro/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..c0af3ac01b8 --- /dev/null +++ b/ckan/i18n/ro/LC_MESSAGES/ckan.po @@ -0,0 +1,5082 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Romanian (https://www.transifex.com/okfn/teams/11162/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resursa nu a fost găsită" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nu ești autorizat să vezi pagina aceasta" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Complet" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "În aşteptare" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Eroare" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Eroare:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ultima actualizare" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Niciodată" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Încărcați Jurnalul" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detalii" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resursa \"{0}\" nu a fost găsită." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "Date API CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Acces la datele de resurse prin intermediul unui API cu suport de interogare" +" puternic" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "obiective" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Crează" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Actualizează / Introduce" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Exemplu: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Exemplu: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Salvează" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Descriere" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Se încarcă..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Date API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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 "Relevanță" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Nume Crescător" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Nume Descrescător" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Ultima Modificare" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "" + +#: 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 "Prefixul Țării" + +#: 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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Aceast grup nu are descriere" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} set de date" +msgstr[1] "{num} seturi de date" +msgstr[2] "{num} de seturi de date" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Seturi de date" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Urmăritori" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resurse" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Imagine" + +#: 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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Cele mai apreciate" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grup" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Numărul seturilor de date" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Top Cuvinte Cheie" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Numărul seturilor de date" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Utilizator" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Meniu Statistică" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Cele mai editate seturi de date" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Browserul Dvs nu susține iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funcția de autorizare nu există: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redactor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Membru" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Este nevoie să fii administrator de sistem pentru a gestiona" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Titlul site-ului" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Linia Etichetei Site-ului" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logo-ul etichetei paginii" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Despre" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Despre pagina textului" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Text de introducere" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Textul de pe pagina de start" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS personalizat" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS personalizate introduse în antetul paginii" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Pagina principală" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Nu pot elimina pachetul %s deoarece revizuirea %s include pachete încă " +"existente %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Sunt probleme la eliminarea revizuirii %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Eliminare completă" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Acțiune neimplementată" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Acces interzis" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "De negăsit" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Cerere incorectă" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Numele acțiunii nu este cunoscut: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Eroare JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Datele cererii incorecte: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupul nu a fost găsit" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "TIpul grupului este greşit" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizații" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupuri" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Cuvinte cheie" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formate" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenţe" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Utilizatorul %r nu este autorizat să editeze %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nu sunteți autorizat să efectuați actualizarea în masă" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Neautorizat pentru a crea un grup" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Eroare de integritate" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Utilizatorul %r nu este autorizat să editeze autorizările %s " + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nu sunteți autorizat să ștergeți grupul %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizația a fost ștearsă." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Grupul a fost șters." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nu sunteți autorizat să adăugați membri la grupul %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nu sunteți autorizat să ștergeți membrii din grupul %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Membrul de grup a fost șters." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Selectează două revizii înainte de a face comparații." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Istoricul Reviziilor de Grup al CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Modificări recente ale Grupului CKAN: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mesaj din jurnalier: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Acum urmăriți {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Nu mai urmăriți {0}." + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nu sunteți autorizat să vizualizați urmăritorii %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Acest site este momentan off-line. Nu este inițializată baza de date." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Vă rog Actualizați profilul și indicați adresa de e-mail." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s va utiliza adresa Dvs. e-mail pentru a vă reseta parola." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametrul \"{parameter_name}\" nu este un număr întreg" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Baza de date nu a fost găsită" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format de revizuire nevalabil: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nu sunteți autorizat să citiți pachetul %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Istoricul revizuirilor seturilor de date CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Schimbări recente la setul de date CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nu sunteți autorizat pentru a crea un pachet" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nu sunteți autorizat să editați această resursă" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nu sunteți autorizat să actualizați setul de date" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Setul de date {id} nu a fost găsit" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Trebuie să adăugați cel puțin o resursă de date" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nu sunteți autorizat să creați o resursă" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Nu pot adăuga pachetul la indexarea pentru căutare" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Incapabil de a actualiza indexul de căutare" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Setul de date a fost șters." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nu sunteți autorizat să ștergeți pachetul %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resursa a fost ștearsă." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nu sunteți autorizat să ștergeți resursa %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resursa nu a fost găsită" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Nu este disponibil nici o descărcare" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Neautorizat pentru a citi setul de date %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Neautorizat pentru a citi resursa %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Previzualizarea nu a fost definită." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Utilizatorul nu a fost găsit" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Nu sunteți autorizat pentru a vă înregistra ca utilizator." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Nu sunteți autorizat pentru a crea un utilizator" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nu eşti autorizat să ştergi utilizatorul cu id-ul \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Utilizatorul nu a fost specificat" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Nu sunteți autorizat să editați utilizatorul %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil actualizat" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Nu sunteți autorizat pentru a crea utilizatorul %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha incorectă. Mai încercați." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Utilizatorul \"%s\" este acum înregistrat, dar dumneavoastră sunteţi " +"conectat ca \"%s\" de înainte" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Nu sunteți autorizat să editați utilizatorul." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Autentificarea a eșuat. Nume de utilizator sau parolă greșită." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nu sunteți autorizat șă solicitați resetarea parolei." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Nu sunteți autorizat să resetați parola." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Cheia de resetare nu este valabilă. Mai incercați." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Parola a fost resetată." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Parola trebuie să conțină cel puțin 4 caractere." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Parolele introduse nu coincid." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Trebuie să introduceți parola" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Articolul urmărit nu a fost găsit" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nu a fost găsit" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Totul" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} activitate nouă de la {site_title}" +msgstr[1] "{n} activităţi noi de la {site_title}" +msgstr[2] "{n} de activităţi noi de la {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Chiar acum" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Necunoscut" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Resursă fără denumire" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Set de date nou creat." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Resurse editate." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Setări editate." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} vizualizare" +msgstr[1] "{number} vizualizări" +msgstr[2] "{number} de vizualizări" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} vizualizare recentă" +msgstr[1] "{number} vizualizări recente" +msgstr[2] "{number} de vizualizări recente" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Adresele e-mail ale recipienților nu sunt valabile!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Lipsește valoarea" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Câmpul de intrare %(name)s nu a fost aşteptat" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Introduceți o valoare intreagă" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Pachetul de resurs(e) nevalabil" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extras" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Vocabularul de etichete \"%s\" nu există" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Set de date" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizația nu ezistă" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Nu puteți să adăugați un set de date la această organizație" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Unitate nevalabilă" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Data formatată incorect" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Nici un link nu este permis în mesajul de conectare" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resursă" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Acest grup sau ID nu există." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tip de activitate" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Acest nume nu poate fi utilizat" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Numele trebuie să conțină maximum %i caractere" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Acest URL este deja utilizat." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Lungimea numelui \"%s\" este mai mică decît minimul necesar %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Lungimea numelui \"%s\" este mai mare decît maximul necesar %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versiunea trebuie să conțină maximum %i caractere" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Cheie duplicat \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Această denumire de grup deja există în baza de date" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Lungimea etichetei \"%s\" este mai mică decît minimul necesar %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Lungimea etichetei \"%s\" este mai mare decît maximul necesar %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Eticheta \"%s\" trebuie să conţină caractere alfanumerice sau simboluri: -_." +" " + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Eticheta \"%s\" nu trebuie să fie majusculă" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Acest nume de utilizator nu este disponibil." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Indicați ambele parole" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Parolele introduse nu se potrivesc" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Editarea nu este permisă, fiind privită ca spam. Vă rugăm să evitați link-" +"uri în descriere." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Numele trebuie să conțină cel puțin %s caractere" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Acest vocabular de nume este deja în uz." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Nu se poate modifica valoarea cheie de la %s spre %s. Această cheie este " +"doar pentru citire" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Vocabularul de etichete nu a fost găsit" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Eticheta %s nu aparţine vocabularului %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nici un nume de etichetă" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Eticheta %s deja aparţine vocabularului %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Indicați un URL valabil" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rolul nu există." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Seturi de date fără organizaţii nu pot fi private" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Nu o listă" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Nu un șir" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Lipsa valorii" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Încercarea de a crea o organizație ca un grup" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" +"Trebuie să furnizaţi un id de pachet sau nume (parametrul ''package'')." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Trebuie să furnizaţi un rating ( parametrul ''rating'')." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Rating trebuie să fie o valoare întreagă" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Rating trebuie să fie între %i și %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Trebuie să fiți conectat pentru a urmări utilizatorii" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Nu puteți să vă urmăriți" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Deja urmăriți {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Trebuie să fiți conectat pentru a urmări un set de date." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Utilizatorul {username} nu există." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Trebuie să fiți conectat pentru a urmări un grup." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id-ul nu se regăseşte în date" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nu a putut fi găsit în vocabular \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nu a putut fi găsit cuvîntul cheie \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Trebuie să fiţi conectat pentru a anula urmărirea." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Nu urmăriți {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resursa nu a fost găsită." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nu specificaţi dacă utilizaţi parametrul de ''interogare''" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Trebuie să fie : pereche(i)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Cîmpul \"{field}\" nu este recunoscut în resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pachetul nu a fost găsit." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Starea sarcină nu a fost găsită." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizația nu a fost găsită." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Utilizatorul %s nu este autorizat să creeze pachete" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Utilizatorul %s nu este autorizat să editeze aceste grupuri" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Utilizatorul %s nu este autorizat să adauge set de date la această " +"organizație" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nici un pachet nu a fost găsit pentru această resursă, imposibil de " +"verificat autentificarea." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Utilizatorul %s nu este autorizat să editeze aceste pachete" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Utilizatorul %s nu este autorizat să creeze grupuri" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Utilizatorul %s nu este autorizat să creeze organizații" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupul nu a fost găsit." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Utilizatorul %s nu este autorizat să adauge membri" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Utilizatorul %s nu ste autorizat să editeze grupul %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Utilizatorul %s nu este autorizat să șteargă resursa %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Utilizatorul %s nu este autorizat să șteargă relația %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Utilizatorul %s nu este autorizat să șteargă grupuri" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Utilizatorul %s nu este autorizat să șteargă grupul %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Utilizatorul %s nu este autorizat să șteargă organizații" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Utilizatorul %s nu este autorizat să șteargă organizația %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Utilizatorul %s nu este autorizat să șteargă starea sarcinii" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Neautorizat" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Utilizatorul %s nu este autorizat să citească aceste pachete" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Utilizatorul %s nu este autorizat să citească pachetul %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Utilizatorul %s nu este autorizat să citească %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Trebuie să fiți conectat pentru a accesa panoul de bord" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Utilizatorul %s nu este autorizat să editeze pachetul %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Utilizatorul %s nu este autorizat să editeze resursa %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Utilizatorul %s nu este autorizat să schimbe statutul pachetului %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Utilizatorul %s nu este autorizat să editeze organizația %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Utilizatorul %s nu este autorizat să schimbe statutul grupului %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Utilizatorul %s nu este autorizat să editeze permisiunile grupului %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Trebuie să fiți autentificat pentru a edita utilizatorul" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Utilizatorul %s nu este autorizat să editeze utilizatorul %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Utilizatorul %s nu este autorizat să schimbe statutul revizuirii" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"Utilizatorul %s nu este autorizat să actualizeze tabelul de stare a " +"sarcinilor" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Utilizatorul %s nu este autorizat să actualizeze tabelul de traducere a " +"termenilor" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Altă (Deschisă)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Altă (Domeniu Public)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Altă (Atribuire)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Altă (Ne comercială)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Altă (Nu este Deschisă)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "depinde de %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "este dependent de %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "derivă din %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "are derivare %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "link-uri la %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "este legată de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "este un copil de %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "este un părinte de %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "are frate %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Nu există API pentru a încărca date în aceată resursă" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Nu a reușit să se încarce datele de informații API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Introduceți..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Nu a fost găsit" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Acest formular conține modificari care nu au fost salvate" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Confirmați Acțiunea" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Sunteți sigur că doriți să efectuați această acțiune?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Confirm" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Anulare" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Anulați urmărirea" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Urmăriți" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Încărcare" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Încărcați un fișier" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Eroare" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Incapabil să încarc fișierul" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Incapabil să autentific încărcarea" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resursă încărcată" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Incapabil să obțin date din fișierul încărcat" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Sunteți în proces de încărcare a fișierului. Sunteți sigur să doriți să " +"navigați mai departe și să opriți încărcarea fișierului?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Editează" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Mai mult" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Ascunde" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Eroare %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Despre {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "API CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Alimentat de CKAN " + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Setările Sysadmin-ului" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Vezi profilul" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Tablou de bord (%(num)d element nou)" +msgstr[1] "Tablou de bord (%(num)d elemente noi)" +msgstr[2] "Tablou de bord (%(num)d de elemente noi)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Tablou de bord" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Ieșire" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Autentificare" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Înregistrare" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Seturi de date" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Caută Seturi de Date" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Căutare" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "A incărca mai puţin" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "A incărca mai mult" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Nici o activitate nu se regăseşte în acest flux de activităţi" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrare" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Sysadmin-i" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Configurare" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Gunoi" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Sunteți sigur că doriți să resetați configurare?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Resetare" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN opțiuni configurare" + +#: ckan/templates/admin/config.html:52 +#, 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 "Confirmați Resetarea" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Confirmă Ștergerea" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Apasă aici pentru mai multă informație." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Descarcă resursa" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Previzualizarea nu este disponibilă." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Mai multe detalii..." + +#: 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/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Cîmp Personalizat" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "AreaText" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selectează" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Flux de activitate" + +#: 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 "Administratori" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Adaugă un Grup" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Adaugă o Formă" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Sunteți sigur că doriți să ștergeți grupul - {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 "Sunteți sigur că doriți să ștergeți membrul - {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:15 +#: 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 "Editează Grupul" + +#: 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 "Membrii" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Adăugați Grup" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Caută grupuri..." + +#: 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 "Creăm unul nou?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Înapoi la toți membrii" + +#: 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 "Editează Membru" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Adaugă Membru" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rolul" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Sunteți sigur că doriți să ștergeți acest membru?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Șterge" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Ce sunt roluri?" + +#: ckan/templates/group/member_new.html:93 +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 "Crează un Grup" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Actualizează Grup" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Crează Grup" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Caută seturi de date..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Seturi de date în grupul: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Denumire" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Grupul meu" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Scurtă informație despre grupul meu" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Sunteți sigur că doriți să ștergeți acest Grup?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Salvează Grup" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Vezi {name}" + +#: 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 "Ce sunt Grupuri?" + +#: 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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Sters" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "citește mai mult" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Bun Venit" + +#: 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 este principala platformă open-source pentru portalul de date " +"deschise CKAN este o soluție completă de software care face datele " +"accesibile și ușor de utilizat - prin furnizarea instrumentelor pentru a " +"simplifica publicarea, partajarea , găsirea și utilizarea de date (inclusiv " +"stocarea de date și furnizarea de API-uri robuste de date). CKAN se " +"adresează editorilor de date (guverne, companii și organizații naționale și " +"regionale), care doresc să facă datele lor deschise și disponibile. " +"CKAN este utilizat de către guverne și grupuri de utilizatori din întreaga " +"lume și fortifică o varietate de portaluri de date oficiale și comunitare, " +"inclusiv portaluri pentru guvernul local, național și internațional, cum ar " +"fi data.gov.uk și publicdata.eu , dados.gov.br , " +"portalurile Guvernului Olandei, precum și site-urile orașelor și " +"municipalităților din SUA, Marea Britanie, Argentina, Finlanda și în alte " +"parți CKAN:. http://ckan . org / " +"
CKAN Tur:
http://ckan.org/tour/
Prezentarea caracteristicilor :
http://ckan.org/features/ " + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Bun venit la 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 "" +"Acesta este un paragraf introductiv despre CKAN sau site-ul în general. Noi " +"încă nu avem o copie care ar merge aici, dar în curând o vom avea." + +#: 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:11 +msgid "dataset" +msgstr "set de date" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "seturi de date" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Valoare" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL-ul Imaginii" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Editează seturile de date" + +#: 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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Proiect" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Această organizație nu are seturi de date asociate" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Sunteți siguri că doriți să ștergeți organizația - {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 "Editează Organizația" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Adaugă Organizația" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Caută organizații..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Nume de utilizator" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} membru" +msgstr[1] "{count} membri" +msgstr[2] "{count} de membri" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Crează o Organizație" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Actualizează Organizația" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Crează Organizația" + +#: ckan/templates/organization/snippets/feeds.html:2 +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 "Ce sunt Organizații?" + +#: 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 "Organizația Mea" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Informație scurtă despre organizația mea" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Salvează Organizația" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Crează Set de Date" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Ce sunt seturile de date?" + +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Schimbări" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Sigur doriți să ștergeți setul de date - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Sigur doriți să ștergeți resursa - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Vezi setul de date" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Actualizare" + +#: 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:13 +msgid "Update Dataset" +msgstr "Actualizează set de date" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Adaugă date la setul de date" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Adaugă Resurse noi" + +#: 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:85 +msgid "Add" +msgstr "Adaugă" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Descarcă" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Informație adițională" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Cîmp" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Creat" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licență" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Documente API" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Informație Adițională" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +msgstr "Autor" + +#: 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 "Versiune" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titlu" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "ex. Un titlu descriptiv" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "eg. setul-meu-de-date" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "eg. Cîteva notițe utile despre date" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "eg. economie, guvern, sănătate publică" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizație" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Public" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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 "joe@example.com" + +#: 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 "Actualizează Resursa" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Citeva notițe utile despre date" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "eg. CSV, XML sau JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ex. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Mărimea Fișierului" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ex. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ex. aplicație/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Sunteți sigur că doriți să ștergeți această resursă?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Precedent" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Salvează și adaugă alatul" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Cod" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Date și Resurse" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Crează set de date" + +#: 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 "Adaugă date" + +#: 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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Adaugă Set de Date" + +#: 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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Home" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Limba" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Acest set de date nu are descriere" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filtrează Rezultatele" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} set de date găsit pentru \"{query}\"" +msgstr[1] "{number} seturi de date găsite pentru \"{query}\"" +msgstr[2] "{number} de seturi de date găsite pentru \"{query}\"" + +#: 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] "{number} set de date găsit" +msgstr[1] "{number} seturi de date găsite" +msgstr[2] "{number} de seturi de date găsite" + +#: 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] "{number} grup găsit pentru \"{query}\"" +msgstr[1] "{number} grupuri găsite pentru \"{query}\"" +msgstr[2] "{number} de grupuri găsite pentru \"{query}\"" + +#: 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] "{number} grup găsit" +msgstr[1] "{number} grupuri găsite" +msgstr[2] "{number} de grupuri găsite" + +#: 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] "{number} organizaţie găsită pentru \"{query}\"" +msgstr[1] "{number} organizaţii găsite pentru \"{query}\"" +msgstr[2] "{number} de organizaţii găsite pentru \"{query}\"" + +#: 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] "{number} organizaţie găsită" +msgstr[1] "{number} organizaţii găsite" +msgstr[2] "{number} de organizaţii găsite" + +#: 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 "Abonează-te" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} a adăugat cuvîntul cheie {tag} la setul de date {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} a actualizat grupul {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} a actualizat organizația {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} a actualizat setul de date {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} a actualizat resursa {resource} în setul de date {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} a actualizat porfilul" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} a șters grupul {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} a șters organizația {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} a șters setul de date {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} a șters resursa {resource} din setul de date {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} urmărește {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} urmărește {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} urmărește {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} a creat grupul {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} a creat organizația {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} a creat setul de date {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} a adăugat resursa {resource} la setul de date {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} s-a conectat" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} a șters cuvîntul cheie {tag} de la setul de date {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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 "Seturile mele de date" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Organizațiile mele" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Grupurile mele" + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 "Utilizatori" + +#: 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:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ex. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonează-te la e-mailurile de notificare" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Parola" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Confirmați parola" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Actualizează Profilul" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Toți Utilizatori" + +#: 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 "Aveți nevoie de Cont?" + +#: 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 "Crează un Cont" + +#: 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 "Ați uitat parola?" + +#: 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:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Ține-mă minte" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Înregistrare" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Înregistrare pentru Cont" + +#: 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 "Nume complet" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Crează Cont" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Resetează-ți Parola" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Resetarea Parolei" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Actualizează Parola" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Introduceți parola nouă și noi vă com actualiza contul" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Utilizatorul nu a creat nici un set de date" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Aceasta înseamnă că nu puteți accesa " + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Membru din" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Cheia API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Resetați parola" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Activitate din:" + +#: 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 "Nu urmăriți nimic" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Niciun urmăritor" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Caută Utilizatori" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/ru/LC_MESSAGES/ckan.po b/ckan/i18n/ru/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..f32f9403c68 --- /dev/null +++ b/ckan/i18n/ru/LC_MESSAGES/ckan.po @@ -0,0 +1,5134 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Sergey Motornyuk , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Sergey Motornyuk , 2020\n" +"Language-Team: Russian (https://www.transifex.com/okfn/teams/11162/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Аудио" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "Аудио URL" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"например, http://example.com/audio.mp3 (по-умолчанию, будет использован URL " +"ресурса)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Тег audio не поддерживается вашим браузером. Но вы по прежнему " +"можете скачать файл." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Файлы не найдены" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Недостаточно прав для просмотра этой страницы" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завершено" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr " В процессе обработки" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Отправка" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Ошибка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Загрузка не завершена" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Загрузить в Хранилище Данных" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Ошибка загрузки:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Ошибка:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Ошибка трассировки:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последнее обновление" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Никогда" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Загрузить Запись" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Детали" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Конец Записи" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Хранилище Данных" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Ресурс DataStore не найден" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Дата словарь сохранён. Любая перезапись будет действовать когда ресурс в " +"следующий раз будет загружен в хранилище данных" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Данные некорректны: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Источник \"{0}\" не был найден." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Пользователь {0} не имеет прав для обновления ресурса {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Доступ к данным ресурса через web API с поддержкой запросов" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Дополнительная информация может быть найдена в документации CKAN Data API и DataStore.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Endpoints" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Data API может использоваться через следующие действия в API действий CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Создать" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Обновить / Вставить" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Запрос" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Запрос (через SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Запрашиваем" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Пример запроса (первые 5 результатов)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Пример запроса (результаты содержащие \"jones\")" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Пример запроса (с SQL выражением)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Пример: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Простой ajax (JSONP) запрос к API данных используя jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Пример: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Сохранить" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Поле {номер}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Перезапись типа" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Описание" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Словарь данных" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колонка" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Тип" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Идет загрузка..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Данные API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "таблица" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Отзывчивое отображение" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Показать Колонки" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "Тестовый конфиг" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "" + +#: ckan/templates/group/read.html:17 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 "Популярное" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Это непереведённая строка" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Эта группа не имеет описания" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Пакет данных" +msgstr[1] "{num} Пакеты данных" +msgstr[2] "{num} Пакеты данных" +msgstr[3] "{num} Пакеты данных" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Пакеты данных" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"Инструмент предварительного просмотра данных CKAN имеет ряд мощных функций. " + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Подписчики" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурсы" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Минута" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Час" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "День" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Истекает через" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Единицы измерения" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Истекает" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Картинка" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL изображение" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Проводник данных" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "График" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "ка́рта" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Ошибка при загрузке просмотра" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Невозможно загрузить просмотр" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore не сумел обработать запрос" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy не сумел обработать запрос" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Сетка" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "например: 0" + +#: 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 "например: 100" + +#: 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 "Поле GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Некорректный URL." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Самые популярные пакеты данных" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Средняя оценка" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Количество оценок" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Нет оценок" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Самые большие группы" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Группа" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Количество пакетов" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Нет групп" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Самые популярные метки" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Имя тега" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Количество пакетов" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Пользователи, создавшие наибольшее количество наборов данных" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Пользователь" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Меню статистики" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Самые часто редактируемые пакеты данных" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Текст" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Видео" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Видео URL" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "сайт" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL страницы" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ваш браузер не поддерживает фреймы." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Функция авторизации не найдена: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Админ" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Редактор" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Участник" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Для этого действия необходимы права администратора." + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Заголовок сайта" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Стиль" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Линия тэгов сайта" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Логотип тэга сайта" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "О проекте" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Текст страницы о проекте" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Вводный Текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Текст на главной странице" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Произвольное CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Настраиваемый CSS код внесен в заголовок страницы" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Домашняя страница" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Невозможно удалить пакет %s так как вовремя проверки %s были найдены " +"неудаленные пакеты %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "При удалении редакции %s возникла проблема %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Очищение заверншено" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Действие не вступило в силу" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Отказано в доступе" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Не найдено" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Неверный запрос" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Неизвестное имя действия: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Ошибка JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Неверные данные запроса: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Группа не найдена" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Организация не найдена" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Неправильный тип группы" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Организации" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Группы" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Теги" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Форматы" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Лицензии" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Пользователь %r не имеет достаточно прав для редактирования %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Неавторизованы на массовое обновление" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Недостаточно прав для создания группы" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Ошибка целостности" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" +"Пользователь %r не имеет достаточно прав для редактирования прав " +"пользователя %s " + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Недостаточно прав чтобы удалить группу %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Организация была удалена." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Группа была удалена" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s было удалено" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Недостаточно прав для добавления участника в группу %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Недостаточно прав для удаления участников группы %s " + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Участник группы был удален." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Выберите две версии перед сравнением" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "История прежних версий группы" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Последние изменения в группе CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Запись в лог" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Теперь вы следуете за {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Вы более не следуете за {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Недостаточно прав для просмотра следующих %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Этот сайт сейчас находится в режиме оффлайн. База данных не " +"инициализирована." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Пожалуйста обновите свой профайл и добавьте свой " +"электронный адрес." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s использует Ваш email, если Вам необходимо сбросить свой пароль " + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Неверный запрос поиска: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметр \"{parameter_name}\" не является целым числом" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Пакет данных не найден" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Неверный формат проверки: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Просмотр набора данных типа \"{package_type}\" не поддерживается " +"({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Недостаточно прав для просмотра пакета %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "История редакций CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Последние изменения в пакете CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Недостаточно прав для создания пакета" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Недостаточно прав для редактирования данного ресурса" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Недостаточно прав для обновления массива данных" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Массив данных {id} не найден." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Вы должны добавить хотя бы один ресурс" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Недостаточно прав для создания ресурса" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Недостаточно прав дла создания ресурсов для этого пакета" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Невозможно добавить пакет в поисковый индекс." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Невозможно обновить поисковый индекс." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Массив был удалён." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Недостаточно прав для удаления пакета %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ресурс был удален." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Недостаточно прав для удаления ресурса %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Просмотр ресурса не найден" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Данные ресурса не найдены" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Недоступна выгрузка" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Недостаточно прав для чтения массива данных %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Недостаточно прав для просмотра файлов %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Недостаточно прав для редактирования ресурса" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Просмотр не найден" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Тип просмотра не найден" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Предпросмотр не определен." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Ползователь не найден" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Нет прав зарегистрировать пользователя." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Недостаточно прав для создания нового пользователя" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Недостаточно прав для удаления пользователя ID: \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Пользователь не указан" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Недостаточно прав для измениния пользователя %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Данные обновлены" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Недостаточно прав для создания нового пользователя %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Вы неправильно указали КАПЧУ, попробуйте снова." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Пользователь \"%s\" зарегистрирован, но вы все еще находитесь в сессии как " +"пользователь \"%s\" " + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Нет прав редактировать пользователя." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Неверный пароль" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Старый пароль" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "некорректный пароль" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Войти не удалось. Неправильный логин или пароль" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Нет прав на запрос о сбросе пароля." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Нет прав на сброс пароля." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Неправильный код восстановления. Попробуйте снова." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ваш пароль был восстановлен." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Пароль должен содержать минимум 4 символа" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Введенные пароли не совпадают" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Вы должны ввести пароль" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "сопровождающий элемент не был найден" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} не найдено" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Все" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Посмотреть" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Только что" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Неизвестный" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Безымянный ресурс" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Создать новый пакет данных." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Отредактированные ресурсы." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Отредактированные настройки." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} просмотр" +msgstr[1] "{number} просмотры" +msgstr[2] "{number} просмотры" +msgstr[3] "{number} просмотры" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} последние просмотр" +msgstr[1] "{number} последние просмотры" +msgstr[2] "{number} последние просмотры" +msgstr[3] "{number} последние просмотры" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Адрес получателя не доступен!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "организация" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "группа" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Отсутствующая величина" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Веденное поле %(name)s не было ожидаемо." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Пожалуйста, введите целое число" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Внешние ресурс(ы) данных недействительны" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Дополнения" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Тег словаря \"%s\" не существует" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Набор данных" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Организация не существует" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Вы не можете добавить пакет данных в эту организацию" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Неверное число" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Должно быть натуральным числом" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Должно быть положительным целым числом" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Формат даты указан неверно" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Гиперссылки в log_message запрещены." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Набор данных с таким идентификатором уже существует" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ресурсы" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Это имя группы или ID не существует." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Тип процесса" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Названия должны быть строками" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Это имя не может быть использовано" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Длина слова должна быть не менее %s символов" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Имя должно содержать максимум %i символов" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Этот URL уже используется" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Длина названия \"%s\" меньше чем минимальная %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Имя \"%s\" короче максимального значения %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Версия должна содержать максимум %i символов" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Создать дубль ключа \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Группа с таким названием уже существует" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Тег \"%s\" короче минимального значения %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Тег \"%s\" короче максимального значения %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Тег \"%s\" должен содержать числа, буквы или такие символы: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Тег \"%s\" должен содержать только строчные буквы" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Это имя пользователя уже используется" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Пожалуйста укажите оба пароля." + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Пароль должны быть строками" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Пароли не совпадают" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Редактирование запрещено, т.к. текст выглядит, как спам. Избегайте " +"гиперссылок в описании, пжл." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Имя должно состоять как минимум из %s букв." + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Это название словаря уже используется." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Невозможно изменить значение ключа %s на %s. Ключ доступен только для чтения" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Тег словаря не был найден" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Тег %s не относится к словарю %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Нет имени тега" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s уже добавлен в словарь %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Укажите действительный URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Роль не существует." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Массивы без организации не могут быть частными." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Не список" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Не строка" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Неверный формат Email {email}" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Отсутствует значение" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "Недостаточно прав для добавления коллабораторов" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Функционал коллаборации не активирован" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Попытка создать организацию как группу" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Введите идентификатор пакета или имя (параметр \"пакет\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Задайте рейтинг (параметр \"рейтинг\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Значение рейтинга должно быть целым числом." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Значение рейтинга должно быть в пределах %i и %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Ошибка при отправке email-приглашения. Пользователь не был создан: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Вы должны быть авторизованы, чтобы следить за пользователями " + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Вы не можете следить за пользователем" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Вы уже следуете за {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Вы должны быть авторизованы, чтобы следить за пакетом данных" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Пользователь {username} не существует." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Вы должны быть авторизованы, чтобы следить за группой " + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id нет в данных" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Нельзя найти словарь \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Нельзя найти тег \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Вы должны быть авторизованы, чтобы отписаться от чего-либо." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Вы не следите {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Источник не был найден." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не определяйте, если используете \"query\" параметр" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Должно быть : пар(ы)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Поле \"{field}\" не отображается в поисковике ресурсов." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Пакет не найден" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus не найден" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Организация не найдена." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Пользователь %s не имеет достаточно прав для создания пакета данных" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "" +"Пользователь %s не имеет достаточно прав для редактирования этих группы" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Пользователь %s не имеет прав на добавление массивов данных к этой " +"организации" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "ID пакета данных не предоставлен, невозможно проверить auth" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Для этого ресурса не найдено пакетов. Невозможно проверить подлинность." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Пользователь %s не имеет достаточно прав для добавления ресурсов к пакету " +"данных %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "" +"Пользователь %s не имеет достаточно прав для редактирования этих пакетов " +"данных" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Пользователь %s не имеет достаточно прав для создания группы" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Пользователь %s не имеет прав для создания организаций" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Пользователь {user} не имеет достаточно прав для создания пользователей " +"через API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Недостаточно прав для создания пользователей" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Группа не найдена" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Пользователь %s не имеет прав для добавления участников " + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Пользователь %s не имеет прав для редактирования группы %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Пользователь %s не имеет прав для удаления ресурса %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Просмотр ресурса не найден, невозможно проверить auth" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Пользователь %s не имеет прав для удаления связи %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Пользователь %s не имеет прав для удаления групп" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Пользователь %s не имеет прав для удаления группы %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Пользователь %s не имеет прав для удаления организаций" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Пользователь %s не имеет прав для удаления организации %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Пользователь %s не имеет прав для удаления task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Не авторизован" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Пользователь %s не имеет прав для просмотра этих пакетов" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Пользователь %s не имеет прав для просмотра пакета %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Пользователь %s не имеет прав для чтения ресурса %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Пользователь %s не имеет достаточно прав для просмотра группы %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Вы должны авторизоваться для доступа к панели управления" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Пользователь %s не имеет прав для редактирования пакета %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Пользователь %s не имеет прав для редактирования ресурса %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Пользователь %s не имеет прав для изменения статуса пакета %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Пользователь %s не имеет прав для редактирования организации %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Пользователь %s не имеет прав для изменения статуса группы %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" +"Пользователь %s не имеет прав для редактирования прав доступа для группы %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Необходимо авторизоваться чтобы редактировать пользователя" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" +"Пользователь %s не имеет достаточно прав для редактирования пользователя %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" +"Пользователь {0} не имеет достаточно прав для обновления профиля " +"пользователя {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"Пользователь %s не имеет достаточно прав для изменения статуса версии " +"пакета." + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Пользователь %s не имеет прав для обновления task_status table" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Пользователь %s не имеет прав для обновления term_translation table" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Лицензия не указана" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Другие (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Другие (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Другие (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Другие (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Другие (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "зависит от %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "в зависимости от %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "происходит от %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "производно от %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "ссылается на %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "связан ссылкой с %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "в подчиненной связи с %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "родительская категория для %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "связано на одном уровне %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Нет API данных для загрузки для данного ресурса" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Не удалось загрузить данные API " + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Начните вводить ..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Совпадений не найдено" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Есть несохраненные изменения в этой форме" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Пожалуйста, подтвердите действие" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Вы уверены, что хотите выполнить это действие?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Потверждение" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Отменить" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Не следовать" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Следить" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Ссылка" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Загрузка" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Пожалуйста, укажите файл для повторной загрузки " + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Удалить" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Загрузите файл с компьютера" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Файл" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Упорядочить ресурсы" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Сохранить порядок" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Сохранение..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Вложить файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Возникла ошибка" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Невозможно загрузить файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Не удается загрузить аутентификации" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ресурс загружен" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Невозможно получить данные для загружаемого файла" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Добавить фильтр" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Редактировать" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Показать еще" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Спрятать" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Ошибка %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Про {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Ассоциация CKAN" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Создано CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Настройки системного администратора" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Показать профиль" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Панель управления (%(num)d новый элемент)" +msgstr[1] "Панель управления (%(num)d новые элементы)" +msgstr[2] "Панель управления (%(num)d новые элементы)" +msgstr[3] "Панель управления (%(num)d новые элементы)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Панель Управления" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Настройки профиля" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Выйти" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Войти " + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Зарегистрироваться" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Пакеты данных" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Поиск массивов данных" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Поиск" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Поиск датасетов" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Отправить" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Корзина" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Логотип сайта" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Вы уверены, что хотите сбросить настройки?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Сбросить" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Опции настроек CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Подтвердите Удаление" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Кликните тут для получения большей информации" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Нет обработчика для этого типа данных: %(type)s." + +#: 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 "Prepend" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Prepend Input" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Стандартные поля (пусто)" + +#: ckan/templates/development/snippets/form.html:19 +#: 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 "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Добавить Группу" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Форма Группы" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Вы уверены, что хотите удалить группу - {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 "Вы уверены, что хотите удалить участника - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Добавить Участника" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Существующий Пользователь" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Чтобы добавить существующего пользователя, воспользуйтесь поиском ниже" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "или" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Новый Пользователь" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Если Вы хотите пригласить нового пользователя, введите его адрес электронной" +" почты." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Роль" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Вы уверены, что хотите удалить этого участника?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Удалить" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Какие роли?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Поиск массивов данных..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Пакеты данных в группе: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Имя" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моя Группа" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Немного информации о моей группе..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Вы уверены, что хотите удалить эту Группу?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Сохранить Группу" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Показать {name}" + +#: 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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Удалено" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 является ведущей платформой в мире для публикации открытых " +"данных.

CKAN является готовым программным решением из коробки, " +"которое делает данные доступными и используемыми - предоставляя инструменты " +"для упорядочения, публикации, обмена, поиска и использования данных (включая" +" хранение данных и предоставление надежных API). CKAN предназначен для " +"издателей данных (национальных и региональных правительств, компаний и " +"организаций), помогая сделать их данные открытыми и доступными.

CKAN " +"используется правительствами и сообществами по всему миру, включая порталы " +"для местных, национальных и международных правительственных организаций, " +"таких как Великобритания data.gov.uk и " +"Европейский Союз publicdata.eu, " +"Бразилия dados.gov.br, Голландия и " +"Нидерланды, а также городские и муниципальные сайты в США, Великобритании, " +"Аргентине, Финляндии и других странах

CKAN: http://ckan.org/
CKAN Тур: http://ckan.org/tour/
Особенности: " +"http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Добро пожаловать в 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 "" +"Это хороший вводный абзац о CKAN или для сайта в целом. Мы еще не " +"выкладывали сюда копий, но скоро мы это сделаем" + +#: 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:11 +msgid "dataset" +msgstr "пакет данных " + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "наборы данных" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "организации" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "группы" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Величина" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "По умолчанию" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Форма содержит неверные значения" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL картинки" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "найдено по запросу \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Извините, но никаких пакетов данных не было найдено для \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Сделать публичным" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Сделать приватным" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Черновик" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Личный" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Вы уверены, что хотите удалить организацию - {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 "Редактировать Организацию" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Имя пользователя" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Обновить участника" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Администратор:Может добавлять/редактировать и удалять данные, а также управлять участниками организации.

\n" +"

Редактор: Может добавлять/редактировать данные, но не управлять участниками организации.

\n" +"

Участник: Может просматривать приватные данные организации, но не может добавлять данные

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "[1] участник" +msgstr[1] "[2-4] участника" +msgstr[2] "[many] участников" +msgstr[3] "[other] участников" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "Кратко о моей организации..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Сохранить Организацию" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Просмотр {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Изменения" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Вы уверены, что хотите удалить пакет данных - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Вы уверены, что хотите удалить ресурс - {name}? " + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Показать пакеты данных" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Редактировать метаданные" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Предпросмотр" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Добавить" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Редактировать ресурс" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Перейти к ресурсу" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Загрузить" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Ресурс: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Дополнительная информация" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "неизвестно" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Метаданные обновлены" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Создано" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Формат" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Лицензия" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Новый просмотр" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "У ресурса нет просмотров" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Добавить новый ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Документация API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "полный {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 "" +"Вы также можете получить доступ к ресурсу через %(api_link)s (see " +"%(api_doc_link)s) или скачать %(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 "" +"Вы можете получить доступ к этому реестру через %(api_link)s (see " +"%(api_doc_link)s)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Страна" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Последнее обновление" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"Для того, чтобы создать набор данных, Вам необходимо создать организацию" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Создать новую организацию" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Чтобы продолжить, Вам необходимо создать организацию. Обратитесь к " +"системному администратору." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Описание лицензии и дополнительную информацию можно найти на opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Организация" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Нет организаций" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Видимость" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Общественный" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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 "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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-mail автора" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-mail администратора" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "обновить Ресурс" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Данные" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "например - January 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Полезные заметки о данных" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "например - CSV, XML или JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "например - 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Размер Файла" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "например - 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME тип" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "eg. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Вы уверены, что хотите удалить ресурс?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Предыдущий" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Сохранить и добавить другой" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Исследуй" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Больше информации" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Полноэкранно" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Внедрить" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "Ширина" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Высота" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Код" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Предпросмотр ресурса" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Данные и Ресурсы" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Добавить пакет" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Уведомление URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Показать больше {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Показать только популярное {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Нет {facet_type} соответствующего этому поиску" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Главная страница" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Язык" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Перейти" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Не Предоставлена Лицензия " + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Этот пакет соответствует требованиям Open Definition." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Сортировать по" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Фильтровать Результаты" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Попробуйте поискать еще.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} пакет данных найден для \"{query}\"" +msgstr[1] "{number} пакеты данных найдены для \"{query}\"" +msgstr[2] "{number} пакеты данных найдены для \"{query}\"" +msgstr[3] "{number} пакеты данных найдены для \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "По запросу \"{query}\" пакетов данных не найдено" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} массив найден" +msgstr[1] "{number} массива найдено" +msgstr[2] "{number} найдено массивов данных" +msgstr[3] "{number} найдено массивов данных" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Пакеты данных не найдены" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} группа найдена для \"{query}\"" +msgstr[1] "{number} группы найдены для \"{query}\"" +msgstr[2] "{number} группы найдены для \"{query}\"" +msgstr[3] "{number} группы найдены для \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "По запросу \"{query}\" групп не найдено" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} группа найдена" +msgstr[1] "{number} группы найдены" +msgstr[2] "{number} группы найдены" +msgstr[3] "{number} группы найдены" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Группы не найдены" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} организация найдена для \"{query}\"" +msgstr[1] "{number} организации найдены для \"{query}\"" +msgstr[2] "{number} организации найдены для \"{query}\"" +msgstr[3] "{number} организации найдены для \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "По запросу \"{query}\" организаций не найдено" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} организация найдена" +msgstr[1] "{number} организации найдены" +msgstr[2] "{number} организации найдены" +msgstr[3] "{number} организации найдены" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} добавил тег {tag} к набору данных {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} обновил группу {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} обновил организацию {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} обновил набор данных {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} обновил ресурс {resource} в наборе данных {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} обновил свой профиль" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} удалил группу {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} удалил организацию {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} удалил набор данных {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} удалил ресурс {resource} из набора данных {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} начался следующий {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} начался следующий {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} started following {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} создал группу {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} создал организацию {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} создал набор данных {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} добавил ресурс {resource} в набор данных {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} подписал" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} удалил тег {tag} из набора данных {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Поиск тэгов" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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-пользователям знать кто Вы есть и что Вы " +"делаете" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Изменить детали" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Полное имя" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "eg. Joe Bloggs" + +#: 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:14 +msgid "A little information about yourself" +msgstr "Кратко о себе" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Подпишитесь на рассылку уведомлений" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Сменить пароль" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Пароль" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Подтвердите пароль" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Вы уверены, что хотите удалить этого Пользователя?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Создать новый API ключ" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Вы вошли как {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Выйти" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запомнить меня" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Вы только что вошли в систему" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Вы должны выйти, прежде чем Вы сможете войти как другой пользователь" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Создать Аккаунт" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Сбросить пароль" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Сброс пароля" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Обновите пароль" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Как это работает?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Просто введите новый пароль и мы обновим Ваш ​​аккаунт" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Пользователь не создал ни одного пакета данных." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Вы не написали биографию." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Пользователь не имеет биографии." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Открытый ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Это значит, что только вы можете видеть это." + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Участник с" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API ключ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Восстановить Ваш пароль" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Поиск пользователей" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Переход на внешний сайт не разрешен" diff --git a/ckan/i18n/sk/LC_MESSAGES/ckan.po b/ckan/i18n/sk/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..a59bade3c68 --- /dev/null +++ b/ckan/i18n/sk/LC_MESSAGES/ckan.po @@ -0,0 +1,5164 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Slovak (https://www.transifex.com/okfn/teams/11162/sk/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sk\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Nenájdený zdroj" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nemáte oprávnenie na zobrazenie tejto stránky" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Ukončené" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Čakajúce na spracovanie" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Nahrávanie" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Chyba" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Doposiaľ nenahrané" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Nahrať do DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Chyba pri nahrávaní:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Chyba: " + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Stav" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Naposledy zmenené" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikdy" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Nahrať záznam" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaily" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Koniec záznamu" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Požadovaný zdroj z DataStore nebol nájdený" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Zdroj \"{0}\" nebol nájdený" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Používateľ {0} nemá oprávnenie na úpravu zdroja {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN dátové API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Prístup k zdrojom dát prostredníctvom webového API s podporou dopytovania" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Koncové body" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Prístup k dátovému API prostredníctvom nasledujúcich CKAN akcií API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Vytvoriť" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Aktualizovať / Vložiť" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Dopyt" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Dopyt (prostredníctvom SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Dopytovanie" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Príklad dopytu (prvých 5 výsledkov)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Príklad dotazu (výsledky obsahujúce 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Ukážka dopytu (cez SQL výraz)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Ukážka: JavaScript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" +"Jednoduchá ajaxová (JSONP) požiadavka pre dátovú API využívajúcu jQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Príklad: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Uložiť" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Popis" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Prebieha načítavanie..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabuľka" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Datasetov na stránku" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "" + +#: ckan/templates/group/read.html:13 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 "Relevantnosť" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Meno vzostupne" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Meno zostupne" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Naposledy zmenené" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Vlastné pole vzostupne" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Vlastné pole zostupne" + +#: ckan/templates/group/read.html:17 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 "Popularita" + +#: 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 "Vlastný Text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "vlastný text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kód krajiny" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "vlastný zdroj textu" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Táto skupina nemá popis" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Datasetov" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "Nástroj CKAN-u na zobrazenie dát má mnoho užitočných funkcií" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Odoberatelia" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Zdroje" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Obrázok" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL obrázku" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"napr. http://example.com/image.jpg (ak je prázdne, použije sa url dátového " +"zdroja)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graf" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Mapa" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtre" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "offset riadka" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "napr: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Počet riadkov" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "napr: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Typ grafu" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Skupina (os 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Rad (os 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Typ poľa" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "pole zemepisná šírka" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "pole zemepisná dĺžka" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON pole" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Auto zoom funkcií" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Značky klastra" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Najlepšie hodnotené datasety" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Priemerné hodnotenie" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Počet hodnotení" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Bez hodnotení" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Najväčšie skupiny" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Skupina" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Počet datasetov" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Žiadne skupiny" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Najčastejšie tagy" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Názov tagu" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Počet datasetov" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Používateľ" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Štatistické menu" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Najviac upravované datasety" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Webová stránka" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL webovej stránky" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"napr. http://example.com (ak je prázdna, použije sa url dátového zdroja)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Váš webový prehliadač nepodporuje iframe" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Autorizačná funkcia nenájdená: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrátor" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Editor" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Člen" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Na spravovanie musíte byť systémový administrátor" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Nadpis stránky" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Štýl" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Popis portálu" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Malé logo portálu" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "O projekte" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Text stránky o projekte" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Úvodný Text" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text na hlavnej stránke" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Vlastné CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Prispôsobiteľný css súbor bol vložený do hlavičky stránky" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Hlavná stránka" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Nie je možné vymazať balík %s, keďže prepojená revízia %s obsahuje nezmazané" +" balíky %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problém pri čistení revízie %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Mazanie ukončené" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Akcia nieje implementovaná." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Prístup bol odmietnutý" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nenájdené" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Chybná požiadavka" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Názov akcie nie je známy: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Chyba JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Chybná požiadavka dát: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Skupina nenájdená" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizácia nebola nájdená." + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Nesprávny typ skupiny" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizácie" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Skupiny" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tagy" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formáty" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licencie" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Užívateľ %r nemá oprávnenie meniť %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nemáte opravnenie na vykonanie hromadnej aktualizácie" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nemáte oprávnenie vytvoriť skupinu" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Chyba v integrite" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Užívateľ %r nemá oprávnenie meniť oprávnenie pre %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nemáte oprávnenie na vymazanie skupiny %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizácia bola vymazaná" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Skupina bola vymazaná" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s bolo vymazaných." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nemáte oprávnenie na pridanie člena do skupiny %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nemáte oprávnenie na mazanie členov skupiny %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Člen skupiny bol vymazaný" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Pred porovnávaním vyberte dve verzie" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "História revízií skupin CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nedávne zmeny skupiny CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Správa logu: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Teraz sledujete {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Už nesledujete {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nemate povolenie na sledovanie odberateľov %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Táto stránka je momentálne off-line. Databáza sa nenačítala." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Prosím aktualizujte svoj profil a pridajte svoju " +"emailovú adresu." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s použije vašu emailovú adresu, ak potrebujete zmeniť svoje prístupové " +"heslo." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" nie je celé číslo" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset sa nepodarilo nájsť" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neplatný formát revízie: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nemáte oprávnenie čítať balík %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historia revízií CKAN datasetu" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedávne zmeny Datasetu CKAN: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nemáte oprávnenie vytvoriť balík." + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nemáte oprávnenie na aktualizáciu datasetu" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Dataset {id} nebol nájdený." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Musíte pridať aspon jeden zdroj" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nemáte oprávnenie na vytvorenie zdroja" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Nemáte oprávnenie vytvoriť dátový zdroj pre tento dataset" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Do vyhladávacieho indexu nie je možné pridať balík." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Vyhľadávací index nemožno aktualizovať" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dataset bol vymazaný" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nemáte oprávnenie na zmazanie balíka %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Zdroj bol vymazaný" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nemáte oprávnenie na zmazanie zdroja %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Nenájdený náhľad dátového zdroja" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Zdroj nebol nájdený" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Žiadne stiahnutie nie je dostupné" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nemáte oprávnenie na čítanie datasetu %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemáte oprávnenie na čítanie zdroja %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Nemáte oprávnenie na upravovanie tohto zdroja" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Nenájdený náhľad" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Nenájdený typ náhľadu" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Nesprávny náhľad dátového zdroja" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Náhľad nebol nájdený" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Žiadny náhľad ešte nebol definovaný" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Používateľ nebol nájdený" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Nemáte oprávnenie registrovať sa ako používateľ." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Nemáte oprávnenie vytvoriť používateľa" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nemáte oprávnenie vymazať používateľa s id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nebol vybraný žiadny používateľ" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Nemáte oprávnenie upravovať používateľa %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil upravený" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Nemáte oprávnenie vytvoriť používateľa %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Nesprávny kontrolný kód. Prosím, skúste to znova." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Používateľ \"%s\" je registrovaný, stále ste však prihlásený ako používateľ " +"\"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Nemáte oprávnenie upravovať používateľa." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Bolo yadané nesprávne heslo" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Pôvodné heslo" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "nesprávne heslo" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Prihlásenie sa nepodarilo. Zlé prihlasovacie meno alebo heslo." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nemáte oprávnenie požiadať o reset hesla." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Neoprávnený na obnovenie hesla." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Neplatný obnovovací kľúč. Skúste znova." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Vaše heslo bolo obnovené." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Vaše heslo musí mať najmenej 4 znaky." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Zadané heslá nie sú totožné." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Musíte zadať heslo" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Sledovaná položka nebola nájdená" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "Nepodarilo sa nájsť {0}" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Všetko" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Zobrazenie" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Práve teraz" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bajtov" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Neznáme" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Nepomenovaný zdroj" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nový dataset vytvorený." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Upravené zdroje." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Upravené nastavenia." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} videní" +msgstr[1] "{number} videnie" +msgstr[2] "{number} videní" +msgstr[3] "{number} videní" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} nedávnych videní" +msgstr[1] "{number} nedávne videnie" +msgstr[2] "{number} nedávnych videní" +msgstr[3] "{number} nedávnych videní" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nie je k dispozícii žiadna emailová adresa prijímateľa!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizácia" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupina" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Chýbajúca hodnota" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Neočakávaný názov vstupného poľa %(name)s." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Prosím zadajte hodnotu celého čísla" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Neplatný zdroj(e) balíka" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Doplnky" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tag \"%s\" neexistuje" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Nepodarilo sa parsovať validný JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizácia neexistuje" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Nieje požné pridať dataset do tejto organizácie" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Neplatné číslo" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Musí byť ṕrirodzené číslo" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Musí byť kladné číslo" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Nesprávny formát dát" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "V log_message nie sú povolené odkazy." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Dataset s týmto identifikátorom už existuje" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Zdroj" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Názov skupiny alebo ID neexistuje." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Typ aktivity" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Mená musia byť reťazce znakov" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Tento názov nemôže byť použitý" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Musí obsahovať minimálne %s znakov" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Meno musí mať najviac %i znakov" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Musí obsahovať iba malé písmená bez diaktritiky, číslice a znaky: - a _" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Táto URL už bola použitá." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Názov \"%s\" je kratší, než minimálny počet znakov %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Názov \"%s\" je dlhší, než maximálny počet znakov %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Verzia môže mať maximálne %i znakov." + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplicitný kľúč \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Názov skupiny už existuje" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" je kratší ako minimálny počet %s znakov" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Dĺžka tagu \"%s\" presahuje povolené maximum %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Tag \"%s\" môže obsahovať iba malé písmená bez diakritiky, číslice a znaky -" +" a _." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tag \"%s\" nesmie obsahovať veľké písmená" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Užívateľské mená musia byť textove reťazce" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Toto prihlasovacie meno nie je k dispozícii." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Prosím zadajte obe heslá" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Heslá musia byť textove reťazce" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Zadané heslá sa nezhodujú" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Úprava nebola povolená, pretože vyzerá ako spam. Prosím nedávajte do opisu " +"odkazy." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Názov musí mať aspoň %s znakov" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Toto meno slovníka je už použité." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "Nemožno zmeniť hodnotu kľúča z %s na %s. Tento kľúč možno len čítať." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Slovník tagov nebol nájdený." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tag %s nepatrí do slovníku %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Žiaden názov tagu" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tag %s už patrí do slovníku %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Prosím, úveďte platnú URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "rola neexistuje" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Dataset, ktorý nepatrí organizácii nemôže byť súkromný" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Toto nieje zoznam" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Toto nieje textový reťazec" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Tento predok by vytvoril zacyklenie v hierarchii" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" a \"filter_values\" musia mať rovnakú dĺžku" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" je povinné v prípade, že \"filter_values\" je vyplnené" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" je povinné v prípade, že \"filter_fields\" je vyplnené" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Už existuje schéma s rovnakým menom." + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Chýbajúca hodnota" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Skúšam vytvoriť organizáciu ako skupinu" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Musíte zadať id alebo meno balíka (parameter \"balík\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Musíte vyplniť hodnotenie (parameter \"hodnotenie\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Hodnotenie musí byť celé číslo." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Hodnotenie musí byť medzi %i a %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Musíte byť prihlásený, ak chcete sledovať užívateľov" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Nemôžete odoberať sám seba" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Už sledujete {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Musíte byť prihlásený ak chcete sledovať dataset" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Uživateľ {username} neexistuje" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Musíte byť prihlásený, ak chcete sledovať skupinu." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id nie je v dátach" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Nemožno nájsť slovník \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Nie je možné nájsť tag \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Musíte byť pripojený pre odber." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Neodoberáte {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Zdroj nebol nájdený." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Nešpecifikuje \"otázka\" parameter" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Musí byť : pár(y)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Pole \"{field}\"nebolo rozpoznané v zdrojovom_vyhľadávaní" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Balík nebol nájdený." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus nebol nájdený." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizácia nebola nájdená." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Používateľ %s nemá oprávnenie vytvárať balíky" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Používateľ %s nemá oprávnenie upravovať tieto skupiny" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "Používateľ %s nemá oprávnenie na pridanie datasetu tejto organizácie" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Neznáme ID datasetu, nie je možné skontrolovať oprávnenia." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nenašiel sa žiadny balík pre tento zdroj, nie je možné skontrolovať " +"oprávnenie." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "Používateľ %s nemá oprávnenie vytvárať dátové zdroje pre dataset %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Používateľ %s nemá oprávnenie upravovať tieto balíky" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Používateľ %s nemá oprávnenie vytvárať skupiny" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Používateľ %s nemá oprávnenie na vytváranie organizácií" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Používateľ {user} nemá oprávnenie na vytvorenie používteľom prostredníctvom " +"API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nemáte oprávnenie na vytvorenie používateľov" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Skupina nebola nájdená." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Používateľ %s nemá oprávnenie na pridanie členov" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Používateľ %s nemá oprávnenie upravovať skupinu %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Používateľ %s nemá oprávnenie na odstránenie zdroja %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Náhľad dátového zdroja nebol nájdený, nie je možné skontrolovať oprávnenia." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Používateľ %s nemá oprávnenie zmazať vzťah %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Používateľ %s nemá oprávnenie na odstránenie skupín" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Používateľ %s nemá oprávnenie zmazať skupinu %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Používateľ %s nemá oprávnenie na odstránenie organizácií" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Používateľ %s nemá oprávnenie na odstránenie organizácie %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Používateľ %s nemá oprávnenie na odstránenie task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Neoprávnený" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Používateľ %s nemá oprávnenie čítať tieto balíky" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Používateľ %s nemá oprávnenie čítať balík %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Používateľ %s nemá oprávnenie čítať zdroj %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Používateľ %s nemá oprávnenie čítať skupinu %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Musíte byť prihlásený na prístup k nástenke." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Používateľ %s nemá oprávnenie upravovať balík %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Používateľ %s nemá oprávnenie na úpravu zdroja %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Používateľ %s nemá oprávnenie meniť stav balíka %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Používateľ %s nemá oprávnenie na zmenu organizácie %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Používateľ %s nemá oprávnenie meniť stav skupiny %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Používateľ %s nemá oprávnenie meniť práva skupiny %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Musíte byť pripojený na úpravu používateľa" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Používateľ %s nemá oprávnenie upravovať používateľa %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Používateľ {0} nemá oprávnenie na úpravu profilu používateľa {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Používateľ %s nemá oprávnenie meniť stav revízie" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Používateľ %s nemá oprávnenie aktualizovať task_status tabuľky" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Používateľ %s nemá oprávnenie aktualizovať term_translation tabuľky" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Nie je uvedená licencia" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Ostatné (otvorená licencia)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Ostatné (verejná doména)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Ostatné (licencia s priznaním autorstva)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Ostatné (licencia pre nekomerčné využitie)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Ostatné (zatvorená licencia)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "záleží od %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "je závislosť od %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "je odvodené od %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "má pôvod %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "odkazuje na %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "je linkované z %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "je potomkom %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "je predkom %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "je príbuzný s %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Neexistuje dátové API na načítanie tohto zdroja" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Zlyhalo načítanie informácie o dátovom API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Začnite písať..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Žiadna zhoda" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Neuložili ste vykonané zmeny vo formulári" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Prosím, potvrďte túto akciu" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Chcete vykonať túto akciu?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Potvrdiť" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Zrušiť" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Prestať odoberať" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Odoberať" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Odkaz" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Odkaz URL na internete (môžete prepojiť s API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Nahrávanie" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Zmazať" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Odošlite súbor na váš počítať" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Súbor" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Uložiť výber" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Ukladám..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Nahrať súbor" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Vyskytla sa chyba" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Nie je možné nahrať súbor" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Nie je možné autentifikovať nahraté súbory" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Zdroj nahraný" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Nie je možné pristúpiť k nahranému súboru" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "Nahrávate súbor. Chcete odísť preč a prerušiť nahrávanie?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Pridať filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Upraviť" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Ukázať viac" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Skryť" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Chyba %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Informácie o {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Beží na CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Nastavenia systémového administrátora" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Ukázať profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Zobraziť (%(num)d novú položku)" +msgstr[1] "Zobraziť (%(num)d nové položky)" +msgstr[2] "Zobraziť (%(num)d nové položky)" +msgstr[3] "Zobraziť (%(num)d nové položky)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Nastenka" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Odhlásiť sa" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Prihlásiť sa" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Zaregistrovať sa" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Datasety" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Vyhľadať datasety" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Hľadať" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Preskočiť na obsah" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Načítať menej" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Načítať viac" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Žiadne udalosti nie sú dostupné" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrácia" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Systémoví administrátori" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurácia" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Kôš" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Chcete obnoviť konfiguráciu?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Obnoviť" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Upraviť konfiguráciu" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN konfigurácia" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Názov stránky: Názov CKAN objektu sa vyskytuje na " +"viacerých miestach prostredníctvom CKAN

Štýl: Zvoľte" +" niektorú z jednoduchších kombinácií farebných schém pre vytvorenie " +"jednoduchej témy.

Logo stránky: Toto logo " +"vyskytujúce sa v hlavičkých každej CKAN šablóny.

Informácie " +"o: Tento text sa zobrazí v CKAN objektoch o stránke.

Intro Text: " +"Tento text sa objaví na domovskej stránke tento" +" CKAN objekt pre privítání návštěvníkov.

Vlastné alebo " +"upravené CSS: Toto je blok pre CSS, ktorý sa objaví v " +"<head> tagu každej stránky. Ak si želáte upraviť šablóny " +"viac, prečítajte si dokumentáciu.

Hlavná stránka: " +"Touto voľbou sa určí predpripravené rozloženie modulu, ktoré se zobrazuje na" +" hlavnej stránke.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potvrďte reset" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Spravovať CKAN" + +#: 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 "" +"

Ako používateľ sysadmin máte plnú kontrolu nad touto inštanciou CKAN. Pokračujte opatrne!\n" +"

Pre informácie o používaní sysadmin funkcií, pozrite odkaz sysadmin sprievodca

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Potvrdiť zmazanie" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Vyčistiť" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Pre tento zdroj nemôže byť zobrazený náhľad" + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klikni pre viac informácií" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Stiahnuť zdroj" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Náhľad nie je k dispozícii" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Viac detailov..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Pre dátový typ %(type)s nebol definovaný nástroj pre jeho spracovanie" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Štandardný" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Štandardný vstup" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Stredný" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Vstup strednej šírky" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Celý" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Vstup na celú šírku" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Veľký" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Veľký vstup" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Predpripravený" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Predpripravený vstup" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Vlastné pole (prázdne)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Vlastné pole" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textové pole" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Zvoliť" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Udalosti" + +#: 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 "Administrátori" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Pridať skupinu" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Formulár skupiny" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Naozaj chcete odstrániť skupinu - {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 "Naozaj chcete odstrániť člena - {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:15 +#: 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 "Spravovať" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Upraviť skupinu" + +#: 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 "Členovia" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Pridať skupinu" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Prehľadávať skupiny..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Na tejto stranke aktuálne nie sú žiadne skupiny" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Čo tak jednu vytvoriť?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Späť na zoznam všetkých členov" + +#: 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 "Upraviť člena" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Pridať člena" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Existujúci používateľ" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Pokiaľ chcete pridať existujúceho používateľa, nižšie vyhľadajte jeho " +"používateľské meno" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "alebo" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Nový používateľ" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Pokiaľ chcete pozvať nového používateľa, zadajte jeho e-mail" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Rola" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Skutočne chcete odstrániť tohto člena?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Zmazať" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Čo sú role?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administrátor: Môže upravovať informácie o skupine, tak" +" ako aj spravovať členov organizácie.

Člen: Môže " +"pridávať/mazať datasety zo skupín

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Vytvoriť skupinu" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Aktualizovať skupinu" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Vytvoriť skupinu" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Vyhľadať datasety..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Datasety v skupine: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Názov" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moja skupina" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Skrátené informácie o mojej skupine" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Si si istý, že chceš vymazať túto skupinu?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Uložiť skupinu" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Zobraziť {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Vymaž dataset, z tejto skupiny" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Čo sú skupiny?" + +#: 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 "" +" Možeš využiť CKAN Groups na vytvorenie a spravovanie kolekcií datasetov. " +"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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Zmazané" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "dozvedieť sa viac" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Vitajte" + +#: 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 je celosvetovo vedúca open-source dátová platforma.

CKAN je " +"kompletné out-of-box softvérové ​​riešenie, ktoré robí dáta prístupné a " +"použiteľné - poskytuje nástroje pre zefektívnenie ich publikovania a " +"katalogizáciu, zdieľanie, vyhľadávanie a používanie dát (ako úložisko dát s " +"robustným dátovým rozhraním API). CKAN je určený pre všetkých poskytovateľov" +" dát (národné a regionálne vlády, spoločnosti a organizácie), ktorí chcú, " +"aby ich dáta boli otvorené a dostupné.

CKAN je používaný vládami a " +"skupinami používateľov po celom svete na prevádzku rôznych oficiálnych a " +"komunitných dátových portálov, vrátane portálov pre miestne, národné a " +"medzinárodné vlády, ako napríklad vo Veľkej Británii data.gov.uk a Európskej únii publicdata.eu , Brazílii dados.gov.br , Holandsku, ale aj stránky " +"miest a obcií v USA, Veľkej Británii, Argentíne, Fínsku a inde " +"

CKAN: http://ckan.org/
CKAN " +"prehliadka: http://ckan.org/tour/
Prehľad funkcii: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Vitajte 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 milý úvodný paragraf o CKAN vo všeobecnosti. Nemáme sem zatiaľ čo " +"dať, ale čoskoro sa to zmení" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Toto je vybraná sekcia" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Napr. prostredie" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Hľadať dáta" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populárne tagy" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} štatistika" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "datasety" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizácie" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupiny" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Toto pole je povinné" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Tu môžete použiť Markdown formátovanie" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Hodnota" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Upravené" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formulár obsahuje neplatné položky: " + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Povinné pole" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Obrázok URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Vymazať nahrávanie" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Formulár organizácie" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Upravit datasety" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "najdené ako výsledok dotazu \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Pre dotaz \"{query}\" neboli nájdené žiadne výsledky" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Zprístupniť verejnosti" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Pridať do súkromných" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Predbežný návrh" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Súkromný" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Táto organizácia nemá žiaden dataset spojený s ňou" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Ste si istý, že chcete zmazať organizáciu - {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 "Upraviť organizáciu" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Pridať organizáciu" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Vyhladať organizácie" + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Na tomto portály aktuálne niesú žiadne organizácie" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Používateľské meno" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Upraviť údaje o užívateľovi" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administrátor: Môže pridávať, upravovať a mazať datasety" +" a môže taktiež spravovat členov organizácie.

" +"

Editor: Môže pridávať, upravovať a mazať datasety, ale " +"nemôže spravovať členov organizácie.

Člen: Môže si " +"zobraziť súkromné datasety organizácie, ale nemôže přidávať datasety.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Vytvoriť Organizáciu" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Aktualizovať Organizáciu" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Vytvoriť Organizáciu" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Datasety v organizácii: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Čo sú to Organizácie" + +#: 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 "" +"Organizácie sú používané na vytváranie, spravovanie a publikovanie \"\n" +"\"zbierok datasetov. Používatelia môžu mať rozličné role v Organizácii, v závislosti \"\n" +"\"od ich úrovne autorizácie vytvárať, upravovať a pulikovať" + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moja Organizácia" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Zopár informácií o mojej organizácií" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Uložiť Organizáciu" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Zobraziť {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Vytvoriť dataset" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Čo sú to datasety?" + +#: 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 dataset je súbor dátových zdrojov (ako napríklad súbory), spolu s " +"popisom a ďalšími informáciami na pevnej URL. Datasety sú to, čo " +"používatelia vidia pri vyhľadávaní dát." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Zmeny" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ste si istý, že chcete vymazať dataset - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ste si istý, že chcete vymazať zdroj - {name}" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Zobraziť dataset" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Upraviť metadáta" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Editovať náhľad" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Náhľad" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Aktualizovať" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Priradiť túto skupinu datasetu" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Pridať do skupiny" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "S týmto datasetom nie sú spojené žiadne skupiny" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Aktualizovať dataset" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Pridať dáta do datasetu" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Pridať nový zdroj" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Pridať zdroj" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nový zdroj" + +#: 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 "Pridať náhľad" + +#: 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 "" +"Náhľady Data Explorer môžu byť pomalé a nespoľahlivé, ak nie je povolené " +"DataStore rozšírenie. Ďalšie informácie nájdete v Data Explorer " +"dokumentácii." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Pridať" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Všetky zdroje" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Zobraziť zdroj" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Upraviť zdroj" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Náhľady" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Koncový bod API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Choď ku zdroju" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Stiahnuť" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Zdroj: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Pre daný dátový zdroj zatiaľ neexistujú žiadne náhľady." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Nevidíte náhľady, ktoré ste očakávali?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Tu sú možné príčiny, pre ktoré nevidíte očakávaný náhľad:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Pre daný dátový zdroj nebol vytvorený žiadny vhodný náhľad" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Je možné, že správca stránky nepovolil príslušný plugin pre náhľady" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Ak náhľad vyžaduje DataStore, DataStore plugin nemusí byť povolený, alebo " +"dáta neboli odoslané do DataStore, alebo DataStore doposiaľ neukončil " +"spracovanie dát" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Doplňujúce informácie" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Pole" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "neznámy" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Vytvorené" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formát" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencia" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nový náhľad" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Náhľad pre tento dátový zdroj nie je k dispozícii" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Pridať nový zdroj" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Dataset neobsahuje dáta, prečo nejaké" +" nepridať?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Dokumenty API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "úplný {format} dump" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +"K tomuto registru môžete pristúpiť tiež cez %(api_link)s (pozri " +"%(api_doc_link)s) alebo stiahnuť %(dump_link)s." + +#: ckan/templates/package/search.html:60 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" +"Prístup do tohto zoznamu je možný aj cez API rozhranie %(api_link)s (viď. " +"dokumentácia API %(api_doc_link)s)." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Všetky náhľady" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Zobraziť náhľad" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Zobraziť náhľad" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Doplňujúce informácie" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Zdroj" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Správca" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verzia" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stav" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Posledná aktualizácia" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Nadpis" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "napr. popisný názov" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "napr. môj-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "napr. Niekoľko užitočných poznámok o dátach" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "napr. ekonomika, zdravie, vláda" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Informácie o licenciách nájdete na opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizácia" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Žiadna organizácia" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Viditeľnosť" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Verejný" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktívny" + +#: 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 "" +"Licencia zvolená vyššie sa vzťahuje len na obsah zdrojových súborov, " +"ktoré pridáte do tohto datasetu. Odoslaním tohto formulára súhlasíte s " +"publikovaním metadát, ktoré zadáte do formulára pod Otvorená databázová " +"licencia." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Ste si istý, že chcete zmazať tento dataset?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Ďalej: Pridať dáta" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email autora" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +#: ckan/templates/user/new_user_form.html:7 +msgid "joe@example.com" +msgstr "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email správcu" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Aktualizovať dátový zdroj" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "napr. cena zlata v januári 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Niekoľko užitočných poznámok o dátach" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "napr. CSV, XML alebo JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Bude doplnené automaticky. Môže ostať nevyplnené. " + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "napr. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Veľkosť súboru" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "napr. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME typ" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "napr. aplikácia/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Ste si istí, že chcete zmazať tento dátový zdroj?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Predchádzajúce" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Uložiť a pridať ďalší" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Dokončiť" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Čo je dátový zdroj?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Dátový zdroj môže byť ľubovoľný súbor alebo odkaz na súbor obsahujúci " +"užitočné dáta." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Preskúmať" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Doplňujúce informácie" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Zakomponovať" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Náhľad dátového zdroja nie je momentálne k dispozícii." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Vložiť náhľad dátového zdroja" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Môžete skopírovať a vložiť pridaný kód do CMS alebo do blog softvéru, ktorý " +"podporuje raw HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Šírka" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Výška" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kód" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Zobrazenie dátového zdroja" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Dáta a Dátové zdroje" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Tento dataset neobsahuje dáta" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Vytvoriť dataset" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Pridať dáta" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "napr. Môj náhľad" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "napr. Informácie o mojom náhľade" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstrániť filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Čo je náhľad?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Náhľad je reprezentácia dát dátového zdroja" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Pridať dataset" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Stav dátovej pumpy: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Sledovacia URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Zobraziť viac {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Zobrazť iba obľúbené {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Neexistujú žiadne {facet_type} ktoré zodpovedajú hľadanému výrazu" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Domov" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jazyk" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Ísť" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Neposkytnutá žiadna licencia" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Tento dataset vyhovuje Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Táto organizácia nemá popis" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Tento dataset nemá popis" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Zoradiť podľa" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Výsledky filtrovania" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Prosím vyskúšajte iný vyhľadávací výraz.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} dataset nájdený na dopyt \"{query}\"" +msgstr[1] "{number} datasety nájdené na dopyt \"{query}\"" +msgstr[2] "{number} datasetov nájdených na dopyt\"{query}\"" +msgstr[3] "{number} datasetov nájdených na dopyt\"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Žiadne datasety nenájdené pre dopyt \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset nájdený" +msgstr[1] "{number} datasety nájdené" +msgstr[2] "{number} datasetov nájdených" +msgstr[3] "{number} datasetov nájdených" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Žiadne datasety nenájdené" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} skupina nájdená na dopyt \"{query}\"" +msgstr[1] "{number} skupiny nájdené na dopyt \"{query}\"" +msgstr[2] "{number} skupín nájdených na dopyt \"{query}\"" +msgstr[3] "{number} skupín nájdených na dopyt \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Žiadne skupiny nenájdené na dopyt \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} skupina nájdená" +msgstr[1] "{number} skupiny nájdené" +msgstr[2] "{number} skupín nájdených" +msgstr[3] "{number} skupín nájdených" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Nenájdené žiadne skupiny" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organizácia nájdená na dopyt \"{query}\"" +msgstr[1] "{number} organizácie nájdené na dopyt \"{query}\"" +msgstr[2] "{number} organizácií nájdených na dopyt \"{query}\"" +msgstr[3] "{number} organizácií nájdených na dopyt \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Žiadne organizácie nenájdné na dopyt \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organizácia nájdená" +msgstr[1] "{number} organizácie nájdené" +msgstr[2] "{number} organizácií nájdených" +msgstr[3] "{number} organizácií nájdených" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Žiadne organizácie nenájdené" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Zdieľať" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Prihlásiť k odberu" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} pridal tag {tag} do datasetu {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} aktualizoval skupinu {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} aktualizoval organizáciu {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} aktualizoval dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} aktualizoval zdroj {resource} v datasete {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} aktualizoval svoj profil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} vymazal skupinu {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} vymazal organizáciu {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} vymazal dataset {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} vymazal zdroj {resource} datasetu {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} začal sledovať {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} začal sledovať {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} začal sledovať {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} vytvoril skupinu {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} vytvoril organizáciu {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} vytvoril dataset {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} pridal zdroj {resource} do datasetu {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} sa zaregistroval" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} vymazal tag {tag} z datasetu {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Hľadať tagy" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Novinky" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moje datasety" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje organizacie" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje skupiny" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivity z poloziek ktore sledujem" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Nemáte vytvorené žiadne datasety." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Vytvoriť jeden teraz?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Nie ste členom žiadnej skupiny." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Nie ste členom žiadnej organizácie." + +#: 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 "Používatelia" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informácie o účte" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Pomocou vášho CKAN profilu môžete povedať ostatným používateľom niečo o sebe" +" a o tom čo robíte." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Zmena údajov" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Celé meno" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "napr. Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "napr. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Základné informácie o vás" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Prihlásiť sa k emailovým upozorneniam" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Zmena hesla" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Heslo" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Potvrdiť heslo" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Určite chcete vymazať tohto používateľa?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ste si istí, že chcete nanovo vygenerovať API kľúč?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Nanovo vygenerovať API kľúč" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Aktualizovať profil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Všetci používatelia" + +#: 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 "Prihlásiť sa" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Potrebujete používateľsy účet?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Tak sa zaregistrujte, zaberie vám to len minútku." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Vytvoriť účet" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Zabudli ste vaše heslo?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Žiaden problém, využite formulár na obnovenie zabudnutého hesla a " +"vyresetujte ho." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Zabudli ste heslo?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Odhlásený" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Teraz ste odhlásený." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Už ste pihlásený ako {user}" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odhlásiť sa" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapamätať si ma" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Už ste prihlásený" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Ak sa chcete prihlásiť pod iným účtom, musíte sa najskôr odhlásiť." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Ihneď odhlásiť" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrácia" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrujte sa a vytvorte si účet" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Prečo by som sa mal prihlásiť?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "" +"Aby ste mohli vytvárať datasety, skupiny a veľa ďalších zaujímavých vecí" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Používateľské meno" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Celé meno" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Vytvoriť účet" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Obnoviť heslo" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Obnoviť heslo" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Zmeniť heslo" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Ako to funguje?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Jednoducho vložte nové heslo a my Vám zaktualizujeme účet" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Používateľ zatiaľ nevytvoril žiadny dataset" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Nezadali ste svoj životopis." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Tento používateľ nemá zadaný životopis." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "To znamená, že len vy to môžete vidieť" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Členom od" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Kľúč API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Obnoviť heslo" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktívny od:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Prehľadať zoznam..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Momentálne nič nenasledujete" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Žiadny nasledovatelia" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Hľadať používateľov" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Presmerovanie na externú stránku nie je povolené." diff --git a/ckan/i18n/sl/LC_MESSAGES/ckan.po b/ckan/i18n/sl/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..dda4efbb34a --- /dev/null +++ b/ckan/i18n/sl/LC_MESSAGES/ckan.po @@ -0,0 +1,5163 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Slovenian (https://www.transifex.com/okfn/teams/11162/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Vir ni na voljo" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nimate dovoljenja za ogled te strani" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Končano" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "V teku" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Pošiljam" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Napaka" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ni še naloženo" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Naloži na DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Napake prenosa:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Napaka:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Nazadnje posodobljeno" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Nikoli" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Dnevnik prenosov" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Podrobnosti" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Konec dnevnika" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "DataStore vir ni na voljo" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Vir \"{0}\" ni na voljo." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Uporabnik {0} nima dovoljenja za posodobitev vira {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN podatkovni API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Dostopaj do podatkov virov preko spletnega API-ja z močno query podporo" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Končne točke" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Do podatkovnega API-ja se lahko dostopa preko naslednjih ukazov iz CKAN API-" +"ja." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Ustvari" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Posodobi / Vnesi" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Pozvedba" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Poizvedba (preko SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Poizvedovanje" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Primer pozvedbe (prvih 5 rezultatov)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Primer poizvedbe (rezultati ki vsebujejo 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Primer poizvedbe (preko SQL stavkov)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Primer: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Preprosta ajax (JSONP) poizvedba na podatkovni API z uporabo jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Primer: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Shrani" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Opis" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Nalaganje..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Podatkovni API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabela" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Nabori podatkov na stran" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testna nastavitev" + +#: ckan/templates/group/read.html:13 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 "Ustreznost" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Naraščajoče po imenih" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Padajoče po imenih" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Nazadnje spremenjeno" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Polje po meri naraščujoče" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Polje po meri padajoče" + +#: ckan/templates/group/read.html:17 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 "Popularno" + +#: 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 "Tekst po meri" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "tekst po meri" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Geslo države" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "tekst vira po meri" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "ta skupina nima opisa" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} naborov podatkov" +msgstr[1] "1 nabor podatkov" +msgstr[2] "2 nabora podatkov" +msgstr[3] "{num} naborov podatkov" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 naborov podatkov" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKANovo orodje za predogled podatkov ima močne zmogljivosti" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Sledilci" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Viri" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Slika" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "url slike" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "npr. http://primer.net/slika.jpg (če prazno, uporabi url vira)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graf" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Zemljevid" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtri" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Odklon vrstic" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "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 "Število vrstic" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "npr: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Tip grafa" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Skupina (os 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serija (os 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Tip polja" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Polje zemljepisne širine" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Polje zemljepisne dolžine" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON polje" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Samodejni zoom na značilnosti" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markerji gruč" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Najvišje ocenjeni nabori podatkov" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Povprečna ocena" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Število ocen" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Ni ocen" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Največje skupine" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Skupina" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Število naborov podatkov" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Ni skupin" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Najvišje oznake" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Ime oznake" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Število naborov podatkov" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Uporabnik" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Menu statistik" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Najbolj urejevani nabori podatkov" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Besedilo" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Spletna stran" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL spletne strani" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "npr. http://primer.net (če prazno uporabi url vira)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Vaš brskalnik ne podpira iframe-ov." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Manjkajoča avtorizacijska funkcija: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administrator" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Urejevalec" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Član" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Za administracijo so potrebne sistemske pravice" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Naslov strani" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Napis strani" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logo strani" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "O strani" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Besedilo o strani" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Uvodno besedilo" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Besedilo na domači strani" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS po meri" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS po meri vstavljen v glavo strani" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Domača stran" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Ni možno izbrisati paketa %s, ker povezana revizija %s vsebuje ne-izbrisane " +"pakete %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem pri odstranitvi revizije %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Odstranitev dokončana" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Ukaz ni implementiran" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Dostop zavrnjen" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Ni na voljo" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Neveljavna zahteva" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Ime ukaza je neznan: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON napaka: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Neuspešna zahteva podatkov: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Skupine ni bilo mogoče najti" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizacije ni bilo mogoče najti" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Nepravilen tip skupine" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizacije" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Skupine" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Oznake" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formati" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licence" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Uporabnik %r nima dovoljenja za urejanje %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nimate dovoljenja za masovne posodobitve" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nimate dovoljenja za ustvarjanje skupin" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Napaka v integriteti" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Uporabnik %r nima dovoljenja za urejanje %s dovoljenj" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nimate dovoljenja za brisanje skupine %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizacija je bila izbrisana" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Skupina je bila izbrisana" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s je bil izbrisan." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nimate dovoljenja za dodajanje članov v skupino: %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nimate dovoljenja za brisanje članov skupine :%s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Član skupine je bil izbrisan." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Pred primerjanjem morate izbrati dve verziji." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Zgodovina revizij CKAN skupine" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nedavne spremembe CKAN skupin: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Dnevniški zapis: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Sedaj sledite {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Prenehali ste slediti {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Nimate dovoljenja za prikaz sledilcev :%s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Stran trenutno ni na voljo. Podatkovna baza ni inicializirana." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Prosim posodobite svoj profil in dodajte vaš email " +"naslov. " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s uporablja vaš email naslov, če želite ponastaviti vaše geslo." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parameter \"{parameter_name}\" ni cela številka" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Podatki niso na voljo" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Nepravilen foramt revizije: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Nimate pravic za branje paketa %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Zgodovina revizij CKAN podatkov" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedavne spremembe CKAN podatkov:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Nimate dovoljenja za ustvarjenje paketa" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Nimate dovoljenja za urejanje tega vira" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Nimate dovoljanje za posodobitev nabora podatkov" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Nabor podatkov {id} ni an voljo" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Dodati morate vsaj en podatkovni vir" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Nimate dovoljenja za ustvarjenje vira" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Nimate dovoljenja za ustvarjanje vira za ta paket" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Ni mogoče dodate paketa v iskalni indeks" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Ni mogoče posodobiti iskalni indeks" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Nabor podatkov je bil izbrisan" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Nimate dovoljenja za izbris paketa %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Vir je bil izbrisan" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Nimate dovoljenja za izbris vira %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Ogled vira ni na voljo" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Podatki o viru niso na voljo" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Prenos podatkov ni na voljo" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Nimate dovoljenja za branje nabora podatkov %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nimate dovoljenja za branje vira %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Nimate dovoljenja za urejanje vira" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Pogled ni na voljo" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Tip pogleda ni na voljo" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Nepravilen zahtevek za pogled vira podatkov" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Vir pogleda ni podan" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Predogled ni definiran" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Uporabnik ne obstaja" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Nimate dovoljenja za registracijo kot uporabnik." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Nimate dovoljenja za ustvarjanje novega uporabnika" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Nimate dovoljenja za brisanje uporabnika z id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Uporabnik ni izbran" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Nimate dovoljenja za urejanje uporabnika %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil posodobljen" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Nimate dovoljenja za ustvarjenje uporabnika %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Napačen Captcha. Prosim poskusite ponovno." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Uporabnik \"%s\" je sedaj registriran, vendar vi ste še vedno prijavljeni " +"kot \"%s\" od prej" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Nimate dovoljenja za urejanje uporabnika" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Vnešeno geslo je napačno" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Staro geslo" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Nepravilno geslo" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Prijava neuspešna. Napačno uporabniško ime ali geslo." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nimate dovoljenja za zahtevo ponastavitve gesla-" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Nimate dovoljenja za ponastavitev gesla." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Nepravilen ključ za ponastavitev. Prosim poskusite ponovno." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Vaše geslo je bilo ponastavljeno." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Vaše geslo mora vsebovat vsaj 4 znake-" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Vnešeni gesli se ne ujemata." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Morate vnesti geslo" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Predmet za sledenje ni na voljo" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} ni na voljo" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Vse" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Preglej" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "V tem trenutku" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bajtov" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Neznano" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Neimenovan vir" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nov nabor podatkov ustvarjen" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Viri urejeni." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Nastavitve urejene." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "Ni ogledov" +msgstr[1] "En ogled" +msgstr[2] "Dva ogleda" +msgstr[3] "{number} ogledov" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "Ni nedavnih ogledov" +msgstr[1] "1 nedaven ogled" +msgstr[2] "2 nedavna ogleda" +msgstr[3] "{number} nedavnih ogledov" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Email naslov prejemnika ni na voljo" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizacija" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "skupine" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Manjkajoča vrednost" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Vnosno polje %(name)s ni bilo pričakovano" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Prosimo vnesite celo številsko vrednost" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paketni vir(i) neustrezni" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Dodatno" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Slovar oznak \"%s\" ne obstaja" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Nabor podatkov" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Ni bilo mogoče prebrati kot ustrezen JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizacija ne obstaja" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Ne morete dodati nabora podatkov k tej organizaciji" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Neustrezna celoštevilska vrednost" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Mora biti naravno število" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Mora biti pozitivna celoštevilska vrednost" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Neustrezen format datuma" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Dnevniški zapis ne sme vsebovati povezav." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Nabor podatkov s tem id-jem že obstaja" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Vir" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "To ime skupine ali ID ne obstaja." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tip aktivnosti" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Imena morajo biti nizi" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "To ime se ne more uporabiti" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Mora biti dolgo vsaj %s znakov" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Ime more biti največ %i znakov dolgo" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Mora biti samo z malimi črkami alfanumeričnih (ascii) znakov in simbolov: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Ta URL je že v uporabi" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Dolžina imena \"%s\" je manjša od minimuma %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Dolžina imena \"%s\" je večja od maksimuma %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "verzija mora biti največ %i znakov dolga" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Podvojen ključ \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Skupina s tem imenom že obstaja v podatkovni bazi" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Dolžina oznake \"%s\" je manjša od minimuma %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Dolžina oznake \"%s\" je večja od maksimuma %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Oznaka \"%s\" mora biti iz alfanumeričnih znakov ali simbolov: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Oznaka \"%s\" ne sme imeti velikih črk" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Uporabniška imena morajo biti nizi" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "To uporabniško ime ni na voljo" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Prosimo vnesite obe gesli" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Gesli morata biti niza" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Vnešeni gesli se ne ujemata" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Urejanje ni dovoljeno, ker izgleda kot spam. Prosim izogibajte se povezav v " +"vašem opisu." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Ime mora biti dolgo vsaj %s znakov" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "To ime je že uporabljeno v slovarju" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Ni mogoče spremeniti vrednosti ključa iz %s v %s. Ta ključ je namenjen samo " +"branju" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Slovar oznak ni na voljo." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Oznaka %s ne pripada slovarju %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Ni imena oznake" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Oznaka %s že pripada slovarju %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Prosim podajte ustrezen URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "vloga ne obstaja." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Nabori podatkov brez organizacij ne morejo biti zasebni." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Ni seznam" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Ni niz" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ta starš bi naredil krog v hierarhiji" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" in \"filter_values\" morata imeti podobni dolžini" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" je nujen ko je \"filter_values\" izpolnjen" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" je nujen ko je \"filter_fields\" izpolnjen" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Polje sheme z istim imenom že obstaja" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Manjkajoča vrednost" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Poskušanje ustvarjanja organizacije kot skupine" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Navesti morate identifikator ali ime paketa (parameter \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Navesti morate oceno (parameter \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Ocena mora biti celoštevilska vrednost." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Ocena mora biti med %i in %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Za sledenje uporabnikom morate biti prijavljeni" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Ne morete slediti samemu sebi" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Vi že sledite {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Če želite slediti naboru podatkov morate biti prijavljeni." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Uporabnik {username} ne obstaja." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Za sledenje skupini morate biti prijavljeni." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id ni v podatkih" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Ni možno najti slovarja \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Ni bilo možno najti oznake \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Za prekinitev sledenja se je potrebno prijaviti." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Ne sledite {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Vir ni na voljo." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Ne navedite, če uporabljate \"query\" parameter" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Morajo biti : pari" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Polje \"{field}\" ni prepoznano v resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Paket ni na voljo." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus ni na voljo." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizacija ni na voljo." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Uporabnik %s nima dovoljenja za ustvarjanje paketov" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Uporabnik %s nima dovoljenja za urejanje teh skupin" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Uporabnik %s nima dovoljenja za dodajanje naborov podatkov k tej " +"organizaciji" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Id nabora podatkov niste podali, ni možno preveriti avtentikacije." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "Paketa za ta vir ni na voljo, ni možno preveriti avtentikacije." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Uporabnik %s nima dovoljenja za ustvarjenje vira na naboru podatkov %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Uporabnik %s nima dovoljenja za urejanje teh paketov" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Uporabnik %s nima dovoljenja za ustvarjanje skupin" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Uporabnik %s nima dovoljenja za ustvarjanje organizacij" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Uporabnik {user} nima dovoljenja za ustvarjanje uporabnikov preko API-ja" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ni dovoljenja za ustvarjanje uporabnikov" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Skupina ne obstaja." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Uporabnik %s nima dovoljenja za dodajanje članov" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje skupine %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Uporabnik %s nima dovoljenja za brisanje vira %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Pogled vira ni an voljo, ni možno preveriti avtentikacije." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Uporabnik %s nima dovoljenja za brisanje relacije %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Uporabnik %s nima dovoljenja za brisanje skupin" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Uporabnik %s nima dovoljenja za brisanje skupine %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Uporabnik %s nima dovoljenja za brisanje organizacij" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Uporabnik %s nima dovoljenja za brisanje organizacije %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Uporabnik %s nima dovoljenja za brisanje task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Nimate dovoljenja" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Uporabnik %s nima dovoljenja za branje teh paketov" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Uporabnik %s nima dovoljenja za branje paketa %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Uporabnik %s nima dovoljenja za branje vira %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Uporabnik %s nima dovoljenja za branje skupine %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Za dostop do digitalne delovne mize morate biti prijavljeni." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje paketa %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje vira %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanja paketa %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Uporabnik %s nima dovoljenja za urjanje organizacije %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanja skupine %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje dovoljenj skupine %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Za urejanje uporabnika morate biti prijavljeni" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Uporabnik %s nima dovoljenja za urejanje uporabnika %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Uporabnik {0} nima dovoljenja za posodobitev uporabnika {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Uporabnik %s nima dovoljenja za spremembo stanje revizija" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Uporabnik %s nima dovoljenja za posodobitev task_status tabele" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Uporabnik %s nima dovoljenja za posodobitev term_translation tabele" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licenca ni določena" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Drugo (odprto)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Drugo (javna domena)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Drugo (pripis)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Drugo (ne-komercialno)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Drugo (ni odprto)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "odvisen od %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "je odvisnost za %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "izhaja iz %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "ima predelavo %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "vodi k %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "vodi od %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "je naslednik %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "je predhodnik %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "je soroden %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Ni na voljo API podatkov za ta vir" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Nalaganje podatkov o API informacijah ni uspelo" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Začnite tipkati…" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Ni zadetkov" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Na tem obrazcu so neshranjene spremembe" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Prosim potrdite dejanje" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Ste prepričani da želite izvesti to dejanje?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Potrdi" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Prekliči" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Prenehaj slediti" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Sledi" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Poveži" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Povezava na URL na internetu (lahko tudi povezava na API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Naloži" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Odstrani" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Naložite datoteko z vašega računalnika" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Datoteka" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Shrani naročilo" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Shranjujem..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Naloži datoteko" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Prišlo je do napake" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Ni možno naložiti datoteke" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Prenosa ni mogoče avtenticirati" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Vir naložen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Podatkov za preneseno datoteko ni mogoč pridobiti" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Trenutno prenašate datoteko. Ste prepričani da se želite preusmeriti drugam " +"in prekiniti ta prenos?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Dodaj filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Uredi" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Pokaži več" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Skrij" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Napaka %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "O {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Portal omogoča CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Nastavitve skrbnika sistema" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Poglej profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Delovna deska ima (%(num)d novih predmetov)" +msgstr[1] "Delovna deska ima (%(num)d novi predmet)" +msgstr[2] "Delovna deska ima (%(num)d nova predmeta)" +msgstr[3] "Delovna deska ima (%(num)d novih predmetov" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Digitalna delovna deska" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Odjava" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Prijava" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registracija" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Nabori podatkov" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Preišči nabore podatkov" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Išči" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Preskoči na vsebino" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Naloži manj" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Naloži več" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ni aktivnosti v tem toku aktivnosti" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administracija" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Skrbniki sistema" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Nastavitve" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Smeti" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Ste prepričani da želite ponastaviti nastavitve?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Ponastavi" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Posodobi nastavitve" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN nastavitve" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Naslov strani: To je naslov te CKAN instance Pojavi se " +"na različnih mestih po CKANu.

Stil: Izberite s " +"seznama preprostih variacij glavne barvne sheme za hitro menjavo teme.

" +"

Logo strani: Ta logo se pojavi v glavi vseh osnutkov the" +" CKAN instance.

O strani: Ta tekst se pojavi na O strani te CKAN instance

Intro " +"Tekst: Ta tekst se pojavi na domači " +"strani te CKAN instance kot pozdrav obiskovalcem.

Lasten " +"CSS: Ta blok CSS-a se pojave v <glavi> vsake " +"strani. Če želite bolj spremeniti podobo te strani , potem priporoačmo da " +"preberete dokumentacijo.

" +"

Domača stran: To je za izbiranje vnaprej določenih " +"osnutkov za module, ki se pojavijo na domači strani.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Potrdi ponastavitev" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administriraj CKAN" + +#: 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 "" +"

Kot skrbnik sistema imaš poln nadzor nad to CKAN instanco. Nadaljuj " +"skrbno!

Za nasvete o uporabi skrbniških natavitev, si poglej CKAN skrbniška navodila

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Potrdi izbris" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Očisti" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Trenutno ni možen predogled vira." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klikni za več informacij." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Prenesi vir" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Predolged ni na voljo." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Več podrobnosti..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Upravljalec za podatkovni tip %(type)s ni definiran." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardni vhod" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Srednji" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Srednje obsežni vhod" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Polno" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Polno obsežni vhod" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Velik" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Velik vhod" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Predpni" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Predpni vhod" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Polje po meri (prazno)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Polje po meri" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Označevanje" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Tekstovno polje" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Izberi" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Tok aktivnosti" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "Administratorji" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Dodaj skupino" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Obrazec za skupino" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Ali ste prepričani, da želite izbrisat skupino - {name}?" + +#: ckan/templates/group/confirm_delete_member.html:11 +#: ckan/templates/organization/confirm_delete_member.html:11 +msgid "Are you sure you want to delete member - {name}?" +msgstr "Ali ste prepričani, da želite izbrisati člana - {name}?" + +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 +#: ckan/templates/group/edit_base.html:11 +#: ckan/templates/group/read_base.html:12 +#: ckan/templates/organization/edit_base.html:11 +#: ckan/templates/organization/read_base.html:12 +#: ckan/templates/package/read_base.html:15 +#: 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 "Oskrbi" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Uredi skupino" + +#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "Člani" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Dodaj skupno" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Išči po skupinah..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Trenutno ni skupin za to stran" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Ali bi naredili novo?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Nazaj na vse člane" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/organization/member_new.html:7 +#: ckan/templates/organization/member_new.html:12 +msgid "Edit Member" +msgstr "Uredi člana" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Dodaj člana" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Obstoječi član" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Če želite dodati obstoječega člana, poiščite njihovo uporabniško ime spodaj." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ali" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Nov uporabnik" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Če želite povabiti novega člana, vnesite njihov email naslov." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Vloga" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Ste preprićani da želite izbrisati tega člana?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Izbriši" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Kaj so vloge?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Skrbnik: Lahko ureja informacijo o skupini, kot tudi " +"upravlja s člani organizacije.

Član: Lahko " +"doda/odstrani nabore podatkov iz skupin

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Ustvari skupino" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Posodobi skupino" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Ustvari skupino" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Preišči nabore podatkov..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Nabori podatkov v skupini: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Ime" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Moja skupina" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Nekaj informacij o moji skupini..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Ste prepričani, da želite izbrisati to skupino?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Shrani skupino" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Pogled {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Izbriši nabor podatkov iz te skupine" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Kaj so skupine?" + +#: 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 skupine lahko uporabite za ustvarjanje in upravljanje zbirk naborov " +"podatkov. To so lahko katalogi naborov podatkov za določen projekt ali " +"ekipo, ali za določeno tematiko, ali kot preprost način da drugi ljudje " +"najdejo in uporabijo vaše objavljene nabore podatkov. " + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Izbrisano" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "preberi več" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Dobrodošli" + +#: 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 je vodilna odprto-kodna platforma za podatkovne portale na " +"svetu.

CKAN je popolnoma 'out-of-the-box' rešitev, ki naredi podatke " +"dostopne in uporabne – tako da ponudi orodja za preprosto objavo, izmenjavo," +" iskanje in uporabo podatkov (vključno s shrambo podatkov in ponudbo " +"robustnih podatkovnih API-jev). CKAN je namenjen objavljalcem podatkov " +"(državne in regionalne uprave, podjetja in organizacije), ki želijo narediti" +" svoje podatke odprte in dostopne.

CKAN uporabljajo državne vlade ter" +" uporabniške skupine po celem svetu in tudi omogoča številne portale uradnim" +" in skupnostnim skupinam, kot tudi portale za lokalne, državne, in " +"mednarodne vlade, kot je npr. za Združeno kraljestvo data.gov.uk za Evropsko unijo publicdata.eu, za Brazilski dados.gov.br, Nizozemski vladni portal, " +"kot tudi za mesta in občine v ZDA, združenem kraljestvu, Argentini, Finski " +"in še drugod.

CKAN: http://ckan.org/
CKAN Ogled: http://ckan.org/tour/
Lastnosti " +"overview: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Dobrodošli na CKAN" + +#: ckan/templates/home/snippets/promoted.html:10 +msgid "" +"This is a nice introductory paragraph about CKAN or the site in general. We " +"don't have any copy to go here yet but soon we will" +msgstr "" +"To je preprost vstopni paragraf o CKAN-u in o tej strani na splošno.Ustrezne" +" kopije za tu še ni na voljo, vendar bo kmalu" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "To je posebna sekcija" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "Npr. okolje" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Preišči podatke" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Popularne oznake" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistike" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "nabor podatkov" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "nabori podatkov" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizacije" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "skupine" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "To polje je nujno" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Uporabite lahko Markdown formatiranje teksta" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vrednost" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Po meri" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Ta obrazec vsebuje neveljavne vnose:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Nujno polje" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL slike" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Počisti prenos" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Obrazec za organizacije" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Uredi nabore podatke" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr " najdeno za \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Ni na voljo naborov podatkov za \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Naredi javno" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Naredi zasebno" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Osnutek" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Zasebno" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Ta organizacija nima naborov podatkov" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Ste prepričani da želite izbrisati organizacijo - {name}?" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "Uredi organizacijo" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Dodaj organizacijo" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Preišči organizacije..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Trenutno ni na voljo organizacij na tej strani" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Uporabniško ime" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email naslov" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Posodobi člana" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Skrbnik: Lahko doda/uredi in izbriše nabore podatkov, " +"kot tudi upravlja s člani organizacije.

Urejevalec: " +"Lahko doda in uredi nabore poadtkov, tuda ne more upravljati s člani " +"organizacije.

Član: Lahko vidi zasebne nabore " +"podatkov organizacije, vendar ne more dodati novih naborov podatkov.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Ustvarite organizacijo" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Posodobite organizacijo" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Ustvarite organizacijo" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Nabori podatkov v organizaciji: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Kaj so organizacije?" + +#: 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 "" +"

Organizations delujejo kot oddelki za izdajanje naborov podatkov (npr. " +"oddelek za zdravstvo). To pomeni da se lahko nabori podatkov izdajo in " +"pripadajo oddelku namesto posamezenm uporabniku.

Skrbniki lahko " +"določijo vloge in omogočijo članom znotraj organizacije, da lahko objavijo " +"nabore podatkov njihove organizacije (npr. Urad za državno statistiko).

" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +"CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending " +"on their level of authorisation to create, edit and publish." +msgstr "" +" CKAN organizacije se uporabljajo da ustvarijo, upravljajo in izdajajo " +"zbrike naborov podatkov. Uporabniki lahko imajo različne vloge znotraj " +"organizacije, glede na njihovo raven avtorizacije za ustvarjanje, urejanje " +"in izdajanje podatkov. " + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Moja organizacija" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Nekaj informacij o moji organizaciji..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Shrani organizacijo" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Poglej {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Ustvari nabor podatkov" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Kaj so nabori podatkov?" + +#: ckan/templates/package/base_form_page.html:25 +msgid "" +"A CKAN Dataset is a collection of data resources (such as files), together " +"with a description and other information, at a fixed URL. Datasets are what " +"users see when searching for data." +msgstr "" +" CKAN nabor podatkov je zbirka podatkovnih virov (npr. datotek), z opisom in" +" drugimi informaciji, na stalnem URL naslovu. Nabore podatkov vidijo " +"uporabniki ko iščejo podatke. " + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Spremembe" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ste prepričani da želite izbrisati nabor podatkov - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ste prepričani da želite izbrisati vir - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Poglej nabor podatkov" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Uredi nabor podatkov" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Uredi pogled" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Predogled" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Posodobi" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Naveži to skupino s tem naborom podatkov" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Dodaj k skupini" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "K temu naboru podatkov ni navezane skupine" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Posodobi nabor podatkov" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Dodaj podatke k naboru podatkov" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Dodaj nov vir" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Dodaj vir" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nov vir" + +#: ckan/templates/package/new_view.html:3 +#: ckan/templates/package/new_view.html:4 +#: ckan/templates/package/new_view.html:8 +#: ckan/templates/package/new_view.html:12 +msgid "Add view" +msgstr "Dodaj pogled" + +#: 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 "" +" Data Explorer pogledi so lahko počasni in nezanesljivi, razen če je " +"omogočena DataStore razširitev. Za več informacij, prosim poglejte Data Explorer " +"dokumentacijo. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Dodaj" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Vsi viri" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Poglej vir" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Uredi vir" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Pogledi" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API končna točka" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Pojdi na vir" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Prenos" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Izvor: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Ni še narejenih pogledov za ta vir." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Nimate na voljo pogledov, ki ste jih pričakovali?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Tukajje nekaj razlogov zakaj se ti pogledi ne prikazujejo:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Za ta vir še ni bil ustvarjen ustrezen pogled" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Skrbniki sistema mogoče niso omogočili vtičnikov za ustrezne poglede" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Če pogled potrebuje DataStore, lahko da njegov vtičnik ni vključen , ali " +"podatki še niso na voljo v DataStore, ali pa DataStore še ni dokončal s " +"procesiranjem podatkov" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Dodatne informacije" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Polje" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "neznano" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Ustvarjeno" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licenca" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Nov pogled" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Ta vir nima pogledov" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Dodaj nov vir" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Ta nabor podatkov nima podatkov, zakaj jih ne bi nekaj dodali?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API dokumentacija" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "poln {format} izpis" + +#: ckan/templates/package/search.html:56 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s) or download a %(dump_link)s." +msgstr "" +" Do tega registra lahko dostopate tudi z %(api_link)s (poglejte " +"%(api_doc_link)s) ali prenesite %(dump_link)s. " + +#: ckan/templates/package/search.html:60 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" +" Do tega registra lahko dostopate tudi z %(api_link)s (poglejte " +"%(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Vsi pogledi" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Pogled pogled" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Predogled pogleda" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Dodatne informacije" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Izvor" + +#: 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 +msgid "Author" +msgstr "Avtor" + +#: 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 "Skrbnik" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Različica" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stanje" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Nazadnje posodobljeno" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Naslov" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "npr. Opisni naslov" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "npr. moj-nabor-podatkov" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "npr. Nekaj uporabnih zapiskov o podatkih" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "npr. ekonomija, duševno zdravje, državna vlada" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +" Definicije licenc in dodatne informacije lahko najdete na opendefinition.org " + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizacija" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Ni organizacij" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Vidnost" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Javno" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktivno" + +#: 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 "" +"Licenca ki ste jo izbrali zgoraj se nanaša samo na vsebino " +"virov/datotek, ki ste jih dodali k temu naboru podatkov. Ob predložitvi tega" +" obrazca, se strinjate z objavo meta podatkov, ki ste jih vnesli v " +"obrazec pod Open " +"Database License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Ste prepričani da želite izbrisati ta nabor podatkov?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Naslednje: Dodaj podatke" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Janez Novak" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email avtorja" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +#: ckan/templates/user/new_user_form.html:7 +msgid "joe@example.com" +msgstr "janez@novak.sem" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email skrbnika" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Posodobi vir" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "npr. Cene zlata Januar 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Nekaj uporabnih zapiskov o podatkih" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "npr. CSV, XML ali JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Format bo samodejno zaznan. Lahko pustite prazno če želite." + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "npr. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Velikost datoteke" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "npr. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME tip" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "npr. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Ste prepričani da želite izbrisati ta vir?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Prejšnji" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Shrani & dodaj novega" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Končaj" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Kaj je vir?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Vir je lahko vsaka datoteka ali povezava na datoteko, ki vsebuje uporabne " +"podatke." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Razišči" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Več informacij" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Vključi" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Ta pogled vira trenutno ni na voljo." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Vključi pogled vira" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Vključitveno kodo lahko kopirate in prilepite v CMS ali blog software, ki " +"podpira surov HTML zapis" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Širina" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Višina" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Koda" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Predogled vira" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Podatki in viri" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Ta nabor podatkov nima podatkov" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Ustvari nabor podatkov" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Dodaj podatke" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "npr. Moj pogled" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "npr. Informacije o mojem pogledu" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Odstrani filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Kaj je pogled?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "Pogled je reprezentacija podatkov z ozirom na vir" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Dodaj nabor podatkov" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher stanje: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Prikaži več {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Prikaži samo popularne {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Ni {facet_type} ki ustrezajo tem iskalnim pogojem" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Domov" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Jezik" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Pojdi" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Licenca ni izbrana" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ta nabor podatkov ustreza the Open Definition" + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Ni opisa za to organizacijo" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ta nabor podatkov nima opisa" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Uredi po" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filtriraj rezultate" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Poskusite drugačno iskanje.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "Ni najdenih naborov podatkov" +msgstr[1] "{number} nabor podatkov najden za \"{query}\"" +msgstr[2] "{number} nabora podatkov najdena za \"{query}\"" +msgstr[3] "{number} naborov podatkov najdenih za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Za poizvedbo \"{query}\" ni bilo najdenih naborov podatkov" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "Ni najdenih naborov podatkov." +msgstr[1] "{number} nabor podatkov najden" +msgstr[2] "{number} nabora podatkov najdena" +msgstr[3] "{number} naborov podatkov najdenih" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Ni najdenih naborov podatkov" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} skupin najdenih za \"{query}\"" +msgstr[1] "{number} skupina najdena za \"{query}\"" +msgstr[2] "{number} skupini najdeni za \"{query}\"" +msgstr[3] "{number} skupin najdenih za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Ni najdenih skupin za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "Ni najdenih skupin" +msgstr[1] "{number} najdena skupina" +msgstr[2] "{number} najdeni skupini" +msgstr[3] "{number} najdenih skupin" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Ni najdenih skupin" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organizacij najdenih za \"{query}\"" +msgstr[1] "{number} organizacija najdena za \"{query}\"" +msgstr[2] "{number} organizaciji najdeni za \"{query}\"" +msgstr[3] "{number} organizacij najdenih za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Ni najdenih organizacij za \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} najdenih organizacij" +msgstr[1] "{number} najdena organizacija" +msgstr[2] "{number} najdeni organizaciji" +msgstr[3] "{number} najdenih organizacij" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Ni najdenih organizacij" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Socialno" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Naroči" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} je dodal oznako {tag} k naboru podatkov {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} je posodobil skupino {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} je posodobil organizacijo {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} je posodobil nabor podatkov {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} je posodobil vir {resource} nabora podatkov {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} je posodobil svoj profil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} je izbrisal skupino {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} je izbrisal organizacijo {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} je izbrisal nabor podatkov {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} je izbrisal vir {resource} nabora podatkov {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} je začel slediti {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} je začel slediti {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} je začel slediti {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} je ustvaril skupino {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} je ustvaril organizacijo {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} je ustvaril nabor podatkov {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} je dodal vir {resource} naboru podatkov {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} se je prijavil" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} je odstranil oznako {tag} naboru podatkov {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Iskalne oznake" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Vir novic" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Moji nabori podatkov" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Moje organizacije" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Moje skupine" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivnosti predmetov, ki jim sledim" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Niste ustvarili še nobenih naborov podatkov." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Ustvarim enega zdaj?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Niste član nobenih skupin." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Niste član nobenih organizacij." + +#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 +#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 +#: ckan/templates/user/snippets/user_search.html:2 +msgid "Users" +msgstr "Uporabniki" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Informacije o računu" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +" Vaš profil omogoča durgim CKAN uporabnikom, da spoznajo kdo ste in s čim se" +" ukvarjate. " + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "spremenite podrobnosti" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Polno ime" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "npr. Janez Novak" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "npr. janez@novak.sem" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Nekaj informacij o meni" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Prijavi se na notifikacijske emaile" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Spremeni geslo" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Geslo" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Potrdi geslo" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Ste prepričani da želite izbrisati uporabnika?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ste prepričani da želite obnoviti vaš API ključ?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Obnovi API ključ" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Posodobi profil" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Vsi uporabniki" + +#: 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 "Prijava" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Potrebujete račun?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Potem se kar prijavite, to vam vzame le minuto." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Ustvarite račun" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Ste pozabili svoje geslo?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "Ni problema, uporabite naš obrazec za ponastavitev gesla" + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Ste pozabili svoje geslo?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Odjavljen" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Sedaj ste odjavljeni." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ste že prijavljeni kot {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Odjava" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Zapomni se me" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Ste že prijavljeni" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Morate se najprej odjaviti, da se lahko prijavite z drugim računom." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Odjavi se zdaj" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registracija" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Registrirajte se za račun" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Zakaj se registrirati?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Ustvarite nabore podatkov, skupine in druge zanimive stvari" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "uporabniško ime" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Polno ime" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Ustvari račun" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Ponastavi geslo" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Ponastavitev gesla" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Psodobi geslo" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Kako to deluje?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Samo vnesite novo geslo in vam bomo posodobili račun" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Uporabnik še ni ustvaril nobenih naborov podatkov." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Niste še oddali biografije." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Ta uporabnik nima biografije." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Odprti ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "To pomeni, da to lahko vidite samo vi" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Član od" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API ključ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Ponastavite geslo" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivnost od:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Preiskovanje seznama..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Ne sledite ničemur" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Ni sledilcev" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Preišči uporabnike" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Preusmeritev na zunanjo stran ni dovoljena." diff --git a/ckan/i18n/sq/LC_MESSAGES/ckan.po b/ckan/i18n/sq/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..76d52f5c4d8 --- /dev/null +++ b/ckan/i18n/sq/LC_MESSAGES/ckan.po @@ -0,0 +1,5124 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Albanian (https://www.transifex.com/okfn/teams/11162/sq/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sq\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Burimi nuk u gjet" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nuk jeni i autorizuar për të parë këtë faqe" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Ka përfunduar" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Në pritje" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Duke u dorëzuar" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Gabim" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ende nuk është ngarkuar" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Ngarko në DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Gabim në ngarkim:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Gabim:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Statusi" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Ndryshimi i fundit" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Asnjëherë" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Ngarkoni log-un" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detajet" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Fundi i llogarisë" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Burimi i depove të të dhënave nuk u gjet" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Burimi \"{0}\" nuk u gjet." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj burimin {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN API i të dhënave" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Qasu në burimin e të dhënave përmes API të uebfaqes me mbështetje të " +"fuqishme të kërkesës" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Pika të fundit" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"API i të dhënave mund të qaset përmes veprimeve në vijim të API-s të " +"veprimit të CKAN-it" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Krijo" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Përditso / shto" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Kërkesa" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Kërkesa(përmes SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Kërkimi" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Shembull i kërkesës (5 rezultatet e para)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Shembull i kërkesës (rezultatet që përmbajnë 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Shembull i kërkesës (përmes SQL shprehjës)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Shembull: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Një AJAX kërkesë (JSONP) në API e të dhënave duke përdorur jQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Shembull: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Ruaj" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Përshkrimi" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Duke u ngarkuar..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API i të dhënave" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tabela" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Seti i të dhënave për faqe" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testo conf" + +#: ckan/templates/group/read.html:13 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 "Ndërlidhja" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Renditje rritëse" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Renditje zbritëse" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "U ndryshua për herë të fundit" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Fusha e kustomizuar rritëse" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Fusha e kustomizuar zvogëluese" + +#: ckan/templates/group/read.html:17 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 "Popullarizuar" + +#: 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 "Teksti i kustomizuar" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "teksti i kustomizuar" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Kodi i vendit" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "teksti burimor i kustomizuar" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Ky grup nuk ka përshkrim" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 sete të të dhënave" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"Mjeti i CKAN për rishikimin e të dhënave ka shumë karakteristika të fuqishme" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Ndjekësit" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Burime" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Figurë" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Url e imazhit" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"p.sh. http://example.com/image.jpg (nëse vendi bosh përdor url-në e burimit)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Të dhënat eksploruese" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafi" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Harta" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filterët" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Rresht i mënjanuar" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "p.sh: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Numri i rreshtave" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "p.sh.: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Lloji i grafit" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupi (boshti 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Seritë (boshti 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Lloji i fushës" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Fusha e gjerësisë" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Fusha e gjatësisë" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Fusha GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Zmadhim automatik tek tiparet" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Tregjet thërrmuese" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Të dhënat më të vlerësuara" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Mesatarja" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Numri i vlerësimeve" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Nuk ka vlerësime" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Grupet më të mëdha" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grup" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Numri i të dhënave" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Nuk ka grupe" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Togfjalëshat kryesorë" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Emri i etiketës" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Numri i setit të të dhënave" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Përdorues" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Mënyja e statistikave" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Të dhënat më të modifikuara" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Teksti" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Uebfaqja" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Url e uebfaqes" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "p.sh. http://example.com (nëse vendi bosh përdorë url-në e burimit)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Shfletuesi juaj nuk i përkrah iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funksioni i autorizimit nuk u gjet:%s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Administratori" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaktori" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Anëtar" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Duhesh me qenë administrator i sistemit për të administruar" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Titulli faqes" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stilizimi" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Etiketat e faqës" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Etiketa e logos së faqës" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Rreth nesh" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Teksti i faqes Rreth nesh" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Teksti hyrës" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Teksti në ballinë" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Kostumizo CSS-in" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Ne kreun e faqes u shtua css is kostumizuar" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Ballina" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Nuk mund të largohet paketa %s si version i lidhur i %s, perfshirë %s " +"paketat të cilat nuk janë fshirë." + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem në largimin e versionit %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Largimi u kompletua" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Veprimi nuk u përfundua." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Ndalohet qasja" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nuk u gjet" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Kërkesë e gabuar" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Emri i veprimit nuk është i njohur:%s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Gabim në JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Kërkesë e gabuar e të dhënave: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupi nuk u gjet" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizata nuk u gjet" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Tip i gabuar i grupimit" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizatat" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupe" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiketat" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatet" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licencat" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Nuk jeni i autorizuar të kryeni bulk ndryshime" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "I paautorizuar për të krijuar një grup" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Gabim i brendshëm" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Përdoruesi %r nuk është i autorizuar të modifikojë autorizimet %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Nuk jeni i autorizuar për të fshirë grupin %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizata është fshirë." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Grupi është fshirë." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s është fshirë." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Nuk jeni i autorizuar për të shtuar anëtar në grupin %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Nuk jeni i autorizuar për të fshirë anëtar në grupin %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Anëtari i grupit është fshirë." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Zgjidhni dy versione para se të bëni krahasimin" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Historia e versioneve" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Ndryshimet e fundit te CKAN Grupi:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Mesazhet e log:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Tani po ndiqni {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Më nuk ndiqni {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Të paautorizuar për të shikuar ndjekësit %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Kjo faqe është aktualisht off-line. Baza e të dhënave nuk është ndezur." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Ju lutem ndryshoni profilin tuaj, si dhe shtoni email " +"adresën " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s përdor email adresën tuaj nëse ju nevojitet ndryshimi i fjalëkalimit." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametri \"{parameter_name}\" nuk është një numër i plotë." + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Seti i të dhënave nuk u gjet" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Format rishikimi i pavlefshëm :%r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "I paautorizuar të lexoni paketën %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Historiku i ndryshimeve të setit të dhënave të CKAN-it" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Ndryshimet e fundit në setin e të dhënave të CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "I paautorizuar të krijoni një paketë" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Të paautorizuar për t'a redaktuar këtë burim" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Të paautorizuar të ndryshoni setin e të dhënave" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Seti i të dhënave {id} nuk u gjet" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Duhet të shtoni të paktën nj burim të të dhënave" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Të paautorizuar për të krijuar një burim" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Të paautorizuar të krijoni një burim për këtë paketë" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "E pamundur të shtoni paketën për të kërkuar indeksin" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "E pamundur të ndryshoni indeksin e kërkimit." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Seti i të dhënave është fshirë." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "I paautorizuar për të fshirë paketën %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Burimi është fshirë." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Të paautorizuar për të fshirë burimin %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Faqja burimore nuk u gjet" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Të dhënat burimore nuk u gjetën" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Asnjë shkarkim nuk është në dispozicion" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Të paautorizuar të lexoni setin e të dhënave %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Të paautorizuar të lexoni burimin %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Të paautorizuar të redaktoni burimin" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Pamja nuk u gjet" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Lloji i Pamjës nuk u gjet" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Burim i gabuar i shikimit të të dhënave" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Faqja burimore nuk u dha" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Nuk u përcaktua asnjë parapamje" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Përdoruesi nuk u gjet" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Jeni të paautorizuar të regjistroheni si përdorues" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Jeni të paautorizuar për të krijuar një përdorues" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Të paautorizuar për të fshirë përdoruesin me id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Asnjë përdorues i përcaktuar" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Të paautorizuar për të redaktuar %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profili u përditsua" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Të paautorizuar për të krijuar përdoruesin %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha keqe. Ju lutem provoni përsëri." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Përdoruesi \"%s\" është i regjistruar tani, mirëpo ju jeni ende të kyçur si " +"\"%s\", nga më parë" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Të paautorizuar për të redaktuar përdoruesin" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Fjalëkalimi i dhënë është gabim" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Fjalëkalimi i vjetër" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Fjalëkalimi gabim" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Kycja dështoi. Emri përdoruesit ose fjalëkalimi gabim." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Nuk jeni i autorizuar për t'a kërkuar ndrrimin e fjalëkalimit. " + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Nuk jeni i autorizuar për t'a ndërruar fjalëkalimin. " + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Kod i gabuar rigjenerimi. Ju lutem provoni përsëri." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Fjalëkalimi juaj është rigjeneruar" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Fjalëkalimi juaj duhet të jetë 4 shkronja ose më i gjatë." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Fjalëkalimet nuk përputhen." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Duhet të jepni një fjalëkalim" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Artikulli Ndjek nuk u gjet" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nuk u gjet" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Gjithçka" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Shikoni" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Tani" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bajta" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "I panjohur" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Burim i pa emëruar" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "U krijua seti i ri i të dhënave" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Redakto burimet." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Redakto cilësimet" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Asnjë adresë elektronike marrëse në dispozicion!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizata" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grup" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Vlera mungon" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Fusha hyrëse %(name)s nuk pritej." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Ju lutem vendosni një vlerë të plotë" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paketa e burimit(eve) e pavlefshme" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Ekstra" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Fjali i etiketës \"%s\" nuk ekziston" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Të dhëna" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Nuk mund të konvertoj si JSON valid" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organizata nuk ekziston" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Nuk mund të shtoni set të të dhënave në këtë organizatë" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Numër i plotë i pavlefshëm" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Duhet të jetë një numër natyror" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Duhet të jetë një numër i plotë pozitiv" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Formati i datës është gabim" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Nuk lejohen linke në messazhet log" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Seti i të dhënave tashmë ekziston" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Burimi" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Emri i tillë i grupit ose ID-s nuk ekziston." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Lloji aktivitetit" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Emrat duhet të jenë në fjalë" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Ky emër nuk mund të përdoret" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Duhet të jetë së paku %s karaktere i gjatë" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Emri duhet të jetë një maksimum prej %i karaktere i gjatë" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Duhet të jenë karaktere aflanumerike të vogla (ascii) dhe këto simbole: -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Ky URL është tashmë në përdorim" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Gjatësia e emrit \"%s\" është më pak se minimumi %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Gjatësia e emrit \"%s\" është më shumë se maksimumi %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Versioni duhet të jetë një maksimum prej %i karaktere të gjatë" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Celës i dyfishuar \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Ky emër grupi gjendet në databazë" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Gjatësia e termit \"%s\" është më e shkurtër se minimumi %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Gjatësia e etiketës \"%s\" është më shumë se maksimumi %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Termi \"%s\" duhet të jetë shkronjë ose një nga simbolet: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Termi \"%s\" nuk duhet të jetë me shkronja të mëdha" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Emri përoruesit duhet të jet me fjalë" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Emri i pëdoruesit nuk është në dispozicion." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Ju lutem jepni dy fjalëkalimet" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Fjalëkalimet duhet të jenë vargje" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Fjalëkalimi i dhënë nuk përputhet" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Redaktimi nuk lejohet sepse duket si spam. Ju lutem shmangni linqet në " +"pëshkrimin tuaj." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Emri duhet të jetë të paktën %s karaktere" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Ai emër i fjalorit është tashmë në përdorim. " + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Nuk mund të ndryshojë vlerën e çelësit nga nga %s në %s. Ky çelës është " +"vetëm për lexim" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Etiketa e fjalorit nuk u gjet." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Etiketa %s nuk i takon fjalorit %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nuk emër të etiketës" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Etiketa %s tashmë i takon fjalorit %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Ju lutem jepni një URL valid" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Roli nuk ekziston" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Setet e të dhënave pa organizim nuk mund të jenë private." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Nuk është listë" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Nuk është një varg" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Ky prind do të krijonte një unazë në hierarki" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" dhe \"filter_values\" duhet të kenë të njëjtën gjatësi" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" është e nevojshme kur \"filter_values\" është e mbushur" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" është e nevojshme kur \"filter_fields\" është e mbushur" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Është një fushë skemë me të njëjtin emër" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Vlera mungon" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Duke u përpjekur për të krijuar një organizatë si një grup" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Duhet të jepni një nr pakete ose një emër (parametri \"paketa\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Duhet të jepni një vlerësim (parametri \"vlerësimi\")" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Vlera duhet të jetë numerike." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Vlera duhet të jetë midis %i dhe %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Ju duhet të jeni të kyçur për të ndjekur përdoruesit" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Nuk mund t'a ndiqni veten" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Tani po ndiqni {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Ju duhet të jeni të kyçur për të ndjekur një set të të dhënave." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Përdoruesi {username} nuk ekziston." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Ju duhet të jeni të kyçur për të ndjekur një grup." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "Id nuk është në të dhënat" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Fjalori nuk u gjet \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Etiketa nuk u gjet \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Ju duhet të jeni të kyçur mos ndjekni diçka." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Ju nuk jeni duke ndjekur {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Burimi nuk u gjet." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Mos specifikoni nëse jeni duke përdorur \"query\" parametrin" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Duhet të jenë : palë(t)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Fusha \"{field}\" nuk njihet në resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Paketa nuk u gjet" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus nuk u gjet." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizata nuk u gjet" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Përdoruesi %s nuk është i autorizuar për të krijuar paketa" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Përdoruesi %s nuk është i autorizuar për të redaktuar këto grupe" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Përdoruesi %s nuk është i autorizuar për të shtuar setin e të dhënave në " +"këtë organizatë" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Asnjë id e setit të të dhënave nuk është dhënë, nuk mund të kryeni " +"autentikimin." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Asnjë paketë nuk u gjet për këtë burim, autentifkimi nuk mund të kryhet." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Përdoruesi %s nuk është i autorizuar të krijoj burime në setin e të dhënave " +"%s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj këto paketa" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Përdoruesi %s nuk është i autorizuar të krijoj grupe" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Përdoruesi %s nuk është i autorizuar të krijoj organizata" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Përdoruesi {user} nuk është i autorizuar të krijoj përdorues përmes API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Nuk jeni të autorizuar të krijoni përdorues" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupi nuk u gjet." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Përdoruesi %s nuk është i autorizuar të shtoj anëtarë" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj grupin %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Përdoruesi %s nuk është i autorizuar të fshijë burimin %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Faqja e burimit nuk u gjet, nuk mund të kryhet autentikimi." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij raportin %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij grupet" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij grupin %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij organizatat" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij organizatën %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Përdoruesi %s nuk është i autorizuar të fshij task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Nuk jeni i autorizuar" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj këto paketa" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj paketën %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj burimin %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të lexoj grupin %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Ju duhet të jeni të kyçur që të keni qasje në panelin tuaj." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj paketën %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj burimin %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e paketës %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj organizatën %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e grupit %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj lejet e grupit %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Duhet të jeni të kyçur që të redaktoni përdoruesin" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Përdoruesi %s nuk është i autorizuar të redaktoj përdoruesin %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Përdoruesi {0} nuk është i autorizuar të ndryshoj përdoruesin {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" +"Përdoruesi %s nuk është i autorizuar të ndryshoj gjendjen e versionit të " +"ripunuar" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Përdoruesi %s nuk është i autorizuar të ndryshoj tabelën e term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licenca nuk është specifikuar" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Licenca e atributëve të Open Data Commons" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Dokumentimi i Licencës Pa Pagesë " + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Tjera (Hape)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Tjera (Domena Publike)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Tjera(Atributet)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Ndonjë)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Tjera (Jo-komerciale)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Tjera (Pa Hapura)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "varet nga %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "është varësi e %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "rrjedh nga %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "ka si pasuese %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "lidhet me %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "është e lidhur nga %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "është bijë e %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "është prind i %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "ka vëlla %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Nuk ka ndonjë API të të dhënave që të ngarkoj burimin" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Dështoi ngarkimi i informacioneve të të dhënave të API-së" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Fillo shkrimin..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Asnjë rezultat nuk u përputh" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Forma përmbanë ndryshime të paruajtura" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Ju lutem konfirmoni veprimin" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "A jeni te sigurte qe doni ta kryeni këtë veprim?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Konfirmo" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Anulo" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Mos ndjek" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Ndjek" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Lidhëse" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Lidhu me një URL në internet ( ju mund të lidheni me një API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Ngarko" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Largo" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Ngarko një skedar në kompjuerin tuaj" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Skedari" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Ruaj renditjen" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Duke u ruajtur..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Ngarko një skedar" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ka ndodhur një gabim" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Skedari nuk u ngarkua" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "E pamundur të autentikohet ngarkimi" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Burimi u ngarkua" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "E pamundur të nxirren të dhënat për dosjen e ngarkuar" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Ju jeni duke ngarkuar një skedar. A jeni të sigurt që doni të largoheni dhe " +"t'a ndalni këtë ngarkim?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Shtoni filterin" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Modifikoni" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Shfaq më shumë" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Fsheh" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Gabim %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Rreth {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Mundësuar nga CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Cilësimet e Administratorit të sistemit" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Shiko Profilin" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Paneli" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Dilni nga sistemi" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Kyçu" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Regjistrohu" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Seti i të dhënave" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Kërko Setet e të dhënave" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Kërko" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Kalo te përmbajtja" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Ngarko më shum" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Ngarko më pak" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Asnjë aktivitet mbrenda rrjedhës së këtij aktiviteti" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administrimi" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Administratorët e sistemit" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Konfigurimet" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Shporta" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "A jeni të sigurt që dëshironi resetimin e konfigurimit?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Reseto" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Ndrysho Konfigurimin" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Opcionet e konfigurimit të CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 "Konfirmo rivendosjen" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administratro CKAN-in " + +#: 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 "" +"

Si një adiminstrator i sistemit ju keni kontroll të plotë mbi këtë " +"instancë të CKAN-it. Vazhdoni me kujdes!

Për udhëzime mbi përdorimin " +"e karakteristikave të adimnstratorit të sistemit, shikoni CKANudhërrëfyesin e adiminstratorit të " +"sistemit

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Konfirmo fshirjen" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Largo" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Ky burim nuk mund të inspektohet për momentin." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Kliko këtu për më shum informacione" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Shakrko burimin" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Asnjë inspektim në dispozicion" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Më shum detaje..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Nuk ka mbajtës të përcaktuara për llojin e të dhënave: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "E dhënë standarde" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Mesatare" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "E dhënë me gjerësi mesatare" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "E plotë" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "E dhënë me gjerësi të plotë" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "E madhe" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "E dhënë e madhe" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Parashto" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Parashtro të dhënën" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Kostumizo Fushën(e zbrazët)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Kostumizo Fushën" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Selekto" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Rrjedha e Aktivitetit" + +#: ckan/templates/group/admins.html:3 ckan/templates/group/admins.html:6 +#: ckan/templates/organization/admins.html:3 +#: ckan/templates/organization/admins.html:6 +msgid "Administrators" +msgstr "Administratorët" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Shto një Grup" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Forma e grupit" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "A jeni të sigurtë që doni të fshini grupin - {name}?" + +#: ckan/templates/group/confirm_delete_member.html:11 +#: ckan/templates/organization/confirm_delete_member.html:11 +msgid "Are you sure you want to delete member - {name}?" +msgstr "A jeni të sigurtë që doni të fshini anëtarin - {name}?" + +#: ckan/templates/group/edit.html:7 ckan/templates/group/edit_base.html:3 +#: ckan/templates/group/edit_base.html:11 +#: ckan/templates/group/read_base.html:12 +#: ckan/templates/organization/edit_base.html:11 +#: ckan/templates/organization/read_base.html:12 +#: ckan/templates/package/read_base.html:15 +#: 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 "Menaxho" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Redakto Grupin" + +#: ckan/templates/group/edit_base.html:21 ckan/templates/group/members.html:3 +#: ckan/templates/organization/edit_base.html:24 +#: ckan/templates/organization/members.html:3 +msgid "Members" +msgstr "Anëtarët" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Shto Grupin" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Kërko grupin..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Momentalisht nuk ka grupe për këtë faqe" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Dëshironi të krijoni një të re?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Kthehu te Anëtarët" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/organization/member_new.html:7 +#: ckan/templates/organization/member_new.html:12 +msgid "Edit Member" +msgstr "Redakto Anëtarin" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Shto Anëtar" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Përdorues ekzistues" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Nëse dëshironi të shtoni një përdorues ekzistues, kërkoni emrin e " +"përdoruesit poshtë." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "ose" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Përdorues i ri" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Nëse dëshrioni të shtoni një përdorues të ri, shtypni elmain adresën e tyre." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Roli" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "A jeni i sigurtë që dëshironi të fshini këtë anëtar?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Fshij" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Çka janë rolet?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administratori:Mund të redaktoj informacionet e grupit, " +"gjithashtu të menagjoj me antarët e organizatës

" +"

Anëtari:Mund të shtoj/fshij setet e të dhënave prej " +"grupeve

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Krijo një Grup" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Përditëso Grupin" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Krijo Grupin" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Kërko setin e të dhënave..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Seti i të dhënave në grupin: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Emri" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Grupi Im" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Pak informacione rreth grupit tim..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "A jeni i sigurtë që dëshironi të fshini këtë grup?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Ruaj grupin" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Shiko {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Fshij setin e të dhënave nga ky grupi" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Çfarë janë Grupet?" + +#: 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 "" +"Grupet e CKAN-it mund t'i përdorni për të krijuar dhe menaxhuar koleksionet" +" e seteve të të dhënave. Këto përdoren me qëllim të grumbullimit të seteve " +"të të dhënave për një projekt apo ekip të veçantë, ose temë të caktuar, ose " +"edhe si një mënyrë më e lehtë për t'i ndihmuar të tjerët për të gjetur e " +"kërkuar setet e publikuara të të dhënave." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "E fshirë" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "lexo më shum" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Mirësevini" + +#: 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 "Mirësevini në CKAN" + +#: ckan/templates/home/snippets/promoted.html:10 +msgid "" +"This is a nice introductory paragraph about CKAN or the site in general. We " +"don't have any copy to go here yet but soon we will" +msgstr "" +"Ky është një paragraf hyrës rreth CKAN ose faqës në përgjithësi. Nuk kemi " +"ndonjë shembull për të treguar këtu ende, por së shpejti do kemi" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Ky është një seksion i paraqitur" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "P.sh. ambienti" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Kërko të dhënat" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Etiketa të popullarizaura" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistikat" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "set i të dhënave" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "setet e të dhënave" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizatat" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupe" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Kjo fushë duhet të plotësohet" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Mund të përdorni Markdown formatimin here" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vlera" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Kostumizo" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Forma përmban këto fusha të gabuara:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Kjo fushë duhet të plotësohet" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Imazhi i URL-it" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Pastro Ngarkimin" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Forma e Organizatës" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Redakto setet e të dhënave" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "u gjet për \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Na vjen keq nuk u gjetën setet e të dhënave për \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Bëje publike" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Bëje private" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Draft" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Private" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Kjo organizatë nuk ka ndonjë set të të dhënave të bashkangjitur me të" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "A jeni i sigurtë për fshirjën e organizatës {name}?" + +#: ckan/templates/organization/edit.html:6 +#: ckan/templates/organization/snippets/info.html:13 +#: ckan/templates/organization/snippets/info.html:16 +msgid "Edit Organization" +msgstr "Redakto Organizatën" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Shto Organizatën" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Kërko Organizatën..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Momentalisht nuk ka organizatë për këtë faqe" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Emri përdoruesit" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email adresa" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Përditëso Anëtarin" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administratori: Mund të shtoj/redaktoj dhe fshij setet e" +" të dhënave, si dhe të menaxhoj anëtarët e organizatës

" +"

Redaktori:Mund të shtoj dhe redaktoj setet e të dhënave," +" por jo të menaxhoj anëtarët e organizatës.

Anëtari:" +" Mund të shikoj setet private të të dhënave të organizatës .

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Krijo një Organizatë" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Modifiko Organizatën" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Krijo Organizatën" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Setet e të dhënave në organizatën: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Çfarë janë Organizatat?" + +#: 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 "" +"

Organizatat sillen si departmente publicistike për të dhënat (për " +"shembull, Departmenti i Shëndetësisë). Kjo nënkupton që setet e të dhënave " +"mund të publikohen dhe t'i përkasin një departmenti, në vend të një " +"përdoruesi individual.

Mbrenda organizatave, administratori mund të " +"caktoj role dhe të autorizoj anëtarët e tij, duke i'u dhënë të drejta " +"përdoruesve individual të publikojnë sete të të dhënave për një organizatë " +"të caktuar (p.sh. Zyra Kombëtare e Statistikave).

" + +#: ckan/templates/organization/snippets/helper.html:8 +msgid "" +"CKAN Organizations are used to create, manage and publish collections of " +"datasets. Users can have different roles within an Organization, depending " +"on their level of authorisation to create, edit and publish." +msgstr "" +"Organizatat në CKAN përdoren për të krijuar, menaxhuar dhe publikuar " +"koleksione të të dhënave. Përdoruesit mund të kenë role të ndryshme mbrenda " +"një Organizate, dhe varësisht prej nivelit të autorizimit ata mund të " +"krijojn, redaktojn dhe bëjnë publikime." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Organizata ime" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Disa informacione rreth organizatës time..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Ruaj organizatën" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Shiko {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Krijo setin e të dhënave" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Çfarë janë setet e të dhënave?" + +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Ndryshime" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "A jeni i sigurtë që dëshironi të fshini setin e të dhënave - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "A jeni të sigurtë që dëshironi të fshini burimin - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Shfaq setin e të dhënave" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Redakto të dhënat" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Ndrysho faqen" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Parashih" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Ndrysho" + +#: 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 "Shto në grup" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Ndrysho setin e të dhënave" + +#: 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 "Shto faqën" + +#: 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:85 +msgid "Add" +msgstr "Shto" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Të gjitha burimet" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Shiko burimin" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Ndrysho burimin" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Pamjet" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Pika fundore e API-së" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Shko tek burimi" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Shkarko" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Burimi: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Ende nuk ka faqe të krijuara për këtë lloj burimi." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Nuk shihni faqet e pritura?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Këtu janë disa arsye që ju nuk mund të shihni faqet e pritura:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Asnjë faqe nuk është krijuar që është e përshtatshme për këtë burim" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Faqja adiminstratorët mund të mos ketë aktivizuar plugins-at përkatës" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Nëse një faqe kërkon DataStore, veçoria DataStore mund të jetë e " +"deaktivizuar, ose pa të dhëna, ose DataStore nuk i ka procesuar ende të " +"dhënat" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Informata shtesë" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Fusha" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "I panjohur" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "U krijua" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formati" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licenca" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Faqe të reja" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Ky burim nuk ka faqe" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Shtoni burim të ri" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Ky set i të dhënave nuk ka të dhëna, pse të mos shtoni disa?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API Docs" + +#: 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 "" +"Ju gjithashtu mund të keni qasje në këtë regjistër duke përdorur " +"%(api_link)s (see %(api_doc_link)s) ose të shkarkoni %(dump_link)s." + +#: ckan/templates/package/search.html:60 +#, python-format +msgid "" +"You can also access this registry using the %(api_link)s (see " +"%(api_doc_link)s)." +msgstr "" +"Ju gjithashtu mund të keni qasje në këtë regjistër duke përdorur " +"%(api_link)s (see %(api_doc_link)s)." + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Të gjitha faqet" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Shiko faqen" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Shiko inspektimin" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Info shtesë" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Burimi" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Mirëmbajtësi" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Versioni" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Shtet" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Ndryshuar së fundmi" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titulli" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "p.sh. Një titull përshkrues" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "p.sh. Seti i të dhënave të mia" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "p.sh. Disa shënime të dobishme në lidhje me të dhënat" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "p.sh. ekonomi, shëndeti mendor, qeveria" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Përkufizimet e licencës dhe informacione shtesë mund të gjenden në opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organizatë" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Asnjë organizatë" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Dukshmëria" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Publiku" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktiv" + +#: 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 "" +"Licencën e të dhënave që ju zgjidhni sipër vlen vetëm për përmbajtjet" +" e çfarëdo dosjeje burimore që ju e shtoni në këtë set të të dhënave. Me " +"ruajtjen e formës, ju pajtoheni të lëshoni të dhënat personale që " +"ju i shtypni në formën nën Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Jeni të sigurtë që doni të fshini këtë set të të dhënave?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Tjetër: Shtoni të dhëna" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Adresa elektronike e autorit" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +#: ckan/templates/user/new_user_form.html:7 +msgid "joe@example.com" +msgstr "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Mirëmbajtësi i adresës elektronike" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Ndrysho burimet" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "p.sh. Janar 2011 Çmimet e Arta" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Disa shënime të dobishme në lidhje me të dhënat" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "p.sh. CSV, XML ose JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Kjo do të qëllohet automatikisht. Lëreni bosh nëse ju dëshironi" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "p.sh. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Madhësia e skedarit" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "p.sh. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME Type" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "p.sh application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Jeni të sigurtë që doni të fshini këtë burim?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "I mëparshëm" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Ruaj & shtoni një tjetër" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Përfundo" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Çfarë është një burim?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Një burim mund të jetë çdo skedar ose lidhje në një skedar që përmban të " +"dhëna të dobishme." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Hulumto" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Më shumë informacione" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Ndërthur" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Kjo faqe burimore nuk është në dispozicion në këtë moment." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Ndërthur faqen burimore" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Ju mund të kopjoni dhe ngjisni kodin e ndërthurur në një CMS apo blog " +"softuer që mbështet HTML të papërpunuar" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Gjerësia" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Lartësia" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kodi" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Inspektimi burimit" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Të dhënat dhe burimet" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Ky set i të dhënave nuk ka të dhëna" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Krijoni setin e të dhënave" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Shtoni të dhëna" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "p.sh. Faqja ime" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "p.sh. Info rreth faqës time" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Fshij filterin" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Çfarë është një faqe?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "" +"Një faqe është një përfaqësim i të dhënave, të mbajtura kundër një burimi" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Shto Setin e të dhënave" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Statusi i shtytësit të të dhënave: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "URL-i gjurmimit" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Tregoni më shumë {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Tregoni vetëm të popullarizuarat {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Nuk ka ndonjë {facet_type} që përputhet me këtë kërkim" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Kreu" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Gjuha" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Shko" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Asnjë licencë e pajisur" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ky set i të dhënave plotëson definicion e hapur." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Nuk ka asnjë përshkrim për këtë organizatë" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Ky set i të dhënave nuk ka përshkrim" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Rendit nga" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filtro rezultatet" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Ju lutem provoni të kërkoni diçka tjetër

" + +#: ckan/templates/snippets/search_form.html:87 +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 "Asnjë set i të dhënave nuk është gjetur për \"{query}\"" + +#: 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 "Asnjë set i të dhënave nuk është gjetur" + +#: 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 "Asnjë grup nuk është gjetur për \"{query}\"" + +#: 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 "Asnjë grup nuk është gjetur" + +#: 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 "Asnjë organizatë nuk është gjetur për \"{query}\"" + +#: 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 "Asnjë organizatë nuk është gjetur" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Shoqëror" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Abonohu" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Adresa elektronike" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} shtoi etiketën {tag} në setin e të dhënave {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ndryshoj grupin {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ndryshoj organizatën {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ndryshoj setin e të dhënave {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ndryshoj burimin {resource} në setin e të dhënave {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} ndryshoj profilin e tyre" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} fshiu grupin {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} fshiu organizatën {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} fshiu setin e të dhënave {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} fshiu burimin {resource} nga seti i të dhënave {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} filloi të ndjek {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} filloi të ndjek {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} filloi të ndjek {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} krijoi grupin {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} krijoi organizatën {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} krijoi setin e të dhënave {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} shtoi burimin {resource} në setin e të dhënave {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} u regjistrua" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} fshiu etiketën {tag} nga seti i të dhënave {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Etiketat e kërkimit" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Furnizimi i lajmeve" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Seti i të dhënave të mia" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Organizatat e mia" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Grupet e mia" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktiviteti nga artikujt që jam duke i ndjekur" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Ju nuk keni krijuar asnjë set të të dhënave." + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Krijoni një tani?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Ju nuk jeni anëtar i asnjë grupi." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Ju nuk jeni anëtar i asnjë organizate." + +#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 +#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 +#: ckan/templates/user/snippets/user_search.html:2 +msgid "Users" +msgstr "Përdoruesit" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Info mbi llogarinë" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Profili juaj lejon që përdoruesit e tjerë të CKAN të dijnë se kush jeni ju " +"dhe se çfarë bëni." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Ndryshoni detajet" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Emri i plotë" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "p.sh. Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "p.sh. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Disa informacione për veten" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Abonohuni tek adresat elektronike të njoftimeve" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Ndryshoni fjalëkalimin" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Fjalëkalimi" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Konfirmo fjalëkalimin" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Jeni të sigurtë që doni të fshini këtë përdorues?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Jeni të sigurtë që doni të rigjeneroni çelësin e API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Rigjeneroni çelësin e API" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Ndryshoni profilin" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Të gjithë përdoruesit" + +#: 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 "Identifikohu" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Ju nevojitet një llogari?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Atëherë regjistrohu, merr vetëm një minutë kohë." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Krijoni një llogari" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Keni harruar fjalëkalimin tuaj?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Nuk ka problem, përdorni formularin tonë të rimëkëmbjes të fjalëkalimit për " +"të rivendosur atë." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Keni harruar fjalëkalimin tuaj?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Jasht sistemit" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Ju jeni tashmë jasht sistemit." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Ju jeni tashmë të kyçur si {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Dilni nga sistemi" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Më mbani në mend" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Ju jeni tashmë të kyçur" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Ju duhet të dilni jasht sistemit para se të kyçeni me një tjetër llogari." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Dilni nga sistemi tani" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Regjistrimi" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Regjistrohu për një llogari" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Pse të regjistroheni?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Krijoni set të të dhënave, grupe si dhe gjëra të tjera emocionuese" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "Emri i përdoruesit" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Emri i plotë" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Krijo llogari" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Rivendosni fjalëkalimin tuaj" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Fjalëkalimi u rivendos" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Ndryshoni fjalëkalimin" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Si funksionon kjo?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" +"Thjesht shkruani një fjalëkalim të ri dhe ne do të ndryshojmë llogarinë " +"tuaj." + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Përdoruesi nuk ka krijuar asnjë set të të dhënave." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Ju nuk keni dhënë një biografi." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Ky përdorues nuk ka biografi." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "ID e hapur" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Kjo do të thotë që vetëm ju mund të shihni këtë" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Anëtar që nga" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API çelësi" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Rivendosni fjalëkalimin tuaj" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktiviteti nga:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Lista e kërkimit..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Ju nuk jeni duke ndjekur asgjë" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Asnjë ndjekës" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Kërko përdorues" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Ridrejtimi në faqën e jashtme nuk lejohet." diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.mo b/ckan/i18n/sr/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..ba890291c0e12677fd4122bcb0dc9bf6cd5ca9a1 GIT binary patch literal 85098 zcmcGX2Yg(`wf|QMj~;rj7a3z2ELk>P*v7^-#s-6Np(Kx(wY0VtOIoqJvMn4ZrUmkn zm(W5?GXWAvB?e<~sHu>UCZ)gh{_;;qLdr|>()fRW=ghr(w@5Z5j}O*wXYQ0UXU;iu z=FHsP@9ne0J2U)u*{d^|!@!^L9XiS+fL%H04? z1K$ho3jPF~2>u3K3Lbe%CUZadCU7ly%&D2o*T8$hW56{u-U{9gjsd>_E(CuI&H`th zmdWsc<}LhDKc5C6J+s4v z%6%3Tyg6Tk_imw|2IJ3{``pvu1hs@((6@bp>W ze9|RQ{Qo$p@%$VV{l5k^Pk#oF244dA2alfV8I5-A86r2I7ol8LVdpQUzGHXD|^H%UMaJSjse+#JjI2r5&=YW#0 z4}zM%&0qw63{<%vf;)h}1vM{!1l7+DXZrl^2CDvkpyu;1P;?##s{9mCaxxFpIG2H< z_exOXcqb_SZwAHZAAq7`?>XMj5un-|3#$E-0?r0iZZW9#vLSx}6o0P)B{v&E@o`gl z{v0T|`8ufa?R=Kge-J3XN8pa&iJYZbvUSgj{z?OPXfiKdqC;$M?lg22~hLt9l^X}{3Z4q? z2F?ok3qbK}S-^hqJkoCr=`Vuf*LOhc4^;bq1~rad=6nBpfokUfQ00yecoH~<^jV;WZTMNss-8C3f>f@SayQ04YI*ZF?{NLJ=J5L25O1l9jzp!)v|sCK>ts@-pal80Y| zuL1uNp6||}RPI1f{A>nQ|5#A;O#;>L5>WQ+b)d?>9o!wf4V2v74~pIof_s2lK(+TN zQ0;v_;8#G+WRbVqHdd7kp#|faycYtblcF3Oxs@#I`d?_fsy9|^)xe6Q$-UIFlJ_kw4MW(wmDw@vjRM|4X3yyD~g~dr037s@wyh=J!!>fADEg{e2Y_zrG8K ze?I~>&Lb{xYymZ%$)NZ?6;yw-K()6J6g{s6Rc<*bx-SREfvZ8)yBidL?gv%wQBd@L z98~=;f-3hdP~-n$NdFYvhx7{}{Sv5pJ6`Dh?+flv`cP2yCxN2xlz?Y~>US}?7uW^v z2M&Nog8u0n7mO})It!rqwiXnht^w8l+d;Lz5fnc^0=9sU z1pF?jdD!t{FTX!Hf%I5V`(eXc^+J6b$ z7u@5uUcVVUmh=K}Z*VQBasMZH5cpwG?L7;sov(lz&v!wsaXtuYTwesm=Wl|Nr>56C?gy&haiH2c6;wZG zfvUd*6yFCz{u@D+e=FDl-US{CeiJ+b`~xU{?7P(Sj|C-`Jn2TLDhddDEe*%H4pcN{0Bkt<l-giZ5>iCx9OWHUHlPRqvPJf#4rNjdS-dr{`c$aybSRy%Ryr<4K^}n*|;Xc82uz zpyurXP~|=fYCO+@8t2zR@#8xIUj)_v4mqEX*MQ>FaiHj#0v-Y`21RcHRQp$j=eK~; z%MXDn_sx+1dr*-dLIT)1)l^pFMkZUL*B=~52$j7gX(7- zD0)r?BXAlx7F-HG1YR3Izs&vMY2eP}cY~Vm%R#lX9{e}(hLFA$RJ-?w{11opW^h;X z9|v~3OJc`7uXKI3!Dyq29%ua((n3x8h9+} zZm7(Flz^B1igP#Y* zw;@pU{s|Pn_b)rW9iZ&|#h}U+K=J+7@cg4-MEaYc=J9_)(S7KEw|6e6`RD;P{#!zN zGbp}&JEZ>#s{WW&-u`S*eCY-c18)N*H;;m%^E;sE_)B8HRk;P*h$^{O>q{#a1$%>zYeFBpMu3;7=gMc)u8{{9XW|Njc^1U3!2J=z7_k@O+p zp5Rg7zThNKe4h>O0WJb}2bYEX0;qE9K-IeuRJnUXdK0L2KL+j!J_oA3FN31@2O<3u zsCHg+h0pg<;Mt^)0Y!fi6kl%vCxD*@PXm7kc7SbbosW4?^Y{+%1n?6f{U=a-JN6B( z4-3KZq^|@|0Y4bhKLJ&4k9FSPNucy+MM&QYs{iK#{sC0^qu%J{=7MT>4R{iGFDO0y zFHrKl!<$?W+d;|Y>%nQ@wV>Mh6sY3ljF zJcRVcpyr_r9tmCzY8>~0YWK?_|L>saJp3w`kHw(m;}Y;Nurs9Bg9nm+Gq@AD5u6C# zAD(|5l->RgD1H4IsQLUQD0z7a6g|6N?dd}Uwt$j{6T!W~nV{NP0v-e|1?PZkK+*Lv zP;&GvsCI`z(eu54KLaI)zXtaL{{f2bJ+E;)GY-`A4)AbrUdZnTMc-Ob?fwU-{@w+u z++Cpf_yjlx{5B{)z62ft9(%3xeJ*$~=`K+Hz7f0tycIkR{1x~-IR4F<%=^GUfUV$N z*LnTVfs)&wfz9Bd*L#1{z@tbn1IK~afa3p$K+*9Xum#-dEv^Ucpyc!dQ1Wp#sQ&K; zB?sRIPX~AX59jkdP~++ZC70KM{|P<_YW!2)>U6#qRJ+%Q^cHYG(mw`w1OE)}1n%%Q zm#5u9&F}u8_&z4&9}kM(Q$X?QY*6iVg6eNgcz!FWcHavg4L$^lzORGg)89eq&t!<5 z3SJJ1Pagp_zF|;uxcA$AKF5Nh?>KND@c58_Cb%Q%b3n=AB5)5d7qASf{MDf3>Q-=n z@BvWep9=UTQ1t!~d=>aBaCh)U@HODy!Ck=J-r?ij9~3>ug8v3i4(U_Cok>pzRc|i1 z2Y4Z<@h%57{`Z1o!Eb>Ycjg9{i)K*y3qj?t3Hi5!XOMm#l-+yHjZXiWpyvM~Q03nM zM&L$J?K~6me+o_{z0*x@k4^?{zQAM2zZH}|d>oYi{s3$P{}-GGw%qLHO5mBKH-e($ zr{H4nh+D#QQ1)kIz$d^tq`wL731g#o`t$a8vF9a!KDZEkU%H9&+<8z?+`$h0d@C9&J zu&9JSe^RT}bczUZ=ku)H;1G7=dpA)!qj{&GWM%{bO(} z>6ZeIz2E6N8&tUq0+vA0aRaFSJ`nI@py>ZPcm?=p@HDXW0KO6U5%Bfk;qP;N1K30Q z+u)_(S?@>3!1sf%1Dig8u7Q_;-QcIdi@{ce=2GxFQ1bV4@H}wlhlnwOH-pQ-pMZ#d zX3mE_|6AbBq>p>h=jQ}ae4h!<1&riVdVCExke~$&#-$mfQ;AT*Ke-70A z{{}>rGGjJ5UmgRell}rY5!~Y;x8Kviy-2SFuLIuzLRw~rhkc*&FsSwJ1yKCleY4A7 z8@LDQP2d>t8Blii$DrhN%p)$hGr)aFp9Ss?z7AA>-64MvRJ(5r_#mip41t>eKZD1C zM{IFFY#u22T?=Yn9tS(Y10MDD;0jQ5-2Uk%40(fOe zKN_BY6`VkRW~<9bD=7MI2Q`jQfRn+mfct?ve$?&Ep`iG764(Y_5b#=1BHa&)U!MgJ1iuc7&R>IH2X}wM`SWA&2-3Se>3(1fcrfWpLCwn*;5=|6 zI1BuL;d$Fro_`i7KHm(A&X0oP!_UFv!NZ^SahwmHMEY`2?Ys{>5&RW+DLCdCuYV1= zBk9ec=KXO{eEI^Yaeogy9Nhb3&i{#^^x$=%#@hvo-pfJp^GWbXa2S++{1%MBzkwRx z;UD+*XMjpC1f?&l0^S5lZyp5O!Eb_+gIzx1`Y{<)`_F=+>t|pD?(j*Mr?H^uItP3W zcrmDPtpL@}72pK$RB*?d_ZeZX(?UUIFg^ ztlQ@sK=u26P<(wXeyfG>c1f_pvZ>qi8N&dH$qnGL=kTnLKa4}r75$3fM5 zDd3);ar%!0k0QSvlzc1%rB`dh^Xo!-19&p|4}|>hgVNU*LCMi!pY{IF2UY*|;ErG~ zsD8`f5#Ti;eIK|t>CNEt;HN?H^9B+c$35U-;DaIkIZ*QcO;Ggy4%`*o?{jYVjtqDr zC_bGH9t#%0+2HNqG2jotao|p$_xck-@v8$=zqf&xgZG1?=b$fmz44&NwE&d-ECn^b zb)fX)8c_5-4qn;B`4YH+^aWpX|KK;E=;QplF z1*+cv1I72l5whvvLQv&y4)}g>XVTAr8rNq)_5ZbiKLAz!m!Rlw`ikqvp`iLX zEu=37Mb988e%=L&51#>Bz;A$iftjy*e|v+MkURubyK4g81Rg;8L*RknCqec9?SQ`p zB_BI|&E@$RP~}bqSAge(`-2|^MaP#w(eW2h@~{iWQhItExF0wN)cF4$)cA8?Ggu7y z?*v~%dLyWIJ_Jq&p8!?iYnSiqD?_XM(=~)nD5W zh>?I-f}&@qA9}q>;EkkvK=tzvQ0?#aBVUh~fHO$c`D5qz382P(7AU^F z9-Ie$2oyj61Wp6@{|R#qE(RBa9{>*pUjk165B;gnf8UNqT$Jc`gk-h~K9Ulf&{C*yU3Qi{fT5v4571a2?2S(uG|Ig)r8YnvFgOc9@crthgcm((r@LKS9p!!|&3zz@* zf>TNV5LEdif9ZbOg`nDd0^A4uE-3n54C%dI@P5aDdOjJH9hnVI2QL66r|$waFAsrZ zz%PaL@4;P3@BJ&UcNlme=~i$YI2(K?*bD9qzWUeR-tOS3q>lmTftP~Pmk)xX@B83P z@THJH^Ea-4t3mPcDR3e9A}G3MzUcFj1&<@W4%9roKj0@o$;G$9y};jqs+ak#_j3ez z8p&m#>Td+q&-36h;NL;<;ppEvpQeGwl0HA+8^GO3KLECZkARYoAA!=de}I~YQ-AO6 zy$+PTTm_y8J^+@$?}D1Y^Z(%ddkeS+>4!k^{bS%h;7>sD{ZHWW;H&<}={pHj`32xa za4D#9z5~>Jd>EAceGS|b{41#PyZzDS{18xdo(HP@<)He#Ej)h;6n(z~o55rMxd{{>J_*hMzYiV=9`$G6&z%YmlD-+74Zh}oeVthZs@@Y|3-}FC^)i2P zJ{<%q{Wfr4@I4{DHKd0?(f1QjbnNt3zfW@rcoFFf!ImcI1I5Sx`kT+&Pe94XK7V(< zjR7_O8KCAj7xIfCeFG@Dz6;zBydPA5Pk;x5Uj!w`KL^hQC;Y?PDS^sg4=Vpt;CgVk zmpuP%;3U#Rpyu&anI^MmlfgF9XMy7PYEX2&57fMF0X3d)gR1v4@F4JjCa*UUoJ{)l z;3eRV;2iKb;ECYLuWB;A>;+Z-fsp%!CERMNZe+?2T#oCivd zJ_w!x{t8t8?Ynrpy`bdwQBZpLJy80*`>stUx2J%r-w$34J`748cHhm@IZ)$%23!FC z23!tK-@VD=WemJ~%NjHOw zz+*u5cLjJM_&M-waLk@Q9|cg)-w%qPe*ve1XYA#CxEh>A`dRRG;BI?2ncZ0dE+l;~ zsP_H`)cnlY$NBJ9Q0;yJ)O;SXZV~j0V@Abp!#jwugTV}RiN720-g#s?eEV| z1JΝ56{7p!mJ-0bXtics}WOfa3cPLDAiDpwsmxQ2h8TDE&D6Am>LGRR13Zj{=(x zZZbU`14`dc0LOrHKsqAL;Ya4N9Iq1&V)rMos2#c7sLITfp4R{IZPlK-o$25Dt zZv-_DpAYFH#yJ0bK$U+KR6F|}-DLZ+E>Pt^32J`!AM17?4=Vo|a6P#9G2YHi0lx!E zPL3Jp?G?c{lKuoJdSG?~b`k!*F>+20*JLzA5 zmw|^K=kxMrQ1f*!C_Uc-YCiTP*ep92fm)|70LAYdxGT6d}#qUR-0>%*9KFW(MEr00Pe&q`2yy&XIP z{06A?;*X%lx922p=Q!}4q|XB-uRjInHQ{4UZpwUu^n=GYnV*082~D<7_##*)|Igs@ zVDE|E&pn{lyYGRL|FI`Ev4*jxgI(Y+LCx=ilU=^w19p@CJE(CkKc&gu!?_VWm-KJJ z_2BeVn{2)RIH>vh38-=H*U^-D4m=;63?6)%w|fpK`}SV&9I$DM%h9=@`2MDVcY{Zf zeg>3X`C-66f|{4zrn)^C18QDofZ}@}sP*Zl@ce7w(WHM5o(CQ@&E>8e>?HjJ_hBxi zVc_pUwX@euw;$udd8FS2o(?__N-lSu<@WznP2h!msP^6f&Hz6MieJA1G_$K{|46dyhYP6z)2s@`d5x!zp{N^Wle`@wI3 z)4{Xmy4`sTxPfu63YJG&|umAi9MDchTidUAa$ z%H4JK^QEYmyL=#D%ymVpyK{YYjZuIudvaY#)wr7xtH!ids*Wv1Q^uC2Wx(!iDO#4J zqpn;}uAJ*?Q|3S^SBeG;1H~xUo6Yw`*{-f)u2hQh%at4T<)E%yfYMT~?B)8irPAs` zk?QTytZX^UgHmQnf7IE-gQ?BAHRWQqdD?=W98aQhaS%oo;6*Vi<+8=j?zSlt`=_aV zzH4f;XSL>v#X_-p+LThcSm;|ZZ84>D(Q3%e_C@v#2IYHTr?rspTR|hCY?SV3MK<3T zx1Y2&qpLUH*HNi3Q;l}z%h8HrVE{7vnC9MWIbZ0T5Ygr8Tn}6*MZMX+?224eD6Yu% z<*%^kQE#qyS*}>JE}|*@Nf+}izorj3IkA}QEg%YAflbl!VxiajEd@3tZPb!Ew@-7C z7hReFBZrZjScUeWS7R$hoeYV>CX%7c&O%R5c3GjAEfzK&TMBVR;C=4`g5Im6t^qtDxixtqBZ$adAv7iEVdb5MxDMv*#wCt zkdLm8Xi8_H3r#N%_T;8E%g(ee!vI#PMe=yN!~aLMe-^)YX8Djv5n9?oUq#p>L$NGw>L zFLy`%h1I#DX2zBj=**=1X6mbpbySj~!B)jeR(Y_W zZn_vhre|i#-qdA46h*>fVV}>mwbVY&kr}p6uKV`!T*Pi+B1cp{FJ*_VL^i5a#QfDg zm$kBj`jD1$)+@{Jql6K1G79o7(vVUqnXN{s!*fTxp~ znZicr@m;m7RBhi&dz}%E`oA=DJ&>Q)?%P2U7ay+#znC@w=oU! zKQviAg>09pFOtz$vy2U(r>H@Hv9K!NrM6KRnJ3d6eOR5vFu?-%6cWqd8m*N;t~-63 zHGFN|{_?)EM%!N@ZK7XBwV2m0qe{6O`)9JY?O|J4&Fpp-O|R11StYE(+gaNAx}Ak% z=8RIj9|MNFgyqnpV3ugK(gQ_oXKodX2^IQQj8e3iTaoL_p)S~37Dw64mAS!DE65{N zSysN~d9__yiN!4qmauK^8My+YMOqDPfssd9B|6J;jK`&4UX)hReBVG0r74vPoq4B+ zvARH;8Mm>AX~@hN=*nZQ^*0(Q_VB6PT_^^K{l?`3eHEi^R@5!|0CZhZz%>Jxv;Lvi zs6On{k|WcBK|Ukf>B~GeBP}kaswY0r%EJ_A`^%l(*|vJu*dA-s!P1}pYzl59seUX5 zzWAFRJ)?$8ftQJ4kj;p<3XK`vmYI3>jB}%yt1^m~G0R?&tEp8)G!f_Mu5~0SuPImt-u|rjt~> zq%F_0TGScb?aNs^LkHYzN;EZ1qn=+kc4`D6-|ndy2YV`pA)k`X+@@I2^9{M3{pPE`3l zp?vHbB}utDX{#4k#^A-yXI!?%lM30fwX06D@iVi?fSDNIhep>;3F13M2S2e z?CBxR99urF3Z#YBktsx~fP5H4GZ!t2Kc1<)avain!}RcusYeR27q z%rcb1{wAcD^OhmtBB!CJutFa#_CmMB3yL1gwPs^_5Xq$9iUnL&SYw7^H4$0a96~@{ zwpoqEr-p^3U0J$nIF|Gx6}{q!5SdZ_rvEp+gd_(FtbN#a)Xpif1=tnK&u%81B zGK;KyMTYJgp?w5w&}uj(8+8|R%cnMXm&^Sf6DM{Ni)_O;?`wn1iMhUs60K5sA`%zJ zPbZpD(IVN_UGD8^W|?IhTb|mybXiZfZ)Ni|m5q|!i_Maj&RI;EFMM<|ARA}FpD7cw z(>yjkCs&Z8={|gBPJ#b5-|=i^<`lF2-Tv3-Y7T2XX~oCvZ`3ja!HOo04@ogCe5_yf zyhaGDjPzKXtXUMrIdNbai*RVXGR@woj%Jd)HZN4loMoq81x1!HI4fKf8DCCjTq>72 zE0BbSX219Vqd9YX)6<7y5+^mNO&Si9}y*>bErJu`Q?ymm#q!=ao9>61Bi z!;vJT{+@vqFe*iGa84%3OiA*@!{oW02-@LW|3InR^<0IL29s(@jt&vz6|n0;`=~;= zuJ&{#8pL0MbnU-aQ%d5*>SAtLY=Xr339wU#Z+4_fzxkA|h-h>-= zuU)lpP`Ou3x4+Snh3AA%iigaNeU}hHv7oW3vKF&)fgn8blJbOPbBw>EqrI(Ee>ziJkGJT8Vn)+=`-h-@XEoE*2tl|L6Ak<`04yK}cW)h(xJBe~5D8XyU~r z&Vn6j+DT)oPzVRO`5}^0X&^A(d??l!U-^1j{^8iVjM)RD%)&486d_=rlsTKjk#n+4 z4S)Mq42Zku$O`%2$ZetJP{EY4#3Me>FLc>qlBbpg&)ptz;3TiZKF2QoIhd$2(TiY{ z&dIZXLhS>ZE+*$waV|~ZDcK*BH_bS+WkN6Zu`wt|EfPuGT8vAHB`rRyV#B#$?)c0( z3Qp@J%s(l*V4qM?owuD+Sb-HX2%PGOETvN!J=AfY*u-bqne#l`tDu$3Z7pq!6wQ+C znw3K>Qy=pLH+{^k?Q{+6H<9R4r4%Yjt38 zB{oGdJ3R*7OU0{U!s3~jPuP(d$^5*ZpI)GVPm;38LS{Z}!Y?&%U2L*+YRw~q27^y3 zJ7OD|`I0FN>J;-ArgcoQ#-_oHe6fWcY5Y7JE$Pe4CFAhTP8LF^p*og80ZL9ka2+@W zPu1(E+dRkIvF;=-#;QD)^W0dI@xM9aPihlr%MqiJmtO4Dje%@WKQSWEsGX66r?DfIylx<)87s0N>^_6{}aQs&$&tB3yBW+hzN zkhuxRwFolDI{Ds#UPbg86|@K$2Wnaq)>IX&1SPCqDi~quI4Y>c!YksjkIkpYY#ggD zJPK=7koyZ^-h48lSvNVLE(Cl|_YBqxt+gY>%wrdu**;fMeEzO>msTGVzeNe#4)KAz z26RNhHRX;dKK09-TZm$lLIA-JoygMx0={`3a^((aBZ2nXsvI5-N*Hx~Nog&pGRADx z;*+ZhGBM`FcjpLKW(mHxrHVp~F7njp*g9Cb+M~w9mR56)U!Ujl1ghL`Y9&@BZmhU#F8|fMa(6%F)VsINDvo)vRYK8+WF@L(1yzQ;q*OAUm7D?x;pcIj zog56D*C$oUqXcF4;Nyuuk8O$9_wl8U%y~uPw9&FbKBP1uoruoVmZ>TySP;x$SBRYX zWivJ{ENg5(B@_w4RaL7m>{K_Kh*D^^t@?3a!qKW0Yj#%YXYc}!7uf@rkqa(AvCADF z=bc;VYvr7URg*Kzo>X=@IjPsa2i-{(MV%OK@Ftb2suKrg`U-;A+pB~!dL`P$V)V{f*>m_ZzlcgA98J{LG zPxzeArTnrUuC<-7+im_gYSBHdMdzP0KBRLV-HTc{sl;zSQC^OMVRg?#zDFee-rcy% z*t3?#)fEk0U`~iNDJ~RBz|hP>JLONjwOWa3t1YlBS6;0 zNo)$1vvV4ufceJuxQp;4;>-LZQh09KF%jui)HGI0U$@j*a!*6YmfEM1#af4V7=N%u zvf^rnd>ME`qYDw@RXVHZQwUDsdh?m3K0tJ)-wyN4*!KGQy{$<$!=W%5YO7yZ`t5dG z>TuiJND9?I=D-;ti7i}-R_%I3jW9m(w$x9kPkY6#e5t>O)2xNLRovywEG*z{>rbKy3jg3d*d>XD1o8^Y zmy7p{2r}BA=$H`cvU6w8GKuz&>6O!SY@+oMIoIxakwwG;RGbvgjuy*8hR;iI7L$bL zBz_PZq1tq%`CyDv8S)EL$tvsR`J8cd(V}d902Tw6KhKTItK|!O%t?3paZ2GRH*5WR zxJ+iYm?x^LQQ||ELg0Avc+#;y7!(E`SJXxNZx=~ir}2h7&Uwm9wfUkOmC-Ifvq<-9IU{axkYz@9b#5GP zVcKaRw5Ge<)Wl>WI_!4))J~i#tSE$3p1bM(kr+9dEA##4vvaORf0;$PbJhb8iNLd6 z&ShcrQTt=N!mg#?1&{+_h00^&*mxheNTuxVGhT5KcN$A4pH*SyaQhf3;P8-3pcsX& zTmhF_*Xq0MrZkc9P~9SV6_=@{m@6&CZy2xFV0t(ivAXgknx|DZ(&fa5TCJU`4q)x5 z(2V4A&Rhx0Y6n5LgwwNwx#Cd_+zh4zm%-!H8~l9hZra$EpmgJTgCaXEv#886s5=?) zhY%YjS;SQu>_;hnwEliQCc37-I+^P%Me}og1D3|yS)|+MnMDK3dO4DI&}yiUI^bJo z&-{}niy0xt%JH_&nM_4!Vz6Y<5;jM{%UNs@1PO!Azqb`qYEZ60L@A$1%Ej@Ws(4u{ z%7!D93XrwcRFsit$Ajtiu$w&|ibmfqNoRXJHAN14Ui!7D32@4F!d7L}TG{jb2qb`&}TdAdejOjw)UvG%E*B6TYrZ|)oO2iGs{O7>d zsYtQN$~2_bl|O8GY#YXj!a5r82Z&y@Hs7@lpESNQ#~hpQpzbMTv12W(=0*igiol#fViZjlx&I>C9$Yuc@SEBh?2Ls$0f3 z5Gld1W6=GmhocJynXaE65Dj>^C=RYAqhUF5$CTsDbd7;Ny8y?ktV1m~xMq{A3yD{t zPudcdh=%qCPbnS=v2CfW1glaMLbP|0_{(tFeTzC;s*0yBnpGH@<_4vqAyz2)=X9cE z;|HnRS5*~DTAt7b28nDbSQE`s$k<*y5ohScm4y%Cpjrlml$)`*=h_Y^0B8J)xo#(U zu)-?p5%v(R%=VRZ8-nL{0OalV=E!zgjpsRz4SInz8!T29MvgV2<%(>&jDMfWk1;2RRN#n7 zUQJ`R-Jxui&1=}284F5Qbdv2zE0OwKo9!HQS0dgj+iVdc!?cGPlSPa`G!M$Pr} zYqyiK!E32)%^p@A(lla#m5Pa~qsX3?WuiwfGSW2Q#CC0a60B6b{xsl=Js(M&(hnOk z)t<-HH!k4rpYGX?#7iw#dgYjQQ2y9WtDlf~H*|77(lXS=1@%*({c0oBGl{>5QjzgEZ$TWK3^hVv@$C{-FPSU$>MowHCU2iw zShelrhZV&?X4kMy=}wj14w1Fe11@f(@K~o1H8#m?>2_Kra|pI$is~GT5%r+n#TdP) zGjBT>QuMFjskXl_XRN`QNXafi8(j_?S%Tv#h|tn_Tdi1esvc_sP5~CZiZE}JEvq8* zahOD3`Vy7^?N7uPxfJzR9Q;vovBZ)-d~TfS8-N=0#erml6*CMV5$3g%aQoHqsKp1Y zL{d~q5xTA}qUufQd85vQIoD&}&*gYtn|s_fqrf6Ls_z!06wTBkq1~-rewBY=JKziK z{;d72JyK)~bAj#xa2OphDY30Pm>1}_WC%5#d;=1u|)=r7PT$#x8jY@-=3;8CS1zdc#ag(qJ6MK0Qa))Zl^@fa$|`akoGv0UNJ7(5>ghObI%2kY1C}LDDam)> zC@#6ApM+i|%3K`W%J@9M9e1%!?|{WmiDN0kjnt3yoH52x29^lvsax~5R2%hW(zAv_ zSGtpcgzw=|V@y3~P>ml$XS(L@A0KH^C)J9W`*!oZ7zd^;5<3`F55Q&rQwWm>Y3yXfYOv6Cnr z!9w}bIt?k=)s7y%IlzwcWTDBo6Z+^v1?|NVi81G)Ij%!+or>?`ph&Z>ArM02>PU0c z%1))Mvvy6DhQiP*CzoS-`GN!;it-+rf_77z=Z6fw21@Pmb{b)PF2ppO(zeELoAnp^ zb^A5s>KKJ^+SKN;EpdZOd3&a(oaY{7D5JO4rZ$(01G#3t3Cnv$F!W-bETkRB>c}7_ z)Z(7(O_DE$bI!08ON(f_w9BXM_3TT}!id$7ebHUoeNbarp6JeEU3+%IqH35vodAo7 zRA^M~sz~iJs7<>CJ%ipfDid20pAS1G)dmcMRC%vRWfB>)0mjFvl|81&_pkXv3UpmN zy#1eQm$+?J`M{oppW9Q^EXKAA+G;p5r31YADAQrD)S2N(H5qsei{q$Er6Ie$gI*^g zUE*bgWTm;>r>I=!42wrIOM@oI*p<}P)h={0UEZ_e;_-LGz%6@sr{-ICluh8@;&rje zgew)+-8fV*w$%y4MMuL23PM@L&rM|Y)dzES;=2#|<$9ytWoeXR(s=t?x@lQ`&rkfd zbDRmQl=}%iB^|wqsJ=6B~#p3b4^L-R z3`vpq$g4ndtE{zcUb|6!UP|aI^m466lg~9tz8$2e+|5^^$XfeX8>m=#-#FYSZNp89 zq87eW!OwC~=Sn&-4s^Qk@(d3JpV z@^UM-gTBiOx#=l}&}K)}Zht4WgZ4cD3Np%=*nF9B%(zpPks_GP_-c*BC`WgCRh}fK zOG^rtM3R?DZiQFO9!pym(a-nT*CMEjGF&WKf(Jt=&vL^dC61k!(|b9rQ?axvX=l+q z<(mzvR=9Mcl(DU?T`ZH&TDKW04fuPRF4O}dY#h5!nRv(Ldk3WyK=DgVnY9F|3v8mo zZW23{Xye-W)4Igp@x4*BHt6NL2Gz@WQEU0L9hKtksjOpYu|d=6QZ|ptx2VLlr%R+6 z7gcR%!oJRVp)aL+fh;XDv&+C2O#De zLSWxiRM|1qPiuoR#)=9r8?JWx&_6p$qpAb zM<_0@ogKTqG|rdA)wUTbk5tO1pr&8Ttm`#Zbkx?i(PPz=)^wbHR@Z;}Aq3Qa>v}Tu zbjfW{!^;dT&Ax&p^;4P5UOXGN%2cKN;kx)Pg%wRwdPvAhFF5+EtKnM(*D4ya)GW9p zpsI*&^O%ZP6w@zZw|e}G*S}`5N$-dzw@+?wZ9lnn@}y|eq>dAg zKaO-e1zWjjZ(p!jQ?C8gXwr!t?I$1C&VRe=y8&7khl@abBY5=br*b`)tt>=m7cR?x z>bhvkO0e^aQ%^a5`U+ke>ycYCZGt+TL|y-)f{v(EOcJe&d3m=ZT9hj;%QLtZIXET0 zhGq5Y)om6T%`fNL2(3&ktX$qVu}taG#7UDToiur3sW@@`t_ynf%6aRVY+`xQyN{c9 zBui6|KTTi2!N;jBePbuJPn|j`I_8*2AKQ%kt%2=Y+2~WkLr#_;v!WP%_^q(?cd2dTMCX@J&No zz^9|3$A&hg^gsTY0lWIeZhvTN-H!zfJw)d4Rm1CP;h~{TLrHzj57QQe3_TSMJr1ZfdmNKv7Ek0nLxpFC zuO7Z#pg=!r-J5tm@b)f1GWQUp7;z_P7@KN_eNq1aW73!eCsxV_=)DSOTE`r)hfD+ojP z3_T7@#f68(aeaVUR8i}j>VF(z=uS$|9YoQ$8oe@1ma5Vg?W?-Y6`c%i))<~Knl#0m zlo5Z6|0qACFmwwHx!z>K+4hL~+idMz4{5ZoMqvy8;KR_9)xAha7}4UCyZ)z~Ybcl~gsY@W@Bf3o{G%gLz$7(Xd1lm|PS?7;v_%MR;YIq3` z>J_A3I_{$dM&d1``JH;8d8*JBO9y>PV$)o&8?VtVTeX?-VB~_bs|l#AmLby*lTetN z48qj0nu)O~kzH{uiYb8&+aXJ_bQwvhfw_jp6qt#s2-IkFm?3xdc8(zSHq$6O!Y0XQ z0T_*gJ}+otSWX&gob<=q7~X*VZKz1`R=v#jGV3xxJLEW+?rwg88B;#wHWm9&Jag!O^NS(1WCYJrA-%8-h0 z4qSvP&5?L8v~_%D=-uktCCXWBb_^O#G)1hc`;xUmbK&;jX&!Hp36s*;M1@6I1t?x! ziV+4Px3zUl`;%o1K})I99mRO~%vIZUzB z3+|R-n4kP~$k5$zU+TX}x-Vv%N=qK)RKP{rj%_WYt&nJIW;`$xb?RP+oskr8ki^SV zx-ytJX3}OkDDS3>4vMwznZ6dIgN0nO6bH_!(fguKN|zW8i|@*W=}X8s=m`x*%n;}4MlJ?UX{rvqR0BL_$P6npWKyM(r*g$&%~V~c>;XQ4>yOrI z%`tSi{>zl9S8M*shSiy}j)o7Ckr;by$Tw*u(vW-UmFeEph(zg_%+Ur{H~UEcC@ZGO zSP**vG?Wx>Tmt4KC8D9=PDiMxcM&_%l|tT(PbGa0uTM2#&xUT6cP>GzdlK9@jW6lc z>)b_us75sO?uxk96>7LhRdo}M()qS)J1MaST_wX)M?=+96hS<l zLS-|1yQkroujV zflP_F%IT*b&G}xcewS<=Jw%zUaK%@r5hXG8lRL2SU({Pg9RE+6PqvGj{!f~>X^CeH zN6FVA)VcCINdG!kF-wWk|8pHkx_r`Q=~=Jj5IhXo6}xx36yX)kF`=g_c^azHSedj} z-gbrXSX#{>%8N&AYZk3n)J>&_G;3&jgL-IeqW_g0*-+vb$G@IaHjb1Wy&}@_6to~b zhRDdHGY>A7Af{g1nA?Z1ekD!AV%*7Kte!SAYW|d#)K}6T((w@H&lXLSbK4p`?puRb z(xB_0SxPk;lt+t!Vp*}l4cj8)!Mosx;xCwHjY7Uy{R-%doNWR_ke50z**KlrvA|_0 zhz(8>>yqYbg`ss8Yo4>CzMkHmwspc51g#cE0LzTLGI{OnG@YcN{E25^$`tQawTq5L zpNg?FZ(|Q0%DZGdh91{@rgHu*AU|$~`b%wSnepa>C*$83}o)IYo zw`n-Iv%!n^ieeC39&}Q}e2nIaMp9$bur0W@1Lu!&=+<0Jo|`nu2C2I5dlV_yf~e7v z*vqC#AALsxhld_9CW-|TO`zJ$Y_XCa097zS9a~xBTdc_@f!^mGbb|GAM=uGwt8> zv(?FBC5WF{bgtTOftkq)RPShYULp(qMO+cl&OcoZHr1ohR z3ZfUcZ7zhHxcTDJtKUl_T452Gq>wkuu+2i5+$g@TrcI0L>7aYX4a~k-WA5D2z~iuz zYU)rkH@qGmLL0%1cp{`#wJcX@b*}>*i+eqjH02zltq?(?dMsfwcd?fduhLxN!O=iY zoH%HKo(7Jyh%B_hE1v+ zY1`(8PhUn$qwu7j*0``JmPM&qQCaafJJa-#S@v~ev#AMc>z5vGvuT&t1t+DUZdib1 z;*G^pFG(^gK)51RnfgYq}Xq#6C(VWaY{ zz%u8is|)Iu-0_TRFBwkfpOagoR@mS%b>bPOfoQ8zYIW zmP73Y>s8R_R$hiVU#4Hz)hTKf|4dW0^aX;n%(L>EMA?1;A6BHgRfZ5Z-!a+4w*A@<8@ zmj4IMn$iaBtMh-1UYq}s=!CmWDuRR2c0CpO^64ZqSB};IM?@o$5=N2ooRQYd+^*4@ zbBFy78FgTd!oHO$Kd&{u&iE`vS{daVo#m8Iv+vwT5fl(AMp5 zM8v`-Q;UuRBW(j zyO@4il;Fk7kfLn-5qC@m{Ym_*rp%2;WWtfEqD@*hx4;#-joOviZl{u|NRcd}l?tZJ zyo2F4BVa6gx0sYEWGDB_%vji1o3n3aWqmbY>UMpH^!0I*&N${Ube}bU6AHXRy=7`M z#BrxQbSxZfp$=}R8$N@A~+Cdiu5DGGx zN6h6-Jk+%q;*);+f_X)Q>P9QUh*z%$a}p+1OYmbZ)S6%9hwjjkbnUG)FY+n{5|(Hw zb9&(i#oig@nMonhs!`gayea%VEQJ*Ufil*=*}9l*Jkn5f7nm{9kLhi?a-@|rQ4A4? zD`whaQd!*-zg(ww*QI7gUWx($!EvtK#Y6+{v*m5muz9@lokNBO5=*`@shTIO-txM2 z%;214s*V06U%WKG&uG;QK)41TR8nD978y-x!W1R8RJewahPzcG4?a>I?fewPSkG>Q zxk2qC{3ZoJuqYZm!lJ1NH^?-yN;fp1>97?L?z0?+2$=%e)Da_H{NxT$!eT*oJ?mzh z%iztV5`06hy(1U@aITKq7`qjWnd%W4^%lrNg8Wuns|AMd)~K*4x?miXK^p6{n4#3& zD#?QREEPuC)fTKNwkYhG%?66g;*3=ZD;y7GJ{UVvXDkxShVRI{Y=Q#|MPagqXDh() zn3Ag5)1AMBYAh+!6s#}Hv~Dn^c@-97i~{~n>VbJbXp64^iEU2(&~MmL1*08)?bkw1 zv3C<(>)VY5iZDSHXB$Hs!rH@b2jQwti%%g(e5(X<D%2|8m+V*>0KM%%hu_ziHU6$RX~uTlzLt(RBuE{2ynXY`phFI)|0hVG$L?fo@vzO_;XainI{DWBiQL-X#;>&z!~ z^pMNFjE2U7^r{mrH;IBLhk7HGwS`F5r?%32tZ}&`SBV$WFiWWOyWzo80c4yu@QA_P zM_~)nocvd@VXi*=&n+{3X4EujH&dFDVU`Yk<%Qp3j(>aE47Q2+T@2C1`4M!FHhcxK z&KQ5P%)5oygx_p>90Yr_Smb$h4uKw>(5%psGMIYNJ@lj+Q$W%hVj^%jQy+=hY(%Ly z=~taA(;CSvS=lY=vW&@Auhjhub%H(xUoPcSM-2;8G;UeqPQTE}{L5At`(#`jZ`-8k z=1*XX)2%>300Ef6W>^Z7g7knu^)VDEJXVJ5aXz6yNQtm*Q9QZ z5Jhs%^RB8m^h;(aPDlC`9$D)gF6rWVLybEuFjMnOlXOOCZ7U3QS-A!_Wi=>Ly=Ln&vc=u}p0MWx12a8382DLd( zLLU-sS>vR03pJ_8qv}~K(Z&!7aC4BvBxS+hJ}jX)C0sR>Q|`GgqQVLOn>coXb1 z9cuwM5wzkqMm!`W>nMA02hX^30~7C}fX!y$k9cE8q;^uKr|CKr z(hSj4tK?zm5jNTwZR0#@<%%})CS!#DSWFY2#uuRV2#&2RTrnxulWsGH4#e9GBP)45 z61U$sOW`MT!*8vpnddiG?lUcrRG7()f6x-V!mCV7$z5G!vIMvWwaC}pqIO0gyh(tqt6O-_|q-5Pi5Aq&E%oR z_!hO#sa+LRr$gGfnYLvi(FR^)HFKNx4Mh?(n45%6kd{25aVs3z%WHQ-h~&>Kh8ZtOz1@?N^%9F@Hdw3p6-A=! zk2EOTC|4_E5VPd5m@Q>x{zmK7#_uGmG#zR;Nqg}v@JP~QGpoRWmSN}{#e^ef7>MvX zvw4yUNi;8y!N=T4VzfqKNX(T=NsJnZPvB*VST$56tX3wi#%KA*tR%H17?T(tKZ~_f z+sI*?QhA7WQwQTuM?p(y#x)OuE4gW@-jaC9$%ja@mZXfi%)p%zKGREbum;*q)Toij z^C4FhRT<0$M)pn(SRbX$vYyDO6x2p=^)My{1Ls82kUgp^Ctt0u48E--RzhziiYX?l z$pdvrQ@a5tLywX-K5y$#9+4Yd+&jYjeV$+3eq#o_|fI;Pkg{?k;2 zK=j1c3jb;<@QwI<4}!jAyr{2gsvlQf7s05>EHVLAt5Jipl+sF}jf~c*r}zq}GQU&G zno(aEbD&{y!;ITw{z*AhR>Xi&N~nnpxv!J7fau{M#vGtCam`*4v`$eoH7sSS`a!mq zY^gJ!A79@Q!lL*9HOyur6PA=`rHuv+bwsU8z55N4wR@^(Nm?$^tePb>C#r1k;>w82 z&53_w9IBfd7wrIDE09Eaz7>)91jPI?`&)srft0btq|LB6>bpLkDWOFf5xw0=m1@X% zv(m>;L>VNrKOerblIuDyUh1p_VvWgiO{vaj89=LtUTXjqRoTLM*)2fGsQ(vH;Xiha}D0wOuF(#PQ2Gn z4PRO@0zSw@g`kmCmzmXsxcP+=xi=}LW`mY+g1KW=*V+MF)V%MgkO8$R1$!6<>Dx{y zF^p|DFFTCf%S()Ja&khm>I~{)66y%hto)NrxN~0lDyvG1VNH~1iQhh|x>MI=mNW)) z`fQlyi{8j!h&yZ!#?3^rF}a%N%9vrqKV562aRrt#AGVE$;kG6Xb2BEHOD*1tCMrXo zAo8JTiYBtb6%ckQE&PrtKa9wfBHL8crpq+WT5u87637-N_9G>@e97g~u=@$pkVHAE zqS;~InF$G>*o^!nb5Eu*Y{d2At`TIU0n`5v+h{N$LBDIHA8K`aA`NC9uF85v<0uwL z;jYA1nF6A3Qa%*fEP=~uqJ3BbIeKhV(00Xj)SI@;XfofG>sJXd(q_D>WWd}$lYS&1 zt*s5jBZy8cT;4}$)T&kuRX5@+1Nsx^-%OAEdCewfg1}br6D2&GkzatOCn9;VP)hdSe%*4BOoRtvzi=aJ1c#aS38@I zQX@W4debdy>IA1FX+LIBGHz*E`fw19W3Oc14mxOv#1B1{w17FJd8v{n65SNHeYwNf zsND@(7i@i!!PWxob~NUqHj&kWq{u;a)Gu}CE~qSrL5SVio%fVqv|{@Cpjj zZ1UDx(u-tYB1IpWp?lzs&2%*MJ_g7apZQetzD`Ry&k|G4_VP9K6G+D2TRWZ~_#L{3 zrq@$9Ij==u2$WDA(_zzEwej$GPUOY28^NV%SZ>Qm4VY!)PhzYSN51OHVyqLGH~2wrcw^fLsBLshq%_Y^77zL=gs|Ssr{Xo*&TVQ`SksuYrVR>h+{Sai z3WZ|1Ei;2pPj}O+E#M=MIWzQbhz$FV7QU8AlN)MD44y*9H4|c$LQb{{Y)89rl2TSl zTrl0>wnXx6`TkQZscRFaUl<=vJ#x~hy0pP$WEnr|;2}ntTKRfRw~a$x;cHk7EW#7C zpodDx-rT3rh?G0Gig0Ms$*tO9J^;TUXP6MOc@fMl zHiGZcaT4w%iA_{{exL5j36*OB!~~|n;MDc*cp$7fvELNFoX38sBA#zsyBL_QTw0Zl zOj`%&EA29HVUI9u6%|s>s&~P(0ED-Q#kH!!B81D))dx@^lGHe6RWn>)ev$@!y@e?p zAJq6#sh$I?#7iAB=$u)WH!KVi%G6O!s$Rn6)S_o66`D2U7p?dv6Xt1#f|n<8V84aD z+pa6+i1^ehlz{~n9hIi!kc3kJ@$GKv>rRPwoa@z2eHJc~EJ_@nSW@gU(`v@VB5hQm zuC8X9Zyb_HUHsCb8Wjc7Oxp5Z$PlB zHLM4SHmgxhu-}&Jk=w8t*6PCraSKUqa<2CJj;) zO`Mwwt&Mh;HEJu=@%Phj4uKa!)v@;KC`wcz29S_iD#)iFSfz!WgqEADL{JFW)NNlh zeq`S*m8pr}TTBjSSrf4xrbePe?P(6|gl^<#!3f?3eVPHbQdMQ4D~W^af$WTIup)Pm zBAxX+g>odGBopakycuL&cU@#zjn=vh?Y7Y)(Wpz@GO_Lm>gX*HZZlFhAEwM&9#FT+ zR;JSBFrr7dNKobSu~L<9$RL3|sCwHwMJ~EHY|d%A!boq12U^$DrS0R5L64Y*!W#?l z%3paGy;psCBmxnx4A?+SFnod~CtCL4t_@wg;RX&*gDhV;?dzRW9*veKW=?XDc9(8~ zA}gv%3Z7L`)CmvuJb^#gUU%~~<%A=ivOvl56?vzsECy(Slup^nAq=+Rd&^QeNlC+4 z9D8IVJ`mv(DuPJI=@QnI$0Fz?MPPNY&=8X57WhdII>crawMRhGR7!#p`_dTosmJ%RXi5k?c!E7SCeCS#M@n% z@Zzc))If#gSGLn{HzjIsW<@ff^Js;K6xkKQTFFz30F#D@nBpQU;hQ8N)-o|GYC4!w zZ5i%Cnv!optx1{zsdtzaOJhyKNH#1V%(t|ls__v#fx2?uYs~Gt86LX@m3n|qgYmb+ zX`M{TjSVa^;W3sZnGw@Ans*W}FCJuxZ>kO58)nCRrAE!x9!bfxG%P1(`x^N8NM&9T ziQA}@Tr-iaN--&A=SMCgpIp1Nt4A&}f=g!=?m^VVbG=NBwAMNO4YE=OdZTJFjlO$Y zE5FI17VR+O=Jsi_tCnm07`aVT{ovHOY@>$FX+n3AhLnLa z+ivHX&}fE}=l+E&u$T3Q9V1kFU&{dBtw#Wpty(l zn!H*vwuSeMmg>jyxM0GM?oDmBU!T*@=Mh};V?B`yuefV3VMroL$!ns@^_i-EM}HZ@lQSn7b0%Ap#+u$>&A@YQfi02_&o?VhOZds{##^2@m9%aAL)%@xHvA-uqI(CzPX~(5ihJrH{=c|dZutr`ZbR@67^4AO=5_01*_V4I5&KU zMkD`C>WRix-%Dy4o5!AtuJ|jV5bR;pBjpFm9@&gpBmt!f?V%p*8MXD)>-oM`>i)gS zIhIV#&>=JC4SJL&5a4&n*vq#rWvNXQAa$bLB^bEH^;LzHt8H zoz@hWW(~{FFjJP=$;7;21~F5a#o5xzMf|$rfYCfk6?sm~nWzgNgRsjR_P2DTJ{#a7 zgOSqPNwcYz%#2%KjkD4aD^N6a-_W~!!(TX?67`VJ39)`!dVE^JY7f7| zSCMK9L1T%hq}eoq2JDQ+W{Lh0em5`-#a}ohI5*5OQD!JUt)_@ZmTH0&Uz+L5={6fe zPHtch8s3!DY|2}dMfT7kow?A;E^1<2uC$wvV;(`mG_m20Mkc~&9>%kkVUFkAhL7JA zPa@sOIk-u(PBCNl@KsS_98xQbO$m}rF-?uW+)qo3_G}xBTtlsGu8`&()~IBI))9)v6w<0oqE?3> zC+_BkNw+mvy(Zl!*1!g!+2pa=0=UiurV7dchA^!0pAO6p{{P<2Z^x3V3gi7KWg8Mq z1ZEJ8A%I4?(MY^7G2Ts@=1kknbf4kO85BE{Oia8dNa83C$oK+8AQD3G73eqe_kC;c zUAwAwoj!f0^@8Da)vmSIUh7-`_Ma;4J;G=-LKbYQZ8nByd6|I0^&r8wUB)A~#=~3^!eN%S9g?xAe@qr>H-!5&j||>n;8|7~ z2~bS0#AK|WoRhj5XC8Qpd-AT8n3UQ~up#ZiB@Fd=QfO$ZbPCzN_?l>}*GlErvGFnL zwFU5WX|Gr0 zCzlg1r2qo930pC&a072PvbI!~+S2%kB*H?RQL?P8j0@Sg=gL`R=YWMxblw=#11O|5 z{`0>&P8f)tp$em4a6u23UW=<;K-Y@S|gjAjNU*(9^}iBS$X5$ zIbKeKEXMEgNfQQH2^Q&TmnTY{c|c(#Z_q&C_*{)3l49jXeo4>(nRJFFH2t7PEwwX> z>35J(}%le?oK!hJkC9Oi07+J>rK!Y{oGS&GF=gH0W#0ZMp+PXyJ zxg}q+k$7a8xpU!lDvGW3gXJmoJTdOabRv;OOQY;z zH^!iHNoP9Xr+$3OfHKXfW26Q7qL9c~tzU4F!+H!<@!^=98@V&NDG?~7|g<6%$vRAm@-OnY{s>*K4-*z zBt>E2QGu9GBlesWTd2xQ;kiOd5jiwM1|cCS))&iPbT_CLFHOe@{d z`sctuN#0LHkw6!fm&nfWH&|a8mItMn@Df9==voO?Np3tpZ*MNFjWUDAST^=<-`-dF z0Wc<~8*6Hrf%AtdsUM(rtDHcW*IJkZo9Jd^@AlrKYIah_T#lp%l(XBI^_BphUM(4zfp;pU`7W`S9LKS+Vq;v^U}m-^maw8HmP3?<60}@ z7}3=*S_9*1D6ZM6a)Wc%>{Zzbw%K20C$;lPN71tFr>~59vDO`>IObN7z}xu-Dv zDiiCQ_s#4is5GTeBH8XZE|iLtcSUffbQR#rv@)y;bGt!+I9E==O%uxhxw^ngRS0*L zi;Sf%?+tC_4A$xZiq&cqSfvnhZZjmWtVx?`bO63vFIFcv)~kclySERtls-k9%NOXR zjXfjrXzP#`8m7X2S92@>%mo$8Gc9fOqgc$73jAcWfJw`(WcPVV zONlI3z3y&!G*a!Jw@4{fZN8_pa?~fAPCWdK52eTO3~>&fO(t@u4|5c6pq{~UM_V~n zCf1!@XAxi^1Q@zJP2?syRck0Sl=C}K%rvN{U~*ZYJy6=bIblT)Ts*=-+B)V%-N++| zNzLN(VcvE!=8_W)qyQcO|9_5gl?6cr0BBWou?fuE5wojsmxSeslZD69}j z{SLa7M9XTt{StIB$|z7UmcgG55_%Y+YcCrUBkfl=f*)|nX%-qImG}6etwPMbm7h9c zz^b_ATV7Z2n1-rZx$31RRizb5Cl>J$gD86}kf0`VX03MA+a|ifWttcY3=|$G_sSer zlbgzDB#KrWDOheo%1?@rN1b$(L=xjje{jxdb#!og{0FJr){4~!I{AhT6rm`8f8VCy$ z#nC7nm~Wgsjpb@QZ>G+Gc}$+gS02)xaxrm4h_dgGUBzme_%)phBEvhiA#mp}u%S~= zK3tWYlj4=qIbl_wlhE#584r@N(DSJR&!p3aBW3z>6B@Gh%09#1Mhza(AXWnM)K~$7 z{RdAKG2?!>Xg(u-Kb$?S24N=Q3kLbgC|GK4u*h>CGjb;pvd|I#`Cb}?(Hk?v>80R2 zUro>Yak>djmq}o@7`-nK1Ox-Sb}wHrbj@eNV+xej79)dFQxoplY9Ts!f-qex>e2+< zaMD=Fc+992iLi^Z(=22X?k~+TaY+G$hNv6RN?>&?f^`c{X&3ClzUYDA)KsKAp6>hC$vcI_*lCySBXS3w(NGfdRTzyjpbun@att~jA|BGDJMzQEb{R@uk|qq=SD-w#BjJ>2(1=9PcfLWVinf(8`;3&mTq`amBpkc{#AHW&6K}3+99Uf*84y#HFd(7ko<`0y5A0=v0bElv*?`<;%zJ+nSo z9W6MicV~HL`SxO!t{yIVLH8+_pL#kIys_rRSLQ-eUii(n;A> zj0wfzK23rn_GEek43uP>5ug@NU{9Q6Z$}S>@dr|o1gdauJ(K*jh}U*(@;aK+WJ6wA z3KsTl2xtkWUDT?l4ZI1G=@7quHrZ47eFW+7fXJc(ot=SFdRV{(GNOJ1WA#jxS;iA^ zb)K`YwAcDEB))`cYy-Sp@Nk!&zNj(*cIGNAYUSvKsZtBkoi@AGq-t{;M>~VKr&j8i z9Nz>KYc}~oHApg(F8v1)l5O81gIG=THhuX7F%;h&*CiCG;t%r+i_t!H$OWPA(5{$9O z_%o}}&+lun6kyZ{hLZQIpQ{W*J@Udh3qjO-xA@^qOo@2ofvWjl_Ow_Dy(ZWJL%DT8 zTkb!t2H&wVWq(x*Sd6@m6W_K?&*v(+Vnp&#{Y7VG!I1NS7rX1%o_}Fa78f9~htXHS zpTBnf`Dd>E;F)XRZ{5{SknCqeX6cM}tMN~N_3Q6;zj^H!-E!rlf2}s0o1K0wMvO-? zujCk@q+(e^!X!cF(BGU64-#A{ei92 z0__!5=1Yg2nx3dBiC55e&1oC9r9)A#s%3!xmiLni6`X0{x({ufL^^+U+i^v4 zLcYK==;t3~e^O@QQpzQ0<)5GLVOFG+a+~ow5rx~o0dlS3%hLc-oK#d6o#DbAwp;Vl zxjC~r4Qo*N%=`&reZ<(q!D3V4pdy{+C@4LtN3Fz7{24cOICtY|^h{MEk@4twX`&hZ zsX)yitVq>BY>!Mg5TN-Ivl_aSZzKRgVyFfy#!?}M0NXbZrwmXh$*qj@hp2?nriijv zauWpZ5HB$(`PUp6DLh>GM9lf0tabiSCiE};G5Ff`o-Ce@QnE{T@&NFNi`vtQ!f8@Y zu*2h@oI6;g*y4E?%AK0c{Dr9T*r>NDPr8myp zFH~!SPB7H;)9!42aCB)>b(NUhUS_68;yf!cz#)-r4-Dq)Xtlg|r{a9rGM;W~Uk}$4 z%RP;FNC+xtBC2Jlx$VgfF>WA~hk*9RL)i3Gb0ng%{Yd69@(n{SKyi{GqwJHH*%49} zC3Guqw_D3#*_CE7J$Vxhx$SjW=o)|&s!XCWtHezV7$SWbt zP8?0GEjk=i$OvhGeCB~BIObuFSgUn!@oZDS5(m=ekVwUAh~y&Ww8HiJ{kC$0hs%4X z>-*i|^7ie6*O!#E%T@E@-3zXsEKXiu^pD1${X^yNTZ?z>%Ro>44rPuoN@V^SiN(9e~##rwKBHH-1*{!=M7gk^IJbS z$L%(4Y9BUcxxP2yeCwN=$I&1&H=Ii}l_zlY*UA4Aj>(zciL-N3a#!ED{ znKgPFUayHa@37C{&v(?{k1deeF`}9fhrxlsd;&&aX&GFmE>vy`FD=Mb5yT@x* SYqe}3dmJ=5UVw$&8vPe{wGScy literal 0 HcmV?d00001 diff --git a/ckan/i18n/sr/LC_MESSAGES/ckan.po b/ckan/i18n/sr/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..a26f910fac7 --- /dev/null +++ b/ckan/i18n/sr/LC_MESSAGES/ckan.po @@ -0,0 +1,5117 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Željko Kojić , 2021 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Željko Kojić , 2021\n" +"Language-Team: Serbian (https://www.transifex.com/okfn/teams/11162/sr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sr\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Звук" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "URL звука" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "на пример: http://example.com/audio.mp3 (ако је празно користи url)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Ваш претраживач не подржава звучни елемент. Али не брините, " +"можете га преузети." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ресурс није пронађен" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Немате овлашћења да бисте видели ову страницу" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завршено" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Чекање на одлуку" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Подношење" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Грешка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Још није отпремљено" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Отпремљено на складиште података" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Грешка отпремања:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Грешка:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Грешка трага:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Последње ажурирање" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Никада" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Отпреми пријаву" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Детаљи" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Крај пријаве" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Складиште података" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Ресурс складишта података није пронађен" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Речник података сачуван. Свака замена типа ступиће на снагу када се ресурс " +"следећи пут отпреми на складиште података" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Подаци су били неважећи: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ресурс \"{0}\" није пронађен." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Корисник {0} није овлашћен да ажурира ресурс {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Приступи подацима ресурса путем веб АПИ-ја за моћном подршком за упите" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Додатне информације на главна CKAN Data API и DataStore документација.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Крајње тачке" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Креирај" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Ажурирај / Убаци" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Упит" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Упит (преко SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Постављање упита" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Пример упита (првих 5 резултата)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Пример упита (резултати који садрже 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Пример упита (преко SQL упита)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Пример: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Једноставан ajax (JSONP) захтев за API податке користећи jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Пример: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Сачувај" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Поље {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Тип гажења" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Опис" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Речник података" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колона" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Тип" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Учитавање ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "АПИ података" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Табела" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "Прилагодљив приказ" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Пиркажи колоне" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "Прилагођено поље Опадајуће" + +#: ckan/templates/group/read.html:17 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 "Популарно" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Наведени стринг је непреведен" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Наведена група нема опис" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Скуп података" +msgstr[1] "{num} Скупа података" +msgstr[2] "{num} Скупова података" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Скупова података" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Пратиоци" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Секунда" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Минута" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Сат" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Дан" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Истиче за" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Јединица" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Истиче у" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Слика" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL слике" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"на пример: http://example.com/image.jpg (ако је празно користи url ресурса)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Претрживач података" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "График" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Мапа" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "грешка учитавајући поглед" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Није успео да учита поглед" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "Складиште података је вратило грешку" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "Прокси грешка" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Координатна мрежа" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "на пример: 0" + +#: 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 "на пример: 100" + +#: 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 "Група (Оса 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Серије (Оса 2)" + +#: 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 "GeoJSON поље" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Неважећи URL." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Најбоље оцењени скупови података" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Просечна оцена" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Број оцена" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Без оцене" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Највеће групе" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Број скупова података" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Без група" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Најчешћи тагови" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Тагујте име" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Број скупова података" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Корисници који креирају већину скупова података" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Корисник" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Мени статистике" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Највише мењани скупови података" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Текст" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "Дошло је до грешке током AJAX захтева. Учитавање приказа није успело." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Видео" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Видео url" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"на пример: http://example.com/video.mpeg (ако је празно користи url " +"ресурса)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "Url постера" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "на пример: http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Жао нам је, Ваш претраживач не подржава уграђене видео записе, али не " +"брините, можете их преизети и " +"гледати на Вашем омиљеном видео плејеру!" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Веб сајт" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Веб станица url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "на пример: http://example.com (ако је празно користи url ресурса)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ваш претраживач не подржава iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Функција ауторизације није пронађена: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Админ" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Едитор" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Члан" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Само систем администратор може да управља" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Наслов сајта" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Стил" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Ознака сајта" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Лого сајта" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "О сервису" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "О тексту странице" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Уводни текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Текст на почетној станици" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Прилагођени CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Прилагодљиви css убачен у заглавље станице" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Почетна станица" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Немогуће одбацивање пакета %s јер придружена верзија %s садржи пакете који " +"се не могу обрисати %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Проблем при одбацивању верзије %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Одбацивање комплетно" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Акција није имплементирана." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Приступ одбијен" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Није пронађено" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Лош захтев" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Име акције није познато: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Грешка: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Неисправан податак: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Група није пронађена" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Организација није пронађена" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Неправилан тип групе" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Организације" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Групе" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Тагови" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Формати" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Линценце" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Корисник %r није овлашћен да уређује %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Немате овлалшћења да извршите групо ажурирање" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Немате овлашћења за креирање групе" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Грешка интегритета" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Корисник %r није овлашћен да мења %s овлашћења" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Немате овлашћења за брисање групе %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Организација је избрисана." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Група је избрисана." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s је обрисан/а." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Корисник %r није овлашћен да мења чланове %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Немате овлашћења да креирате групу %s чланова" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Немате овлашћења за додавањем члана групи %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Немате овлашћења да избрише групу %s чланова" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Члан групе је избрисан." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Одаберите две верзије пре поређења." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Историја верзија CKAN група" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Недавне промене у CKAN Групи: " + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Лог порука: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Сада пратите {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Више не пратите {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Немате овлашћења за преглед пратиоца %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Сајт је тренутно недоступан. База није иницијализована." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Молимо Вас, ажурирајте Ваш профил и додајте своју емаил " +"адресу. " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s користни Вашу емаил адресу, ако желите да ресетујете Вашу шифру." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Неважећи упит за претрагу: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметар \"{parameter_name}\" није цео број" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Скуп података није пронађен" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Неисправан формат верзије: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Преглед скупова података типа \"{package_type}\" није подржано ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Немате овлашћења за читање пакета %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Историја верзија скупа података" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Недавне промене на CKAN скупу података: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Немате овлашћења за креирање пакета" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Немате овлашћења за измену датог ресурса" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Немате овлашћења за ажурирање скупа података" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Скуп података {id} није пронађен." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Морате додати макар један ресурс података" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Немате овлашћења за креирање ресурса" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Немате овлашћења да креирате ресурс за дати пакет" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Није могуће додати пакет у регистар претраге." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Није могуће ажурирати регистар претраге." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Скуп података је обрисан." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Неовлашћен да избрише пакет %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ресурс је обрисан." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Немате овлашћења за брисање ресурса %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Приказ ресурса није пронађен" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Подаци о ресурсу нису пронађени" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Није доступно преузимање" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Немате овлашћења за читање скупа података %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Немате права да читате ресурс %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Немате овлашћења да мењате ресурс" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Преглед није пронађен" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Тип приказа није пронађен" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Лоши подаци приказа ресурса" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Приказ ресурса није испоручен" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Није дефинисан ниједан преглед." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Корисник није пронађен" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Немате овлашћења за регистровање корисника." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Неовлашћено креирање корисника" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Немате овлашћења за брисање корисника са id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Ниједан корисник није специфициран" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Неовлашћено мењање корисника %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Профил ажуриран" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Немате овлашћења за креирање корисника %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Лоше попуњена капча. Молимо Вас покушајте поново." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Корисник \"%s\" је сада регистрован, али сте и далје улоговани као \"%s\" од" +" раније" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Неовлашћен да мења корисника." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Унета шифра је погрешна" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Стара Шифра" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "погрешна шифра" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Логовање није успело. Погрешно корисничко име или шифра." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Немате овлашћења за захтевање ресетовања шифре." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "Email је обавезан" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Грешка приликом слања email-а. Покушајте поново касније или контактирајте " +"администратора за помоћ" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"Линк за ресетовање Вам је послат на email (осим ако наведени налог не " +"постоји)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Немате овлашћења ресетовање лозинке." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Неважећи ресет-код. Молимо покушајте поново." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ваша лозинка је ресетована." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Ваша шифра мора бити дужине 4 или више карактера." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Шифре које сте откуцали се не поклапају." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Морате навести лозинку" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Следећа ставка није пронађена" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} nије пронађен" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Све" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Преглед" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Управо сада" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Непознато" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Неименовани ресурс" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Направи нови скуп података." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Измењени ресурси." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Измењена подешавања." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} преглед" +msgstr[1] "{number} прегледа" +msgstr[2] "{number} прегледа" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} скорашњи преглед" +msgstr[1] "{number} скорашњи прегледа" +msgstr[2] "{number} скорашњи прегледа" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Није доступна е-маил адреса примаоца!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "организација" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Недостаје вредност" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Поље за унос %(name)s није очекивано." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Молимо Вас унесите integer вредност" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Мора бити Unicode string вредност" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Ресурс(и) пакета неисправан" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Додаци" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Таг - речник \"%s\" не постоји" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Скуп података" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Неуспело парсирање као валидан JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Организација мора бити наведена" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "Не можете померити наведени скуп података у другу организацију" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Организације не постоји" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Не можете додати скуп података датој организацији" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Неисправан број" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Мора бити природан број" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Мора бити позитиван integer" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Неисправан формат датума" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Линкови нису дозвољени у log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Id скупа података већ постоји" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ресурс" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Име групе или ИД не постоје." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Тип активности" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Имена морају бити стрингови" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "То име не може бити коришћено" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Мора бити макар %s карактера дугачко" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Име може бити дуго највише %i карактера" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Морају бити искључиво мали alphanumeric (ascii) карактери и следећи симболи:" +" -_" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Тај УРЛ је већ у употреби." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Дужина имена \"%s\" је мања од минималне %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Дужина имена \"%s\" је већа од максималне %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Верзија мора бити највише %i карактера дужине" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Дуплирани кључ \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Група са тим именом већ постоји у бази" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Дужина тага \"%s\" је мања од минималне %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Дужина тага \"%s\" је вeћа од максималне (%i)" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Таг \"%s\" мора бити састављен од алфанумеричких карактера или симбола: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Таг \"%s\" не сме да буде великим словима" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Корисничка имена морају бити стрингови" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Наведено корисничко име није слободно." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Неведено корисничко име не може бити модификовано." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Молимо Вас да унесете обе лозинке" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Лозинке морају бити стрингови" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Ваша лозинка мора бити дужине 8 карактера или више" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Лозинке које сте унели се не поклапају" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Мењање није дозвољено, јер изгледа непожељно. Избегавајте линкове у Вашем " +"опису." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Име мора бити најмање %s карактера дугачко" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Име речника је већ употребљено." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Немогуће је променити вредност кључа са %s на %s. Овај кључ је само за " +"читање" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Таг - речник није пронађен." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Таг %s не припада речнику %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Нема таг имена" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Таг %s већ припада речнику %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Молим Вас обезбедите важећи URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "улога не постоји." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Скуп податка без организације не може бити приватан." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Није листа" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Није стринг" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Наведени родитељ би креирао петљу у хијерархији" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" и \"filter_values\" би требало да буду исте дужине" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" је обавезан када је \"filter_values\" попуњен" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" је обавезан када је \"filter_fields\" попуњен" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Постоји поље шеме са истим именом" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Е-пошта {email} није валидан формат" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "Е-пошта '{email}' припада регистрованом кориснику." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "Вредност мора бити једна од {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "Вредност треба бити валидан JSON обејкат" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "Није могуће парсирати вредност као валидан JSON објекат" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "Није могуће парсирати додатно '{name}' као валидан JSON" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Недостајућа вредност" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "Улога треба бити једна од \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "Нисте Вам дозвољено да додајете сараднике" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Сарадници скупа података нису омогућени" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Покушај креирања организације као групе" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Морате обезбедити ID пакета или име (параметар \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Морате да доставите оцену (параметар \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Оцена мора бити целобројна вредност." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Оцена мора бити између %i и %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Грешка приликом слања email-а са позивницом, корисник није креиран: {0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Моте бити пријављени да бисте пратили кориснике" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Не можете пратити себе" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Већ пратите {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Морате бити пријављени да бисте пратили скуп података." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Корисник {username} не постоји." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Морате бити пријављени да бити пратили групу." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Пакет није пронађен" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "Организације не може бити обрисана док има скупове података" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id није у подацима" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Речник \"%s\" није пронађен" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Таг \"%s\" није пронађен" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Морате бити улоговани да бисте прекинули праћење нечега." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Не пратите {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "Капацитет мора бити једна од \"{}\"" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "Није Вам дозвољено преузимање сарадника" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Ресурс није пронађен." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "Параметар није bool" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не наводите ако користите \"query\" параметар" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Мора бити : пар/-ови" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Поље \"{field}\" није препознато у resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Пакет није пронађен." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus није пронађен." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Организација није пронађена." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Корисник %s није овлашћен да креира пакете" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Корисник %s није овлашћен да уређује ове групе" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "Корисник %s није овлашћен да додата скуп података датој организацији" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" +"Није приложен идентификатор скупа података, није могуће проверити овлашћења." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Нема пронађених пакетa за овај ресурс, не може да провери аут (лош превод)." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "Корисник %s није овлашћен да креира ресурсе на скупу података %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Корисник %s није овлашћен да уређује ове пакете" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Корисник %s није овлашћен да креира групе" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Корисник %s није овлашћен да креира организацију" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Корисник {user} није овлашћен да креира кориснике преко API-ја" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Није овлашћен да креира корисника" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Група није пронађена." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Корисник %s није овлашћен за додавање чланова" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Корисник %s није овлашћен да мења групу %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "Корисник %s није овлашћен за додавање сарадника датом скупу података" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Корисник %s није овлашћен да избрише ресурс %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Преглед ресурса није пронађен, није могуће проверити овашћење." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Корисник %s није овлашћен да избрише везу %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Корисник %s није овлашћен да избрише групе" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Корисник %s није овлашћен да избрише групу %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Корисник %s није овлашћен да избрише организације" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Корисник %s није овлашћен да избрише организацију %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Корисник %s није овлашћен да избрише task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "Корисник %s није овлашћен да уклони сараднике из датог скупа података" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Нисте овлашћени" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Корисник %s није овлашћен да чита ове пакете" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Корисник %s није овлашћен да чита пакет %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Корисник %s није овлашћен да чита ресурс %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Корисник %s није овлашћен да чита групу %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Морате бити улоговани да бисте приступили Вашој командној табли." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" +"Кориссник %s није овлашћен да наведе сараднике из датог скупа података" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Корисник %s није овлашћен да уређује пакет %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Корисник %s није овлашћен да уређује ресурс %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Корисник %s није овлашћен да мења стање пакета %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Корисник %s није овлашћен да уређује организацију %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Корисник %s није овлашћен да мења стање групе %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Корисник %s није овлашћен да уређује дозволе групе %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Морате бити улоговани да бисте уређивали корисника" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Корисник %s није овлашћен да мења корисника %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Корисник {0} није овлашћен да ажурира корисника {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Корисник %s није овлашћен да промени стање верзије" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Корисник %s није овлашћен да ажурира task_status табелу" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Кориснику %s није омогућено да ажурира табелу term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "наслов" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Лиценца није наведена" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Остало (Отворена)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Остало (Јавни домен)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Остало (Прилог)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Остало (Не-комерцијална)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Остало (Не отворена)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "зависи од %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "%s зависи од овог скупа података" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "потиче од %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "има извођење %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "линкује на %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "је линкован са %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "је потомак од %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "је предак од %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "односи се на %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Не постојое API подаци за учитавање наведеног ресурса" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Неуспех приликом учитавања информације API података" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Крените да куцате…" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Нису пронађена подударања" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Постоје несачуване промене на датој форми" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Молимо потврдите акцију" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Да ли сте сигурни да желите да извршите ову радњу?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Потврдите" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Откажите" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Прекините праћење" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Пратите" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Линк" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Линк до URL-а на интернету (можете повезати и до API-ја)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Допремите" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Молимо Вас да изаберите датотеку за поновно отпремање" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Уклоните" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Оптремите датотеку на Вашем рачунару" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Датотека" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Промените редослед ресурса" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Ресурсе можете преуредити повлачењем помоћу иконе стрелице. Превуците ресурс" +" удесно и поставите га на жељено место на листи. Када завршите, кликните на " +"дугме \"Сачувајте поруџбину\"." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Сачувајте поруџбину" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Чување..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Отпремите фајл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Дошло је до грешке" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Отпремање датотеке није успело" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Није могуће извршити аутентичност опремања" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ресурс је отпремљен" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Није могуће добити податке отпремљене датотеке" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Додајте филтер" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Изаберите поље" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Уређујте" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Прикажи више" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Сакријте" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Грешка %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "О {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN Удружење" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Подешавања системског администратора" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Видите профил" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Командна табла" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Подашавања профила" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Одјавите се" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Налог" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Пријавите се" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Региструјте се" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Скупови података" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Претражите скупове података" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Тражите" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Претражите скупове података" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Прихватите" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Пређите на садржај" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Смеће" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Лого сајта" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Да ли сте сигурни да желите ресетовати конфигурацију?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Ресетујте" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Ажурирајте конфигурацију" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN опције конфигурације" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "Да ли сте сигурни да желите све да очистите?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Очистите све" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"Очистите избрисане скупове података, организације или групе заувек и " +"неповратно." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Потврдите брисање" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Избрисани скупови података" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Избрисане организације" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Избрисане групе" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Кликните овде за више информација." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Ниједан обрађивач није дефинисан за тип података: %(type)s." + +#: 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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Додај Групу" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Форма Групе" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Да ли сте сигурни да желите да избришете групу - {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 "Да ли сте сигурни да желите да избришете члана - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Додајте Члана" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Постојећи Корисник" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Ако желите да додате постојећег корисника, претражите њихово корисничко име " +"испод." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "или" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Нови Корисник" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Ако желите да позовете новог корисника, унесите њихову email адресу." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Улога" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Да ли сте сигурни да желите избрисати овог члана?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Избришите" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Које су улоге?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Претражите скупове података..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Скупови података у групи: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Име" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моја Група" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Мало информација о мојој групи..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Да ли сте сигурни да желите избрисати ову Групу?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Избрисан" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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" + +#: 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 "{0} статистика" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "скупови података" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "скуп(ов)а података" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "организације" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "групе" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Дато поље је обавезно" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Можете користити Markdown формат овде" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Кључ" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Вредност" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Прилагођен" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Форма садржи неисправан унос:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Обавезно поље" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL слике" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Обришите отпремање" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Додајте организацију" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr " нађено за \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Жао нам је, нисмо нашли скупове података за \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Учините јавним" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Учините приватним" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Нацрт" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Приватно" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Да ли сте сигурни да желите да избришете органиазцију - {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 "Уређујте организацију" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Корисничко име" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email адреса" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Ажурирајте члана" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Скупови података у организацији: {group}" + +#: 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:20 +msgid "A little information about my organization..." +msgstr "Мало информација о мојој организацији..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Сачувај организацију" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Приказ {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Промене" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Да ли сте сигурни да желите да избришете скуп података - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Да ли сте сигурни да желите да избришете ресурс - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Погледајте скуп података" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Уређујте мета податке" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Преглед" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Додај" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Уређујте ресурсе" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Прикази" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "АПИ ендпоинт" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Идите на ресурс" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Преузимање" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Опис скупа података:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Извор: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "За дати ресурс нема још увек креираних приказа." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Не видите очекиване приказе?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Ово су неки од разлога због којих не видите очекиване приказе:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Није створен приказ који је погодан за овај ресурс" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" +"Администратори локације можда нису омогућили одговарајуће додатке за приказ" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Додатне информације" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поље" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Подаци ажурирани последњи пут" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "непознат" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Мета подаци ажурирани последњи пут" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Креирано" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Формат" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Лиценца" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Нови приказ" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Овај ресурс нема прегледе" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Додај нови ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Докуменатација API-ја" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Уређујте сарадника" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Додајте сарадника" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Назад на све сараднике" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "Да ли сте сигурни да желите да избришете овог сарадника?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Ажурирајте сарадника" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "Које улоге су доступне?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Администратор: Поред управљања скупом података, " +"администратори могу додавати и уклањати сараднике из скупа података.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Уредник: Уредници могу уређивати скуп података и његове " +"ресурсе, као и приступ скупу података ако су приватни.

" +"

Члан:Чланови могу приступити скупу података ако је " +"приватан, али га не могу уређивати.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Додајте сараднике" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Статус" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Последње измене" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" +"Да бисте могли да креирате скуп података, потребно је да направите " +"организацију." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Направите нову организацију" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Не постоји организација којој можете доделити дати скуп података." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Замолите администратора система да креира организацију пре него што " +"наставите." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "На %(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "Изаберите лиценцу" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Организација" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Ниједна организација" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Видљивост" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Јаван" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "Подаци" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Неке корисне напомене о подацима" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "на пример: CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Аутоматски ће се погодити. Оставите празно ако желите" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "на пример: 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Величина датотеке" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "на пример: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Да ли сте сигурни да желите да избришете овај ресурс?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Претходно" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Сачувајте и додајте други" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Истражите" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Више информација" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Цео екран" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Уграђено" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Дати приказ ресурса тренутно није доступан." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Угради приказ ресурса" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "Ширина" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Дужина" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Код" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Преглед Ресура" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Подаци и Ресурси" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +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:85 +msgid "Show More {facet_type}" +msgstr "Прикажите Више {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Почетак" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Језик" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Напред" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Лиценца Није Пружена" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Овај скуп података задовољава Open Definition." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Сортирај по" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Филтрирај Резултате" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Молимо Вас да покушате другу претрагу.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "" +msgstr[2] "" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Није пронађен ниједан скуп података за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Није пронађена ниједна група за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Није пронађена ниједна организација за \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Е-пошта" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} додао је таг {tag} скупу података {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} је ажурирао групу {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} је ажурирао организацију {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} је ажурирао скуп података {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "Погледајте ову верзију" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ажурирао је ресурс {resource} скупу података {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} је ажурирао њихове профиле" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} је избрисан из групе {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} је избрисан из организације {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} је избрисан из скупа података {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} је избрисао ресурс {resource} из скупа података {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} је почео да прати {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} је почео да прати {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} је почео да прати {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} је креирао групу {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} креирао је организацију {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} креирао је скуп података {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} је додао ресурс {resource} скупу података {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} је улогован" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} је обрисао таг {tag} из скупа података {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" +"Наместите аутора {pkg_link} да буде {new_author} (претходни {old_author})" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "Наместите аутора {pkg_link} да буде {new_author}" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "Уклонио је аутора {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"Наместите е-пошту аутора {pkg_link} да буде {new_author_email} (previously " +"{old_author_email})" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "Наместите е-пошту аутора {pkg_link} да буде {new_author_email}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "Уклоњена е-пошта аутора из {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} са вредношћу {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"Промењена вредност поља {key} у {new_val} (претходна " +"{old_val}) у {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Претражите Тагове" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "Креирајте API Токен" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "API Tокени" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "Нисте креирали ниједне API Токене." + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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:10 +msgid "Full name" +msgstr "Пуно име" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "на пример: Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "на пример: joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Мало података о себи" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Претплатите се на обавештења е-поште" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Слика профила" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "URL слике профила" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Промените лозинку" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Лозинка" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Потрвдите Лозинку" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Да ли сте сигурни да желите да обришете Корисника?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Да ли сте сигурни да желите обновити API кључ?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Обновите API Кључ" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Већ сте улоговани као {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Одјавите се" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запамти ме" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Већ сте пријављени" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" +"Морате се одјавити пре него што се можете пријавити са другим налогом." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Креирајте Налог" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Ресетујте Вашу Лозинку" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Ресетујте Лозинку" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Такође можете променити корисничко име. Не може се касније изменити." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Ажурирајте Лозинку" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Како ово ради?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Једноставно унесите нову лозинку и ми ћемо ажурирати Ваш налог" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Корисник није креирао ниједан скуп података." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Нисте доставили биографију." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Дати корисник нема биографију." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "То значи да само ви можете видети то" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Члан Од" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Кључ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Ресетујте Вашу лозинку" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "Е-пошта и корисничко име" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Захтев за ресетовање" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Унесите своју адресу е-поште или корисничко име у оквир, а ми ћемо вам " +"послати е-пошту са везом за унос нове лозинке." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Токен" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Последњи приступ" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "Акције" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "Опозовите" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Претражите Кориснике" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "успех" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Активност није пронађена" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "Нисте овлашћени за преглед података активности" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "Детаљи активности датог скупа података нису доступни" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "Немате овлашћења за читање пакета" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "Немате овлашћења за читање сарадника {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "Немате овлашћења за брисање сарадника {}" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "Корисник је уклоњен из сарадника" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "Немате овлашћења за измену сарадника {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Корисник је додат сарадницима" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "Немате овлашћења да видите API токене." + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "Немате овлашћења за креирање API токена." + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"API Токен креиран: {token} " +"{copy}
Обавезно га копирајте, нећете га моћи поново видети!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "Немате овлашћења за опозивање API токена." + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Ваша лозинка мора имати највише 8 знакова." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Преусмеравање на спољни сајт није дозвољено." diff --git a/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..9905ae32609 --- /dev/null +++ b/ckan/i18n/sr_Latn/LC_MESSAGES/ckan.po @@ -0,0 +1,5047 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Serbian (Latin) (https://www.transifex.com/okfn/teams/11162/sr@latin/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sr@latin\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Resurs nije pronаđen" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Nemаte ovlаšćenjа dа biste videli ovu strаnicu" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Greškа" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Greškа:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Poslednje аžurirаnje" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Sаčuvаj" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Opis" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Učitаvаnje ..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API podаtаkа" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Poslednjа promenа" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resursi" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Slikа" + +#: 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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Nаjbolje ocenjeni skupovi podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Prosečnа ocenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Broj ocenа" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Bez ocene" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Nаjveće grupe" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupа" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Broj skupovа podаtаkа" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Nаjčešći tаgovi" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Korisnik" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Nаjviše menjаni skupovi podаtаkа" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Funkcijа аutorizаcije nije pronаđenа: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Sаmo sistem аdministrаtor može dа uprаvljа" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "O servisu" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "" + +#: ckan/controllers/admin.py:160 +#, 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:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem pri odbаcivаnju verzije %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Odbаcivаnje kompletno" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Akcijа nije implementirаnа" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Pristup odbijen" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Nije pronаđeno" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Loš zаhtev" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Ime аkcije nije poznаto: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Greškа: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Neisprаvаn podаtаk: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grupа nije pronаđenа" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupe" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Tаgovi" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Korisnik %r nije ovlаšćen dа menjа %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Nemа ovlаšćenjа zа kreirаnje grupe" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Greškа integritetа" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Korisnik %r nije ovlаšćen dа menjа %s ovlаšćenjа" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Odаberite dve verzije pre poređenjа." + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Istorijа verzijа CKAN grupа" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Nedаvne promene u CKAN Grupi:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log porukа:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Sаjt je trenutno nedostupаn. Bаzа nije inicijаlizovаnа." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, 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:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s koristni Vаšu emаil аdresu, аko želite dа resetujete Vаšu šifru." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Skup podаtаkа nije pronаđen" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Neisprаvаn formаt verzije: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Neovlаšćeno čitаnje pаketа %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN Istorijа verzijа skupа podаtаkа" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Nedаvne promene nа CKAN skupu podаtаkа" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Neovlаšćeno kreirаnjа pаketа" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Nije moguće dodаti pаket u registаr pretrаge" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Nije moguće аžurirаti registаr pretrаge." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Nemаte prаvа dа čitаte resurs %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Korisnik nije pronаđen" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Neovlаšćeno kreirаnje korisnikа" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Nijedаn korisnik nije specificirаn" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Neovlаšćeno menjаnje korisnikа %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil аžurirаn" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Neovlаšćeno kreirаnje korisnikа %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Loše popunjenа kаpčа. Molimo Vаs pokušаjte ponovo." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Korisnik \"%s\" je sаdа registrovаn, аli ste i dаlje ulogovаni kаo \"%s\" od" +" rаnije" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Logovаnje nije uspelo. Pogrešno korisničko ime ili šifrа." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Nevаžeći reset-kod. Molimo pokušаjte ponovo." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Vаšа lozinkа je resetovаnа." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Vаšа šifrа morа biti dužine 4 ili više kаrаkterа." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Šifre koje ste otkucаli se ne poklаpаju." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Pregled" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Nepoznаto" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Nаprаvi novi skup podаtаkа." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Izmenjeni resursi." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Izmenjenа podešаvаnjа." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Nije dostupnа e-mаil аdresа primаocа!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Nedostаje vrednost" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Polje zа unos %(name)s nije očekivаno." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Molimo Vаs unesite celobrojnu vrednost" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Resurs(i) pаketа neisprаvаn" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Dodаci" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Tаg - rečnik \"%s\" ne postoji" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Skup podаtаkа" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Neisprаvаn broj" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Neisprаvаn formаt dаtumа" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Linkovi nisu dozvoljeni u log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resurs" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Ime grupe ili ID ne postoje." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Tip аktivnosti" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "To ime ne može biti korišćeno" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Ime može biti dugo nаjviše %i kаrаkterа" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Tаj URL je već u upotrebi." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Dužinа imenа \"%s\" je mаnjа od minimаlne %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Dužinа imenа \"%s\" je većа od mаksimаlne %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Verzijа morа biti nаjviše %i kаrаkterа dužine" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Duplirаni ključ \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Grupа sа tim imenom već postoji u bаzi." + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Dužinа tаgа \"%s\" je mаnjа od minimаlne %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Dužinа tаgа \"%s\" je većа od mаksimаlne (%i)" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Tаg \"%s\" morа biti sаstаvljen od аlfаnumeričkih kаrаkterа ili simbolа: -_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Tаg \"%s\" ne sme dа bude velikim slovimа." + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "To korisničko ime nije slobodno." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Molimo Vаs dа unesete obe lozinke" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Lozinke koje ste uneli se ne poklаpаju" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Menjаnjа nije dozvoljeno, jer izgledа nepoželjno. Izbegаvаjte linkove u " +"Vаšem opisu." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Ime morа biti nаjmаnje %s kаrаkterа dugаčko." + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "To ime rečnikа je već upotrebljeno." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Nemoguće je promeniti vrednost ključа sа %s nа %s. Ovаj ključ je sаmo zа " +"čitаnje" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Tаg - rečnik nije pronаđen." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Tаg %s ne pripаdа rečniku %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Nemа tаg imenа" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Tаg %s već pripаdа rečniku %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Nedostаjućа vrednost" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Morаte obezbediti ID pаketа ili ime (pаrаmetаr \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Morаte dа dostаvite ocenu (pаrаmetаr \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Ocenа morа biti celobrojnа vrednost." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Ocenа morа biti između %i i %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id nije u podаcimа" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Rečnik \"%s\" nije pronаđen" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Tаg \"%s\" nije pronаđen" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resurs nije pronаđen." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Pаket nije pronаđen." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus nije pronаđen." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Korisnik %s nije ovlаšćen dа kreirа pаkete" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Korisnik %s nije ovlаšćen dа menjа ove grupe" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Nemа pronаđenih pаketa zа ovаj resurs, ne može dа proveri аut (loš prevod)." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Korisnik %s nije ovlаšćen dа menjа ove pаkete" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Korisnik %s nije ovlаšćen dа kreirа grupe" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grupа nije pronаđenа." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Korisnik %s nije ovlаšćen dа menjа grupu %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Korisnik %s nije ovlаšćen dа izbriše vezu %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Korisnik %s nije ovlаšćen dа izbriše grupu %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Korisnik %s nije ovlаšćen dа izbriše task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Korisnik %s nije ovlаšćen dа čitа ove pаkete" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Korisnik %s nije ovlаšćen dа čitа pаket %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Korisnik %s nije ovlаšćen dа čitа resurs %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Korisnik %s nije ovlаšćen dа menjа pаket %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Korisnik %s nije ovlаšćen dа menjа stаnje pаketа %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Korisnik %s nije ovlаšćen dа menjа stаnje grupe %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Korisnik %s nije ovlаšćen dа uređuje dozvole grupe %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Korisnik %s nije ovlаšćen dа menjа korisnikа %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Korisnik %s nije ovlаšćen dа promeni stаnje verzije" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Korisnik %s nije ovlаšćen dа аžurirа task_status tаbelu" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Korisniku %s nije omogućeno dа аžurirа tаbelu term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Ostаlo (Otvorenа)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Ostаlo (Jаvni domen)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Ostаlo (Prilog)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Ostаlo (Ne-komercijаlnа)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Ostаlo (Ne otvorenа)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "zаvisi od %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "%s zаvisi od ovog skupа podаtаkа" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "potiče od %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "imа izvođenje %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "linkuje nа %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "je linkovаn sа %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "je potomаk od %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "je predаk od %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "odnosi se nа %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Otkаži" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Dopremi" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Dopremi fаjl" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Uređivаnje" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +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 "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Odjаvite se" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrujte se" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Skupovi podаtаkа" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Trаži" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Smeće" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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 "Administrаtori" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Dodаj grupu" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +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:15 +#: 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 "Člаnovi" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Dodаj grupu" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Izbriši" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Ime" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +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/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Dobrodošli" + +#: 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:11 +msgid "dataset" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "skup(ov)а podаtаkа" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Vrednost" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formа sаdrži neisprаvаn unos:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:98 +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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Korisničko ime" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Promene" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Pregled" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "Dodаj" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Preuzimаnje" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Dodаtne informаcije" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Polje" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Kreirаno" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Formаt" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licencа" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Dokumenаtаcijа API-jа" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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 "Izvor" + +#: 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 +msgid "Author" +msgstr "Autor" + +#: 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 "Održаvа" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Verzijа" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Stаtus" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Ime" + +#: 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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Ugrаđeno" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kod" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Dodаj Skup Podаtаkа" + +#: 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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Početаk" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Ovаj skup podаtаkа zаdovoljаvа Open Definition." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: 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] "" +msgstr[2] "" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Emаil" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} je аžurirаo njihove profile" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} je ulogovаn" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 "Korisnici" + +#: 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:10 +msgid "Full name" +msgstr "Puno ime" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Lozinkа" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Prijаvite se" + +#: 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 "Zаborаvili ste lozinku?" + +#: 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 "Odjаvite se" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Ključ" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Resetujte Vаšu lozinku" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/sv/LC_MESSAGES/ckan.po b/ckan/i18n/sv/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..15d36fdc97a --- /dev/null +++ b/ckan/i18n/sv/LC_MESSAGES/ckan.po @@ -0,0 +1,5225 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Joel Grafström , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Joel Grafström , 2020\n" +"Language-Team: Swedish (https://www.transifex.com/okfn/teams/11162/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "Ljud" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "Ljud url" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" +"t.ex. http://example.com/audio.mp3 (om inte angivet så används resursens " +"URL)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"Din webbläsare har inte stöd för audio taggen. Men ingen fara, " +"du kan ladda ned ljudklippet " +"istället" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Objektet kunde inte hittas" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Du är inte behörig att se denna sida" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Färdig" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Väntar" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Skickar" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Fel" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Inte uppladdad än" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Ladda upp till DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Fel vid uppladdning:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Fel:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Spårning av felet:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Status" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Senast uppdaterad" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Aldrig" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Logg för uppladdningen" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaljer" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Slut på loggen" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Hittade inte DataStore-resursen" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" +"Dataordlistan har sparats. Alla ersättningar träder i kraft när resursen " +"laddats upp till DataStore" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "Datat är inte giltigt: {}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Resursen \"{0}\" hittades inte." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Användare {0} har inte behörighet att uppdatera resurs {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Få tillgång till resursens data via ett webb-API med kraftfullt frågestöd." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" +"Mer information finns i main CKAN Data API and DataStore documentation.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Adresser" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data-API:et kan anropas via följande åtgärder från CKAN:s \"action API\"." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Skapa" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Uppdatera/Sätt in" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Fråga" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Fråga (via SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Frågar" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Exempelfråga (första 5 svaren)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Exempelfråga (svar som innehåller 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Exempelfråga (via SQL-sats)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Exempel: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Ett enkelt anrop via ajax (JSONP) till data-API:et via jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Exempel: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Spara" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Fält {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "Tvinga typ" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +msgstr "Etikett" + +#: 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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Beskrivning" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Kolumn" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Typ" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Laddar..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "tabell" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Visa kolumner" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Göm/Visa kolumner" + +#: ckanext/example_iconfigurer/templates/admin/config.html:11 +msgid "Datasets per page" +msgstr "Dataset per sida" + +#: ckanext/example_iconfigurer/templates/admin/config.html:13 +msgid "Test conf" +msgstr "Testkonf" + +#: ckan/templates/group/read.html:13 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 "Relevans" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Namn, stigande" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Namn, fallande" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Senast ändrad" + +#: ckanext/example_idatasetform/templates/package/search.html:16 +msgid "Custom Field Ascending" +msgstr "Eget fält (stigande)" + +#: ckanext/example_idatasetform/templates/package/search.html:17 +msgid "Custom Field Descending" +msgstr "Eget fält (fallande)" + +#: ckan/templates/group/read.html:17 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 "Populära" + +#: 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 "Egen text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "egen text" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Landkod" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "egen resurstext" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Denna grupp saknar beskrivning" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} dataset" +msgstr[1] "{num} dataset" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 dataset" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"Verktyget för förhandsgranskning av data i CKAN har många kraftfulla " +"funktioner" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Följare" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Resurser" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "Sekund" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "Minut" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "Timme" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "Dag" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "Upphör om" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "Enhet" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "Upphör" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Bild" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Bild-URL" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"t.ex. http://example.com/image.jpg (om inte angivet så används resursens " +"URL)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Data Explorer" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Graf" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Karta" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "Fel vid laddning av vy" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Kunde inte ladda vy" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore rapporterade ett fel" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy rapporterade ett fel" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Tabell" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filter" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "Row offset" +msgstr "Radförskjutning" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:3 +#: ckanext/reclineview/theme/templates/recline_map_form.html:3 +msgid "eg: 0" +msgstr "t.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 "Antalet rader" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "t.ex. 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Typ av graf" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:7 +msgid "Group (Axis 1)" +msgstr "Grupp (axel 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Serie (axel 2)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:6 +msgid "Field type" +msgstr "Typ av fält" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Fält för Latitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Fält för Longitud" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "Fält för GeoJSON" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "Autozoom för funktioner" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "Markeringar för kluster" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "Ogiltig URL." + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Högst rankade dataset" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Medelbetyg" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Antal betyg" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Inga betyg" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Största grupper" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grupp" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Antal dataset" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Inga grupper" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Mest använda taggar" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Taggnamn" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Antal dataset" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Användare som skapat flest dataset" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Användare" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Statistikmeny" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Mest redigerade dataset" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Text" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "Ett fel uppstod i en AJAX förfrågan. Kan inte ladda vy." + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "Video" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "Video url" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" +"t.ex. http://example.com/video.mpeg (om inte angivet så används resursens " +"URL)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "t.ex. http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" +"Din webbläsare har inte stöd för inbäddad video. Men ingen fara, du kan ladda ned videoklippet istället " +"och titta på det i din vanliga videouppspelare." + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Webbplats" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL för webbsida" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "t.ex. http://example.com (om inte angivet så används resursens URL)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Din webbläsare stödjer inte iframes." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Behörighetsfunktion hittades inte: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Admin" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Redaktör" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Medlem" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Du måste vara systemadministratör för att administrera." + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Webbplatsnamn" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Tagline för webbplatsen" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Logotyp för webbplatskortnamn" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Om" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Om webbplatsentext" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Introtext" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Text på startsida" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Egen CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Egen CSS inlagd i sidhuvudet" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Hemsida" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Kan inte radera paketet %s eftersom den relaterade versionen %s innehåller " +"paket som ännu inte är raderade %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Problem att rensa version %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Rensning klar" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Åtgärden inte implementerad." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Åtkomst nekad" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Hittades inte" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Felaktig begäran" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Åtgärdsnamn okänt: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON-fel: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Felaktig begäran: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Gruppen hittades inte" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Hittade inte organisationen" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Felaktig grupptyp" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organisationer" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Grupper" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Taggar" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Format" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Licenser" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Användare %r har inte behörighet att redigera %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Ej behörig att utföra bulkuppdateringar" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Du har inte behörighet att skapa en ny grupp" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Integritetsfel" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Användare %r har inte behörighet att redigera %s behörigheter" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Obehörig att radera grupp %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organisationen har raderats." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Gruppen har raderats" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s har raderats." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Användare %r har inte behörighet att redigera medlemmar i %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "Behörighet saknas för att skapa medlemmar i grupp %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Behörighet saknas för att lägga till medlem till grupp %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Behörighet saknas för att radera medlemmar i grupp %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Gruppmedlem har raderats." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Välj två versioner innan du jämför dem" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Revisionshistorik för grupp" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Senaste ändringarna i CKAN-gruppen:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Loggmeddelande:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Du följer nu {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Du har slutat följa {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Behörighet saknas för att se followers %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "" +"Webbplatsen är för tillfället offline. Databasen är inte initialiserad." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Vänligen uppdatera din profil och lägg till din " +"e-postadress. " + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s använder din e-postadress om du behöver återställa ditt lösenord." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Ogiltig sökning: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Parametern \"{parameter_name}\" är inte ett heltal" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dataset hittades inte" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Felaktigt format på revision: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "Saknar stöd för att visa dataset av typen \"{package_type}\" ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Obehörig att läsa paket %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Ändringshistorik för CKAN dataset" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Senaste ändringar av CKAn dataset: " + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Oberhörig för att skapa paket" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Behörighet saknas för att redigera denna resurs" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Behörighet saknas för att uppdatera detta dataset" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Dataset med {id} kunde inte hittas." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Du måste lägga till åtminstone en dataresurs" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Behörighet saknas för att skapa en resurs" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Behörighet saknas för att skapa en resurs för paketet" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Kan inte lägga till paketet till sökindex" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Det går inte att uppdatera sökindex." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dataset har raderats." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Behörighet saknas för att radera paket %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Resursen har raderats." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Behörighet saknas för att radera resurs %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Hittade inte resursvy" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Resursens data hittades inte" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Ingen nerladdning möjlig" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Behörighet saknas för att läsa dataset %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Inga rättigheter för objektet %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Behörighet saknas för att redigera resursen" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Hittade inte vyn" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Hittade inte typen av vy" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Fel data för resursvy" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Resursvyn saknas" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Ingen förhandsvisning har definierats." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Användaren hittades inte" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Ej behörig att registrera sig som användare." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Obehörig att skapa användare" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Ej behörig att radera användare med id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Ingen användare angiven" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Obehörig att redigera användare %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil uppdaterad" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Obehörig att skapa användare %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Felaktig Captcha. Var god försök igen." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "Användare \"%s\" är nu registrerad men du är fortfarande inloggad som \"%s\" " + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Du saknar behörighet för att redigera en användare." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Lösenordet är felaktigt" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Gammalt lösenord" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "felaktigt lösenord" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Inloggning misslyckades. Fel användarnamn eller lösenord." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Ej behörig att begära återställande av lösenord." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "E-post måste fyllas i" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" +"Det gick inte att skicka e-post. Försök igen senare eller kontakta en " +"administratör för hjälp." + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" +"En återställningslänk har skickats via e-post till dig (om kontot finns)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Ej behörig att återställa lösenord." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Ogiltig återställningsnyckel. Var god försök igen." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ditt lösenord har återställts." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Ditt lösenord måste bestå av minst 4 tecken." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Lösenorden du angav matchar inte." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Du måste ange ett lösenord" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Följande post hittades ej" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} hittades inte" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Allt" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Visa" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} ny aktivitet från {site_title}" +msgstr[1] "{n} nya aktiviteter från {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Nyss" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} byte" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Okänd" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Namnlös resurs" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Skapade ett nytt dataset." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Redigerade resurser." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Redigerade inställningar" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} visningar" +msgstr[1] "{number} visningar" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "visad {number} gång nyligen" +msgstr[1] "visad {number} gånger nyligen" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Mottagarens e-postadress finns inte!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organisation" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grupp" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Värde saknas" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Inmatningsfält %(name)s var inte väntat." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Vänligen mata in ett heltal" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Måste vara en Unicode textsträng" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Paketets objekt ogiltiga" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Extra" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Vokabulären \"%s\" finns inte" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dataset" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Kunde inte läsas in som giltig JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "En organisation måste anges" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "Du kan inte flytta detta dataset till en annan organisation" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Organisationen finns inte" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Du kan inte lägga till ett dataset till denna organisation" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Ogiltigt heltal" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Måste vara ett naturligt tal" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Måste vara ett positivt heltal" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Datumformatet felaktigt" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Inga länkar är tillåtna i log_message." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Detta dataset-ID finns redan" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Resurs" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Gruppnamn eller ID finns inte." + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Aktivitetstyp" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Namn måste vara textsträngar" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Namnet kan inte användas" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Måste vara minst %s tecken" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Namn får vara max %i tecken" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"Får bara vara gemena alfanumeriska tecken (gemener och siffror) samt " +"specialtecknen - och _" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Den URL:en används redan." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Namnet \"%s\" är kortare än minimilängden %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Längden på namnet \"%s\" är längre än maxlängden %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Version får vara max %i tecken lång" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Dubblerad nycke \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "En grupp med detta namn finns redan i databasen" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Tag \"%s\" understiger minimilängden %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Längden av taggen \"%s\" överskrider maxlängden %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Taggen \"%s\" måste vara alfanumeriska tecken eller symboler:-_." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Taggen \"%s\" får inte bestå av versaler" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Användarnamn måste vara textsträngar" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Det inloggningsnamnet är inte tillgängligt." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "Det inloggningsnamnet kan inte ändras." + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Skriv in båda lösenorden" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Lösenord måste vara textsträngar" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "Ditt lösenord måste bestå av minst 8 tecken" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Lösenorden du angav matchar inte" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Redigering inte tillåten eftersom det verkar vara spam. Undvik länkar i din " +"beskrivning." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Namn måste vara minst %s tecken" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Vokabulärnamnet används redan." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "Kan inte ändra nyckel från %s till %s. Denna nyckel kan endast läsas." + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Vokabulären för taggar kunde inte hittas." + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Taggen %s hör inte till vokabulär %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Saknar namn för tagg." + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Taggen %s hör redan till vokbaulären %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Ange en giltig URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "Rollen finns inte." + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Dataset som saknar en organisation kan inte göras privata" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Inte en lista" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Inte text" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" +"Denna överordnade entitet skulle skapa en otillåten slinga i hierarkin" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" och \"filter_values\" ska ha samma längd" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "\"filter_fields\" krävs också när \"filter_values\" anges" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "\"filter_values\" krävs också när \"filter_fields\" anges" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Det finns ett schemanamn med samma namn" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "{email} är inte ett giltigt e-postformat" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "E-postadressen '{email}' tillhör en registrerad användare." + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "Värdet måste vara ett av följande {}" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "Värdet måste vara ett giltigt JSON objekt" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "Kunde inte läsa in värdet som ett giltigt JSON objekt" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "Kunde inte läsa in extra '{name}' som giltig JSON" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Värde saknas" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "Roll måste vara en av följande \"{}\"" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "Behörighet saknas för att lägga till deltagare" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "Deltagarfunktionen för dataset är inte aktiverad" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Försök att skapa en organisation som en grupp." + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Du måste ange ett paket-ID eller namn (parameter \"package\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Du måste ange ett betyg (parametern \"rating\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Betyg måste vara ett heltal." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Betyg måste vara mellan %i och %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Det gick inte att skicka inbjudan via e-post, användaren har inte skapats: " +"{0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Du måste vara inloggad för att följa användare" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Du kan inte följa digsjälv" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Du följer redan {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Du måste vara inloggad för att följa ett dataset." + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Användare {username} finns inte." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Du måste vara inloggad för att följa en grupp." + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "Paketet hittades inte" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "Organisationen kan inte tas bort eftersom dataset finns" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id finns inte i data" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Kan inte hitta vokabulär \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Kan inte hitta taggen \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Du måste vara inloggad för att sluta följa något." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Du följer inte {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "Kapacitet måste vara ett av följande \"{}\"" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "Behörighet saknas för att hämta deltagare" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Resursen hittades inte." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "Parametern är inte boolesk" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Anges ej om \"query parameter\" används" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Måste vara : par" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Fältet \"{field}\" förstods inte i resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Paketet finns inte." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Uppgiftsstatus kunde inte hittas." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organisationen kunde inte hittas." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Användare %s är inte behörig att skapa paket" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Användare %s saknar behörighet att redigera dessa grupper" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Användare %s har inte behörighet att lägga till dataset till denna " +"organisation" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "ID för dataset saknas. Kan inte kontrollera behörighet." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Inget paket hittades för denna resurs, kan inte kontrollera behörigheter." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "Användaren %s har inte behörighet att skapa resurser för dataset %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Användare %s saknar behörighet att redigera dessa paket" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Användare %s är inte behörig att skapa grupper" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Användare %s har inte behörighet att skapa organisationer" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Användare {user} saknar behörighet att skapa användare via API:et" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Ej behörig att skapa användare" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Gruppen kunde inte hittas." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Användare %s har inte behörighet att lägga till medlemmar" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Användare %s saknar behörighet att redigera grupp %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" +"Användare %s saknar behörighet för att lägga till deltagare till detta " +"dataset" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Användare %s har inte behörighet att radera resurs %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "Hittade inte resursvyn. Kan inte kontrollera behörighet." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Användare %s saknar behörightet att ta bort relation %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Användare %s har inte behörighet att radera grupper" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Användare %s saknar behörighet att ta bort gruppen %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Användare %s har inte behörighet att radera organisationer" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Användare %s har inte behörighet att radera organisationen %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Användare %s har inte rätt att radera task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" +"Användare %s saknar behörighet för att ta bort deltagare från detta dataset" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Behörighet saknas" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Användare %s saknar behörighet att läsa dessa paket" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Användare %s saknar behörighet att läsa paketet %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Användare %s har inte rätt att läsa %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Användaren %s är inte behörighet att läsa gruppen %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Du måste vara inloggad för att få tillgång till din panel." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "Användare %s saknar behörighet att lista deltagare för detta dataset" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Användare %s saknar behörighet att redigera paketet %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Användare %s har inte behörighet att redigera resurs %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Användare %s saknar behörighet att ändra tillståndet för paketet %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Användare %s är inte behörig att redigera organisationen %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Användare %s är inte behörig att ändra status för grupp %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Användare %s inte behörighet att redigera rättigheter för gruppen %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Måste vara inloggad för att redigera användare" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Användare %s är inte behörig att redigera användare %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Användaren {0} är inte behörig att uppdatera användare {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Användare %s saknar behörighet att ändra status för revision" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Användare %s har inte rättighet att uppdatera tabellen task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Användare %s saknar behörighet att uppdatera tabellen term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "titel" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Licens har inte angetts" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Erkännande" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Erkännande Dela Lika" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Annan (grupp)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Annan (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Annan (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Icke-kommersiell" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Annan (Icke kommersiell)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Annan (ej öppen)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "beror på %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "är beroende av %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "härrör från %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "har härledning %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "länkar till %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "är länkad från %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "är underordnad till %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "är överordnad till %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "har syskon %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Det finns inga API-data att ladda för denna resurs" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Misslyckades med att ladda API-information" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Börja skriv..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Hittades inte" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "För kort inmatning, måste vara åtminstone ett tecken" +msgstr[1] "För kort inmatning, måste vara åtminstone %(num)d tecken" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Det finns ändringar i detta formulär som inte sparats" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Vänligen Bekräfta Åtgärd" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Vill du verkligen genomföra denna åtgärd?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Bekräfta" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Avbryt" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Sluta följa" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Följ" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Länk" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Länk till en URL på internet (du kan också länka till ett API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Ladda upp" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "Välj fil att ladda upp igen" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Ta bort" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Ladda upp en fil från din dator" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Fil" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "Ändra ordning på resurser" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" +"Du kan ändra ordning på resurser genom att dra dem med pil-ikonen. Dra " +"resursen något till höger och placera i önskad ordning direkt i listan. När " +"du är klar, klicka på \"Spara ordning\" knappen." + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Spara ordning" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Sparar..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Ladda upp en fil" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Ett fel uppstod" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Kunde inte ladda upp filen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Kunde inte verifiera behörighet för uppladdningen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Resursen laddades upp" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Kunde inte läsa data i den uppladdade filen" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "" +"Du laddar upp en fil. Är du säker på att du vill lämna sidan och avbryta " +"uppladdningen?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Lägg till filter" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Välj ett fält" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Redigera" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Visa mer" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Dölj" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Fel %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Om {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Drivs med teknik från CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Inställningar för sysadmin" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Visa profil" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Kontrollpanel (%(num)d nya objekt)" +msgstr[1] "Panel (%(num)d nya objekt)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Panel" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "Profilinställningar" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Logga ut" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "Konto" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Logga in" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Registrera" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Dataset" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Sök i dataset" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Sök" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "Sök i dataset" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "Skicka" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Hoppa fram till innehållet" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "Brödsmulor" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Ladda färre" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Ladda fler" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Ingen aktivitet finns i detta aktivitetsflöde" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Administration" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Systemadministratörer" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Config" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Papperskorg" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Logotyp för webbplats" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Vill du verkligen återställa konfigurationen?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Återställ" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Uppdatera konfiguration" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKANs konfigurationsinställningar" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Sidtitel: Det här är sidtiteln för denna CKAN-instans " +"Den förekommer på flera ställen i CKAN.

Stil: Välj " +"ur en lista med enkla varianter av huvudsakligt färgschema, för att snabbt " +"få till ett modifierat schema.

Logo för sidans tagg:" +" Det här är logon som visas i sidhuvudet på alla instansens av CKAN-" +"mallar.

Om: Den här texten kommer visas på CKAN-" +"instansens Om-sida.

" +"

Introduktionstext: Denna text kommer visas på denna " +"CKAN-instans hemsida som en välkomstsfras för " +"besökare.

Modifierad CSS: Det här är ett block med " +"CSS som kommer ligga i <head>-taggen på varje sida. Om du" +" önskar anpassa mallarna ytterligare rekommenderar vi att du läser " +"dokumentationen.

Hemsida: Det här är för att " +"välja en i förväg skapad layout för modulerna som visas på din hemsida.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Bekräfta Återställ" + +#: ckan/templates/admin/index.html:15 +msgid "Administer CKAN" +msgstr "Administrera CKAN" + +#: 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 "" +"

Som sysadmin har du full kontroll över denna CKAN-instans. Var " +"försiktig!

För mer information om vad du kan göra som sysadmin, läs " +"CKAN sysadmin guide

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "Vill du verkligen rensa allting?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "Rensa allt" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" +"Rensa borttagna dataset, organisationer och grupper permanent - kan inte " +"ångras." + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Bekräfta radering" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "Raderade dataset" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "Raderade organisationer" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "Raderade grupper" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "Rensa" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Denna resurs kan inte förhandsvisas just nu." + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Klicka här för att läsa mer..." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Ladda ner resurs" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Ingen förhandsvisning tillgänglig." + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Fler detaljer..." + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "" +"Det finns ingen hanterare, så kallad handler, för datatypen: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Standard" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Standardinmatning" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Medium" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Mellanstor inmatning" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Full" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Fullbreddsinmatning" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Stor" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Stor inmatning" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Infoga" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Infoga före inmatning" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Eget fält (tomt)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Eget fält" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Välj" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Aktivitetsflöde" + +#: 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 "Administratörer" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Lägg till grupp" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Gruppformulär" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Vill du verkligen radera gruppen - {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 "Vill du verkligen radera medlemman - {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:15 +#: 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 "Hantera" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Redigera grupp" + +#: 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 "Medlemmar" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Lägg till grupp" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Sök grupper..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Det finns för närvarande inga grupper för denna site" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Vill du skapa en?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Tillbaka till alla medlemmar" + +#: 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 "Redigera medlem" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Lägg till medlem" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Befintlig användare" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Om du vill lägga till en befintlig användare, sök efter användarnamnet " +"nedan." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "eller" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Ny användare" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "Om du vill bjuda in en ny användare, mata in dess e-postadress." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Roll" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Vill du verkligen radera denna medlem?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Radera" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Vad är roller?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Administratör:Kan redigera gruppinformation och " +"administrera organisationens medlemmar.

Medlem:Kan " +"lägga till och ta bort dataset från grupper.

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Skapa en grupp" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Uppdatera grupp" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Skapa grupp" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Sök dataset..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Dataset som ingår i gruppen: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Namn" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Min grupp" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Lite information om min grupp..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Vill du verkligen radera denna grupp?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Spara gruppen" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Visa {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Ta bort dataset från denna grupp" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Vad är grupper?" + +#: 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 "" +"Du kan använda CKAN-grupper för att skapa och hantera samlingar av dataset. " +"Det kan användas för att katalogisera dataset för ett visst projekt eller " +"ett team, eller för ett särskilt tema, eller som ett enkelt sätt att hjälpa " +"användare att hitta och söka i dina egna publicerade dataset." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Raderad" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "läs mer" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Välkommen" + +#: 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 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Välkommen till 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 "" +"Det här är en trevlig liten introduktionstext om CKAN eller denna webbplats " +"i allmänhet. Vi har ingen färdig text att lägga här ännu men det kommer " +"snart" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Det här är ett utvalt avsnitt" + +#: ckan/templates/home/snippets/search.html:2 +msgid "E.g. environment" +msgstr "T.ex. miljö" + +#: ckan/templates/home/snippets/search.html:6 +msgid "Search data" +msgstr "Sök data" + +#: ckan/templates/home/snippets/search.html:16 +msgid "Popular tags" +msgstr "Populära taggar" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} statistik" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "dataset" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organisationer" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "grupper" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Detta fält måste fyllas i" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Du kan använda Formattering av markdown here" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "Nyckel" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Värde" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Eget" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Formuläret innehåller ogiltiga poster:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Obligatoriskt fält" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "Bild URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Rensa uppladdning" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "Lägg till en organisation" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Organisationsformulär" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Redigera dataset" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "resultat för \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Tyvärr hittades inga dataset som matchar \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Gör publik" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Gör privat" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Utkast" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Privat" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Denna organisation har inga dataset kopplade till sig" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Vill du verkligen radera organisationen - {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 "Redigera organisation" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Lägg till organisation" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Sök organisationer..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Det finns för närvarande inga organisationer för denna webbplats" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Användarnamn" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "E-postadress" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Uppdatera medlem" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Administratör: Kan lägga till, redigera och radera " +"dataset, samt administrera organisationens medlemmar.

" +"

Redaktör: Kan lägga till och redigera dataset men inte " +"administrera medlemmar.

Medlem: Kan se " +"organisationens privata dataset men kan inte lägga till nya dataset.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} medlem" +msgstr[1] "{count} medlemmar" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Skapa en Organisation" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Uppdatera Organisation" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Skapa organisation" + +#: ckan/templates/organization/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Dataset i organisation: {group}" + +#: ckan/templates/organization/snippets/help.html:4 +#: ckan/templates/organization/snippets/helper.html:4 +msgid "What are Organizations?" +msgstr "Vad är Organisationer?" + +#: 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 "" +"

Organisationer utgör publicerande enheter för dataset (t.ex. Kungliga " +"biblioteket). Det innebär att dataset kan publiceras och tillhöra en " +"organisatorisk enhet istället för en enskild person.

Inom " +"organisationer kan administratörer tilldela roller och ge behörighet till " +"enskilda personer att publicera dataset från den aktuella " +"organisationen.

" + +#: 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-organisationer används för att skapa, hantera och publicera samlingar " +"av dataset. Användare kan ha olika roller inom en organisation, beroende på " +"deras behörighet att skapa, redigera och publicera." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Min organisation" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Lite information om min organisation..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" +"Vill du verkligen radera denna organisation? Notera*: Det går inte att ta " +"bort organisationer om det finns publika eller privata dataset som hör till " +"organisationen." + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Spara organisationen" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Visa {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Skapa dataset" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Vad är dataset?" + +#: 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 "" +"Ett dataset i CKAN är en samling av dataresurser (såsom filer), tillsammans " +"med en beskrivning och annan information, som finns tillgänglig på en " +"permanent URL. Dataset är vad användare ser när de söker efter data." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Ändringar" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Vill du verkligen radera detta dataset: {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Vill du verkligen radera resursen - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Visa dataset" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Redigera metadata" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +msgstr "Deltagare" + +#: 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 "Redigera vy" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Förhandsvisa" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Uppdatera" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Koppla denna grupp till detta dataset" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Lägg till till gruppen" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Det finns inga grupper kopplade till detta dataset" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Uppdatera dataset" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Lägg till data till detta dataset" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Lägg till resurs" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Lägg till resurs" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nu resurs" + +#: 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 "Lägg till vy" + +#: 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 "" +" Vyer för Data Explorer blir snabbare och pålitligare om tillägget DataStore" +" är aktiverat. För mer information, se Dokumentation för Data " +"Explorer. " + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Lägg till" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" +"Du ser just nu en gammal version av detta dataset. För att se aktuell " +"version, klicka här." + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Alla resurser" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Visa resurser" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Redigera resurser" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Vyer" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API-adress" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Gå till resurs" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Hämta" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "Dataset beskrivning:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Källa: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Inga vyer har skapats för resursen." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Hittar du inte vyerna du förväntade dig?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Några möjliga orsaker till att du inte ser förväntade vyer är:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Ingen vy har skapats som är lämplig för den här resursen." + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Administratörerna har inte aktiverat rätt plugin för vyerna" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Om en vy kräver DataStore så kanske denna plugin inte aktiverats. " +"Alternativt har inte data levererats till DataStore eller också är DataStore" +" inte klar med bearbetningen av data" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Mer information" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Fält" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Data senast uppdaterad" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "okänd" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Metadata senast uppdaterad" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Skapad" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Format" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Licens" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Ny vy" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Resursen har inga vyer" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Lägg till resurs" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Detta dataset saknar data, varför " +"inte lägga till några?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API-dokumentation" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "fullständig dump i {format}-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 "" +"Du kan också komma åt katalogen via %(api_link)s (se %(api_doc_link)s) eller" +" ladda ner en %(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 "" +" Du kan också komma åt katalogen via %(api_link)s (se %(api_doc_link)s). " + +#: ckan/templates/package/view_edit_base.html:9 +msgid "All views" +msgstr "Alla vyer" + +#: ckan/templates/package/view_edit_base.html:12 +msgid "View view" +msgstr "Visa vy" + +#: ckan/templates/package/view_edit_base.html:37 +msgid "View preview" +msgstr "Visa förhandsgranskning" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "Redigera deltagare" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "Lägg till deltagare" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "Tillbaka till alla deltagare" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" +"Är du säker på att du vill ta bort denna användare från deltagarlistan?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "Uppdatera deltagare" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "Vilka roller finns tillgängliga?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" +"

Administratör: Förutom att hantera dataset så kan " +"administratörer lägga till och ta bort användare som deltagare i " +"dataset.

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

Redaktör: Redaktörer kan redigera dataset och resurser, " +"även om de är privata.

Medlem: Medlemmar kan se " +"privata dataset, men inte redigera dem.

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "Lägg till deltagare" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} deltagare" +msgstr[1] "{count} deltagare" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Mer information" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Källa" + +#: 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 +msgid "Author" +msgstr "Författare" + +#: 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 "Förvaltare" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Version" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Status" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Senast uppdaterad" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Innan ett dataset kan skapas måste det finnas en organisation" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Skapa en ny organisation" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Det finns inga organisationer som kan kopplas till detta dataset" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Innan du kan fortsätta behöver en systemadministratör skapa en organisation " +"först." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "%(timestamp)s, %(username)s:" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "t.ex. en beskrivande titel" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "t.ex. mitt-dataset" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "t.ex. Några rader om datasetet" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "t.ex. ekonomi, psykisk hälsa, offentlig sektor" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "Välj licens" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +" Licensdefinitioner och mer information finns på opendefinition.org " + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Ingen organisation" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Synlighet" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Offentlig" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Aktiv" + +#: 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 "" +"Den datalicens du valt ovan gäller bara innehållet i resursfiler som " +"du lägger till i detta dataset. Genom att bekräfta detta formulär godkänner " +"du att de metadata du registrerar i formuläret släpps under licensen " +"Open Database " +"License." + +#: ckan/templates/package/snippets/package_form.html:39 +msgid "Are you sure you want to delete this dataset?" +msgstr "Är du säker på att du vill radera detta dataset?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Nästa steg: Lägg till data" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Exempelsson" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-post till författare" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "E-post till förvaltare" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Uppdatera resurs" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Data" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "t.ex. Guldpriser januari 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Beskrivande information om datasetet" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "t.ex. CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" +"Här kommer en automatisk gissning att läggas in. Lämna blankt om du vill" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "t.ex. 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Filstorlek" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "t.ex. 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME-typ" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "t.ex. application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Vill du verkligen ta bort denna resurs?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Föregående" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Spara och lägg till nästa" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Slutför" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Vad är en Resurs?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"En resurs kan vara en fil, eller länk till en fil, som innehåller användbar " +"data." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Utforska" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Mer information" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "Helskärm" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Bädda in" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Resursvyn är inte tillgänglig just nu." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Infoga resursvy" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Du kan kopiera och klistra in koden i ett CMS eller en blogg som stödjer rå " +"HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Bredd" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Höjd" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Kod" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Förhandsgranska resurs" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Data och resurser" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "Det finns inga data i detta dataset" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Skapa dataset" + +#: ckan/templates/package/snippets/stages.html:30 +#: ckan/templates/package/snippets/stages.html:34 +#: ckan/templates/package/snippets/stages.html:36 +msgid "Add data" +msgstr "Lägg till data" + +#: ckan/templates/package/snippets/view_form.html:8 +msgid "eg. My View" +msgstr "t.ex. Min vy" + +#: ckan/templates/package/snippets/view_form.html:9 +msgid "eg. Information about my view" +msgstr "t.ex. Information om min vy" + +#: ckan/templates/package/snippets/view_form_filters.html:28 +msgid "Remove Filter" +msgstr "Ta bort filter" + +#: ckan/templates/package/snippets/view_help.html:2 +msgid "What's a view?" +msgstr "Vad är en vy?" + +#: ckan/templates/package/snippets/view_help.html:4 +msgid "A view is a representation of the data held against a resource" +msgstr "En vy är en representation av de data som är kopplade till en resurs" + +#: ckan/templates/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Lägg till dataset" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Status för Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Visa mer {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Visa endast populär {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Det finns ingen {facet_type} som matchar sökningen" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Hem" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Språk" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Kör" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Licens ej angiven" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Detta dataset uppfyller kraven i Open Definition." + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Denna organisation saknar beskrivning" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Detta dataset saknar beskrivning" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sortera på" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Filtrera resultat " + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Försök med en ny sökfråga.

" + +#: ckan/templates/snippets/search_form.html:87 +msgid "" +"

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

" +msgstr "

Fel vid sökning. Försök igen.

" + +#: ckan/templates/snippets/search_result_text.html:15 +msgid "{number} dataset found for \"{query}\"" +msgid_plural "{number} datasets found for \"{query}\"" +msgstr[0] "{number} dataset hittades för \"{query}\"" +msgstr[1] "{number} dataset hittades för \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Hittade inga dataset för \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} dataset hittades" +msgstr[1] "{number} dataset hittades" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Inga dataset hittades" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} grupp hittades för \"{query}\"" +msgstr[1] "{number} grupper hittades för \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Hittade inga grupper för \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} grupp hittades" +msgstr[1] "{number} grupper hittades" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Inga grupper hittades" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} organisation matchade \"{query}\"" +msgstr[1] "{number} organisationer matchade \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Inga organisationer matchade \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} organisation hittades" +msgstr[1] "{number} organisationer hittades" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Inga organisationer hittades" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Social" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Prenumerera" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "E-post" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} lade till taggen {tag} till dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} uppdaterade gruppen {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} uppdaterade organisationen {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} uppdaterade dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "Visa version" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} uppdaterade resursen {resource} i dataset {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} uppdaterade sin profil" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} raderade gruppen {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} raderade organisationen {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} raderade dataset {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} raderade resursen {resource} från dataset {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} började följa {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} började följa {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} började följa {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} skapade gruppen {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} skapade organisationen {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} skapade dataset {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} lade till resursen {resource} till dataset {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} registrerade sig" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} tog bort taggen {tag} från dataset {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" +"Ändrade författare av {pkg_link} till {new_author} (tidigare {old_author})" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "Ändrade författare av {pkg_link} till {new_author}" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "Raderade författare från {pkg_link}" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" +"Ändrade e-post till författaren av {pkg_link} till {new_author_email} " +"(tidigare {old_author_email})" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "Ändrade e-post till författaren av {pkg_link} till {new_author_email}" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "Raderade e-post till författare från {pkg_link}" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "Raderade resurs {resource_link} från {pkg_link}" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" +"Ändrade värdet i fältet {key} till {value} in {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "Lade till fält {key} med värde {value} till {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "Lade till fält {key} till {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "Lade till följande fält till {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "{key} med värde {value}" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" +"Ändrade värdet i fältet {key} till {new_val} (tidigare " +"{old_val}) i {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" +"Ändrade värdet i fältet {key} till {new_val} i {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "Raderade fältet {key} från {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "Raderade följande fält från {pkg_link}" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "{key}" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "Ändrade licens för {pkg_link} till {new_link} (tidigare {old_link})" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "Ändrade licens för {pkg_link} till {new_link} (tidigare {old_title})" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "Ändrade licens för {pkg_link} till {new_title} (tidigare {old_link})" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "Ändrade licens för {pkg_link} till {new_title} (tidigare {old_title})" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" +"Ändrade förvaltare av {pkg_link} till {new_maintainer} (tidigare " +"{old_maintainer})" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "Ändrade förvaltare av {pkg_link} till {new_maintainer}" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "Raderade förvaltare från {pkg_link}" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" +"Ändrade e-post till förvaltare av {pkg_link} till {new_email} (tidigare " +"{old_email})" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "Ändrade e-post till förvaltare av {pkg_link} till {new_email}" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "Raderade förvaltarens e-postadress från {pkg_link}" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "Flyttade {pkg_link} från {old_link} till {new_link}" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "Laddade upp en ny fil till resursen {resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "Lade till resursen {resource_link} till {pkg_link}" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" +"Uppdaterade beskrivningen av {pkg_link} från
{old_notes}
till
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" +"Uppdaterade beskrivningen av {pkg_link} till
{new_notes}
" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "Raderade beskrivning från {pkg_link}" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" +"Flyttade {pkg_link} från organisation {old_org_link} till organisation " +"{new_org_link}" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "Raderade {pkg_link} från organisation {old_org_link}" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "Lade till {pkg_link} till organisation {new_org_link}" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "Ändrade synlighet för {pkg_link} till {visibility}" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"Uppdaterade beskrivningen av resursen {resource_link} i {pkg_link} till
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "Raderade beskrivning från resurs {resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"Uppdaterade beskrivningen av resursen {resource_link} i {pkg_link} från
{old_desc}
till
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Lade till fält {key} med värde {value} till resursen " +"{resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" +"Lade till fält {key} till resursen {resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "Lade till följande fält till resursen {resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "Raderade fält {key} från resurs {resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "Raderade följande fält från resurs {resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" +"Ändrade värdet i fältet {key} i resursen {resource_link} till " +"{new_val} (tidigare {old_val}) i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" +"Ändrade värdet i fältet {key} till {new_val} i resursen " +"{resource_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" +"Raderade värdet i fältet {key} i resursen {resource_link} i " +"{pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" +"Ändrade format för resursen {resource_link} till {format_link} i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" +"Ändrade format för resursen {resource_link} till {new_format_link} (tidigare" +" {old_format_link}) i {pkg_link}" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" +"Ändrade namn på resursen {old_resource_link} till {new_resource_link} i " +"{pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "Raderade taggen {tag_link} från {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "Raderade följande taggar från {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "Lade till taggen {tag_link} till {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "Lade till följande taggar till {pkg_link}" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "Ändrade titel till {title_link} (tidigare {old_title})" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "Ändrade källa för {pkg_link} från {old_link} till {new_link}" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "Raderade källa från {pkg_link}" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "Ändrade källa för {pkg_link} till {new_link}" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" +"Ändrade version för {pkg_link} till {new_version} (tidigare {old_version})" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "Raderade version från {pkg_link}" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "Ändrade version för {pkg_link} till {new_version}" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Sök taggar" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "Skapa API token" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "API tokens" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "Du har inte skapat några API tokens." + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Nyhetsfeed" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Mina dataset" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Mina organisationer" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Mina grupper" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Aktivitet från poster som jag följer" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Du har inte skapat något dataset" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Skapa ett nu?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Du är inte medlem i någon grupp." + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Du är inte medlem i någon organisation." + +#: 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 "Användare" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Kontoinformation" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "Din profil visar andra CKAN-användare vem du är och vad du gör." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Ändringar" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Namn" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "t.ex. Joe Exempelsson" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "t.ex. joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Lite information om dig själv" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Prenumerera på e-post för meddelanden." + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "Profilbild" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "Profilbilds-URL" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Ändra lösenord" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Sysadmin-lösenord" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Lösenord" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Bekräfta lösenord" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Vill du verkligen radera denna användare?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Är du säker på att du vill generera om API-nyckeln?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Generera om API-nyckeln" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Uppdatera profilen" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Alla användare" + +#: 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 "Logga in" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Behöver du ett konto?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Skapa ett konto, det tar bara en minut." + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Skapa ett konto" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Glömt ditt lösenord?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Inga problem, använd vårt formulär för återskapande av lösenord för att " +"återställa det." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Glömt ditt lösenord?" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Utloggad" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Du är nu utloggad." + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Du är redan inloggad som {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Logga ut" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Kom ihåg mig" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Du är redan inloggad" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Du måste logga ut innan du kan logga in med ett annat konto." + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Logga ut nu" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Registrering" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Skapa ett nytt konto" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Varför registrera sig?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Skapa dataset, grupper och andra spännande ting" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "användarnamn" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Fullständigt namn:" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Skapa ett konto" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Återställ ditt lösenord" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Återställ lösenord" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "Du kan också byta användarnamn. Det kan inte ändras senare." + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Uppdatera lösenord" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Så här fungerar det:" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Ange ett nytt lösenord så blir ditt konto uppdaterat." + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Användaren har inte skapat något dataset." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Du har inte angivit någon biografi." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Den här användaren har ingen biografi." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Det innebär att bara du kan se denna" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Medlem sedan" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API-nyckel" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Återställ ditt lösenord" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "E-post eller användarnamn" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "Begär återställning" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" +"Skriv in din e-postadress eller användarnamn i rutan så skickas ett e-post " +"meddelande med en länk där du kan ange ett nytt lösenord." + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "Token" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "Senast använd" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "Återkalla" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Aktivitet från:" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Sök lista..." + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Du följer ingenting." + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Inga följare" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Sök användare" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "Massiv rensning klar" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "lyckades" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "Parametern u\"{parameter_name}\" är inte ett heltal" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "Inga aktiviteter hittades" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "Behörighet saknas för att se aktivitetsinformation" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "Detaljer för datasetsaktivitet är inte tillgängligt" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "Obehörig att läsa paket" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "Behörighet saknas för att läsa deltagare {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "Behörighet saknas för att ta bort deltagare {}" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "Användare borttagen från deltagarlistan" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "Behörighet saknas för att ändra deltagare {}" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "Användare tillagd till deltagarlistan" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "Behörighet saknas för att se API tokens" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "Behörighet saknas för att skapa API tokens" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"API token skapad: {token} " +"{copy}
Se till att kopiera det nu, du kommer inte kunna se det igen!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "Behörighet saknas för att återkalla API tokens" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "Ditt lösenord måste bestå av minst 8 tecken." + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Omdirigering till extern webbplats är inte tillåten." diff --git a/ckan/i18n/th/LC_MESSAGES/ckan.po b/ckan/i18n/th/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..d586dec4d01 --- /dev/null +++ b/ckan/i18n/th/LC_MESSAGES/ckan.po @@ -0,0 +1,5074 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Thai (https://www.transifex.com/okfn/teams/11162/th/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: th\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "ไม่พบทรัพยากร" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "ไม่ได้รับอนุญาตให้ดูหน้านี้" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "สำเร็จ" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "รอดำเนินการ" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "ส่ง" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "ผิดพลาด" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "ยังไม่ได้อัพโหลด" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "อัพโหลดไปที่จัดเก็บข้อมูล" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "มีปัญหาในการอัพโหลด: " + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "ข้อผิดพลาด:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "สถานะ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "ปรับปรุงครั้งล่าสุด" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "ไม่เคย" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "บันทึกการอัพโหลด" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "รายละเอียด" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "จบการบันทึก" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "ที่จัดเก็บข้อมูล" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "ไม่พบทรัพยากรที่จัดเก็บข้อมูล" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "ไม่พบทรัพยากร \"{0}\" " + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "ผู้ใช้ {0} ไม่ได้รับอนุญาคให้ปรับปรุงทรัพยากร {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "เข้าถึงทรัพยากรข้อมูลผ่าน API ของเว็บด้วยภาษาสอบถามที่ทรงพลัง" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "ปลายทาง" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "Data API สามารถเข้าถึงได้ด้วยการเรียกใช้ CKAN action API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr " สร้าง" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr " ปรับปรุง/เพิ่ม" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "เรียกดูข้อมูล" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "เรียกดูข้อมูล (ผ่าน SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "กำลังเรียกข้อมูล" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "ตัวอย่างเรียกข้อมูล (5 ผลลัพธ์แรก)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "ตัวอย่างเรียกข้อมูล (ผลลัพธ์มีคำว่า 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "ตัวอย่างเรียกข้อมูล (โดยการใช้คำสั่ง SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "ตัวอย่าง: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "คำขอแบบ ajax (JSONP) พื้นฐาน เพื่อร้องขอข้อมูลผ่าน API โดยใช้ jQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "ตัวอย่าง: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "บันทึก" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "รายละเอียด" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "หลัก" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "ประเภท" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "กำลังโหลด..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Data API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "ตาราง" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "การแสดงผลแบบ Responsive" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "แสดงหลัก" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "" + +#: ckan/templates/group/read.html:17 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 "ได้รับความสนใจ" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "กลุ่มนี้ไม่มีรายละเอียด" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} ชุดข้อมูล" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 ชุดข้อมูล" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"เครื่องมือสำหรับการดูตัวอย่างข้อมูลของ CKAN มีฟีเจอร์ที่ทรงพลังจำนวนมาก" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "ผู้ติดตาม" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "ทรัพยากร" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "กราฟ" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "แผนที่" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "ไม่สามารถโหลดวิวได้" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "ฟิลด์ GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "ชุดข้อมูลที่มีอันดับสูงสุด" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "เรตติ้งโดยเฉลี่ย" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "จำนวนเรตติ้ง" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "ไม่มีเรตติ้ง" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "กลุ่มล่าสุด" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "กลุ่ม" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "จำนวนของชุดข้อมูล" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "ไม่มีกลุ่ม" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "แท็คที่เป็นที่นิยม" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "ชื่อแท็ค" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "จำนวนชุดข้อมูล" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "ผู้ใช้" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "เมนูสถิติ" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "ชุดข้อมูลที่มีการแก้ไขมากที่สุด" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "ข้อความ" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "เว็บไซต์" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "URL ของเว็บเพจ" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" +"ตัวอย่างเช่น http://example.com (ถ้าปล่อยว่างจะใช้ URL ของแหล่งข้อมูล)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "เบราเซอร์ของคุณไม่สนับสนุน iframe" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "ไม่พบฟังก์ชั่นการอนุมัติ: %s " + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "ผู้ดูแลระบบ" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "บรรณาธิการ" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "สมาชิก" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "ต้องเป็นผู้ดูแลระบบถึงจะจัดการได้" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "ชื่อไซต์" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "รูปแบบ" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "คำอธิบายของไซต์" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "โลโก้ของไซต์" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "เกี่ยวกับ" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "ข้อความบนหน้า \"เกี่ยวกับ\"" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "ข้อความเกริ่นนำ" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "ข้อความบนหน้าหลัก" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "CSS ที่กำหนดเอง" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "ได้แทรก CSS ที่ปรับแต่งได้ลงในส่วนหัวของหน้าไว้แล้ว" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "หน้าหลัก" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"ไม่สามารถถอดถอนแพคเกจ %s เนื่องจากรุ่นที่ %s ใช้แพคเกจ %s ที่ยังไม่ถูกลบ" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "เกิดปัญหาในการถอดถอนรุ่น %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "การถอดถอนเสร็จสมบูรณ์" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "การกระทำนี้ยังไม่ถูกสร้างขึ้น" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "ปฏิเสธการเข้าใช้" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "ไม่พบ" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "คำขอไม่เหมาะสม" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "ไม่รู้จักชื่อการกระทำนี้: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON ผิดพลาด: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "ข้อมูลคำขอไม่เหมาะสม: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "ไม่พบกลุ่ม" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "ประเภทของกลุ่มไม่ถูกต้อง" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "องค์กร" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "กลุ่ม" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "แท็ค" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "รูปแบบ" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "สัญญาอนุญาต" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "ผู้ใช้ %r ไม่ได้รับอนุญาตให้แก้ไข %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "ไม่ได้รับอนุญาตให้ปรับปรุงเป็นกลุ่ม" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "ไม่ได้รับอนุญาตให้สร้างกลุ่ม" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "ข้อมูลไม่สมบูรณ์" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "ผู้ใช้ %r ไม่มีสิทธิ์ในการแก้ไข \"การอนุญาต\" %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "ไม่ได้รับการอนุญาตให้ลบกลุ่ม %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "องค์กรถูกลบออกแล้ว" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "กลุ่มถูกลบออกแล้ว" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s ถูกลบไปแล้ว" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "ผู้ใช้ %r ไม่ได้รับอนุญาตให้แก้ไขสมาชิกของ %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "ไม่ได้รับอนุญาตให้สร้างสมาชิกในกลุ่ม %s" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "ไม่ได้รับอนุญาตให้เพิ่มสมาชิกในกลุ่ม %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "ไม่ได้รับการอนุญาตให้ลบสมาชิกในกลุ่ม %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "สมาชิกในกลุ่มได้ถูกลบออกแล้ว" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "ต้องเลือกสองรุ่นเพื่อทำการเปรียบเทียบ" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "ประวัติการแก้ไขกลุ่มในระบบ CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "การเปลี่ยนแปลงกลุ่มล่าสุดในระบบ CKAN :" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "ข้อความบันทึก:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "คุณกำลังติดตาม {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "คุณไม่ได้ติดตาม {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "ไม่ได้รับการอนุญาตให้ดูข้อมูลของผู้ติดตาม %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "ขณะนี้เว็บไซต์อยู่ในสถานะออฟไลน์ ฐานข้อมูลไม่ได้ถูกสร้าง" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "กรุณา ปรับปรุงข้อมูลผู้ใช้ และเพิ่มที่อยู่อีเมลของคุณ" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s ใช้อีเมลสำหรับการตั้งค่ารหัสผ่านใหม่" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "คำค้นไม่ถูกต้อง:{error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "พารามิเตอร์ \"{parameter_name}\" ไม่ใช่เลขจำนวนเต็ม" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "ไม่พบชุดข้อมูล" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "รูปแบบรุ่นไม่ถูกต้อง: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "({file_!r}) ไม่สนับสนุนการดูชุดข้อมูลประเภท \"{package_type}\"" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "ไม่ได้รับการอนุญาตให้อ่านแพคเกจ %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "ประวัติการแก้ไขชุดข้อมูลในระบบ CKAN " + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "การเปลี่ยนแปลงชุดข้อมูลล่าสุดในระบบ CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "ไม่ได้รับการอนุญาตให้สร้างแพคเกจ" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "ไม่ได้รับการอนุญาตให้แก้ไขทรัพยากร" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "ไม่ได้รับการอนุญาตให้ปรับปรุงชุดข้อมูล" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "ไม่พบชุดข้อมูล {id} " + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "คุณต้องเพิ่มอย่างน้อยหนึ่งทรัพยากรข้อมูล" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "ไม่ได้รับการอนุญาตให้สร้างทรัพยากร" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "ไม่ได้รับอนุญาตให้สร้างทรัพยากรสำหรับแพกเกจนี้" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "ไม่สามารถเพิ่มแพคเกจลงในดัชนีค้นหา" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "ไม่สามารถปรับปรุงดัชนีค้นหา" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "ชุดข้อมูลได้ถูกลบออก" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "ไม่ได้รับอนุญาตให้ลบแพคเกจ %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "ทรัพยากรได้ถูกลบออก" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "ไม่ได้รับการอนุญาตให้ลบทรัพยากร %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "ไม่พบข้อมูลทรัพยากร" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "ไม่มีดาวน์โหลด" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "ไม่ได้รับการอนุญาติให้อ่านชุดช้อมูล %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "ไม่ได้รับการอนุญาตให้อ่านทรัพยากร %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "ไม่ได้รับอนุญาตให้แก้ไขทรัพยากร" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "ไม่ได้กำหนดตัวอย่างไว้" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "ไม่พบผู้ใช้" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "ไม่อนุญาตให้ลงทะเบียนเป็นผู้ใช้" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "ไม่อนุญาตให้สร้างผู้ใช้" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "ไม่อนุญาตให้ลบผู้ใช้ด้วย id \"{user_id}\"" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "ไม่ได้ระบุผู้ใช้" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้ %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "ประวัติผู้ใช้ปรับปรุงแล้ว" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "ไม่อนุญาตให้สร้างผู้ใช้ %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Captcha ไม่ถูกต้อง กรุณาลองใหม่" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr " ผู้ใช้ \"%s\" ลงทะเบียนแล้วแต่คุณยังล็อกอินเป็น \"%s\" อยู่เหมือนเดิม" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "ไม่อนุญาตให้แก้ไขผู้ใช้" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "เข้าระบบล้มเหลว ชื่อผู้ใช้หรือรหัสผ่านผิด" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "ไม่ได้รับอนุญาตเพื่อขอตั้งรหัสผ่านใหม่" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "ไม่อนุญาตให้ตั้งรหัสผ่านใหม่" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "ตั้งค่ารหัสใหม่ไม่ถูกต้อง กรุณาลองอีกครั้ง" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "รหัสผ่านของคุณได้รับการตั้งค่าใหม่" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "รหัสผ่านของคุณต้องมีความยาว 4 ตัวอักษรหรือมากกว่า" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "รหัสผ่านที่คุณกรอกไม่ตรงกัน" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "คุณต้องระบุรหัสผ่าน" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "ไม่พบรายการที่ติดตาม" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "ไม่พบ {0} " + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "ทุกอย่าง" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "มุมมอง" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "เมื่อกี้" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "ไม่ทราบ" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "ไม่ได้ตั้งชื่อทรัพยากร" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "สร้างชุดข้อมูลใหม่แล้ว" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "แก้ไขทรัพยากรแล้ว" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "แก้ไขการตั้งค่าแล้ว" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "จำนวนผู้ชม: {number} " + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "จำนวนผู้ชมล่าสุด: {number} " + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "ไม่มีที่อยู่อีเมลของผู้รับ" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "องค์กร" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "กลุ่ม" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "ค่าที่ขาดหาย" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "ค่า %(name)s ไม่ถูกต้อง" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "กรุณาใส่ค่าตัวเลข (จำนวนเต็ม)" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "แพคเกจของทรัพยากรไม่ถูกต้อง" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "เพิ่มเติม" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "ไม่มีแท็คสำหรับคำศัพท์ \"%s\" " + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "ชุดข้อมูล" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "ไม่สามารถอ่านข้อมูล JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "ไม่มีองค์กรนี้" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "คุณไม่สามารถเพิ่มชุดข้อมูลลงในองค์กรนี้" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "ตัวเลขนี้ไม่ถูกต้อง" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "จะต้องเป็นจำนวนธรรมชาติ" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "จะต้องเป็นเลขจำนวนเต็มบวก" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "รูปแบบข้อมูลวันที่ไม่ถูกต้อง" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "ไม่อนุญาตให้มีลิงก์ใน log_message" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "ทรัพยากร" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "ไม่มีชื่อกลุ่มหรือ ID " + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "ประเภทกิจกรรม" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "ชื่อต้องเป็นตัวอักษรภาษาอังกฤษ" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "ไม่สามารถใช้ชื่อนี้ได้" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "ชื่อต้องมีความยาวไม่เกิน %i ตัวอักษร" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "URL นี้ถูกใช้แล้ว" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "ความยาวของชื่อ \"%s\" น้อยกว่าค่าขั้นต่ำ %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "ความยาวของชื่อ \"%s\" มากกว่าค่าสูงสุดสุด %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "ชื่อเวอร์ชั่นยาวได้ไม่เกิน %i ตัวอักษร" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "กุญแจ \"%s\" ซ้ำ" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "ชื่อกลุ่มมีอยู่แล้วในฐานข้อมูล" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "แท็ค \"%s\" มีความยาวน้อยกว่าขั้นต่ำ %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "ความยาวของแท็ค \"%s\" เกินกว่าค่าสูงสุด %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "ค่าของ tag \"%s\" ต้องเป็นตัวอักษร ตัวเลขหรือตัว _-. เท่านั้น" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "ค่าแท็ค \"%s\" ต้องเป็นอักษรภาษาอังกฤษตัวเล็กเท่านั้น" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "ชื่อผู้ใช้ต้องเป็นตัวอักษร" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "ชื่อล๊อกอินนี้ไม่ว่าง" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "กรุณาป้อนรหัสผ่านสองครั้ง" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "รหัสผ่านต้องเป็นตัวอักษร" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "รหัสผ่านที่คุณป้อนไม่ตรงกัน" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "ไม่สามารถแก้ไขได้ กรุณาอย่าใส่ลิงก์ในคำอธิบายของคุณ" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "ชื่อต้องมีความยาวไม่น้อยกว่า %s ตัวอักษร" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "ชื่อคำศัพท์นี้ถูกใช้ไปแล้ว" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"ไม่สามารถเปลี่ยนค่าของกุญแจจาก %s ไปเป็น %s " +"ได้เนื่องจากกุญแจนี้สามารถอ่านได้เท่านั้น" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "ไม่พบแท็คคำศัพท์นี้" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "แท็ค %s ไม่ได้เป็นของคำศัพท์ %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "ไม่มีชื่อแท็ค" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "แท็ค %s เป็นของคำศัพท์ %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "กรุณากรอก URL ที่ถูกต้อง" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "ไม่มีหน้าที่นี้" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "ชุดข้อมูลที่ไม่มีชื่อองค์กรไม่สามารถเป็นส่วนบุคคลได้" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "ไม่ใช่รายการ" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "ไม่ใช่ string" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "หลักนี้จะสร้างวนในลำดับชั้น" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "ค่าที่ขาดหาย" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "พยายามที่จะสร้างองค์กรเป็นกลุ่ม" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "คุณต้องใส่รหัสแพคเกจหรือชื่อ (พารามิเตอร์ \"package\")" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "คุณต้องทำการจัดอันดับ (พารามิเตอร์ \"rating\")" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "การให้คะแนนต้องเป็นค่าตัวเลข" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "การให้คะแนนต้องมีค่าระหว่าง %i ถึง %i" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "คุณต้องเข้าระบบเพื่อติดตามผู้ใช้" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "คุณไม่สามารถทำการติดตามตัวเองได้" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "คุณติดตามแล้ว {0} คน" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "คุณต้องเข้าระบบเพื่อติดตามชุดข้อมูล" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "ยังไม่มีผู้ใช้ชื่อ {username}" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "คุณต้องเข้าระบบเพื่อติดตามกลุ่ม" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "รหัสผู้ใช้ไม่มีในข้อมูล" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "ไม่สามารถหาคำศัพท์ \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "ไม่เจอแท็ค \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "คุณต้องเข้าระบบเพื่อเลิกติดตาม" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "คุณยังไม่ได้ติดตาม {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "ไม่พบทรัพยากร" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "อย่าระบุถ้าใช้พารามิเตอร์ \"query\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "ต้องเป็นคู่ : " + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "resource_search ไม่รับรู้ฟิลด์ \"{field}\" ในการสืบค้นข้อมูลทรัพยากร" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "ไม่พบแพคเกจ" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus ไม่พบความคืบหน้าของงาน" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "ไม่พบองค์กร" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างแพคเกจ" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขรายละเอียดกลุ่มนี้" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มชุดข้อมูลในองค์กรนี้" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "ไม่พบแพคเกจสำหรับทรัพยากรนี้และไม่สามารถตรวจสอบความถูกต้องได้" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจเหล่านี้" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างกลุ่ม" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้สร้างองค์กร" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "ผู้ใช้ {user} ไม่ได้รับอนุญาตให้สร้างผู้ใช้ผ่านทาง API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "ไม่ได้รับอนุญาตให้สร้างผู้ใช้" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "ไม่พบกลุ่ม" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เพิ่มสมาชิก" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขกลุ่ม %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบทรัพยากร %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบความสัมพันธ์ %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบกลุ่ม %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ลบองค์กร %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาติให้ลบสถานะของงาน task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "ไม่ได้รับการอนุญาต" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านแพคเกจเหล่านี้" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านแพคเกจ %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้อ่านทรัพยากร %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "คุณจะต้องเข้าระบบเพื่อใช้หน้าปัดของคุณ" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขแพคเกจ %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขทรัพยากร %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตในการเปลี่ยนสถานะของแพคเก็จ %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไของค์กร %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เปลี่ยนสถานะของกลุ่ม %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขสิทธิ์ของกลุ่ม %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "ต้องเข้าระบบเพื่อแก้ไขผู้ใช้" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้แก้ไขผู้ใช้ %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้เปลี่ยนสถานะของการแก้ไข" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ปรับปรุงตาราง task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "ผู้ใช้ %s ไม่ได้รับอนุญาตให้ปรับปรุงตาราง term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "อื่นๆ (เปิด)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "อื่นๆ (สาธารณสมบัติ)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "อื่นๆ (แสดงที่มา)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "ครีเอทีฟคอมมอนส์ ไม่ใช้เพื่อการค้า (ไม่ระบุรุ่น)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "อื่นๆ (ไม่ใช่เพื่อการค้า)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "อื่นๆ (แบบไม่เปิด)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "ขึ้นกับ %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "ขึ้นกับ %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "เกิดขึ้นจาก %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "มีที่มาจาก %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "ลิงก์ไปสู่ %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "ลิงก์มาจาก %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "เป็นลูกของ %s " + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "เป็นแม่ของ %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "มีพี่น้อง %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "ไม่มีข้อมูล API สำหรับทรัพยากรนี้" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "ไม่สามารถโหลดข้อมูลผ่าน API นี้ได้" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "กำลังพิมพ์..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "ไม่พบข้อมูลที่ค้นหา" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "ฟอร์มนี้มีการแก้ไขที่ยังไม่ได้ถูกบันทึก" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "กรุณายืนยันการกระทำ" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "คุณแน่ใจหรือไม่ที่จะทำ?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "ยืนยัน" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "ยกเลิก" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "เลิกติดตาม" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "ติดตาม" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "ลิงก์" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "ลิงก์ไป URL บนอินเทอร์เน็ต (คุณสามารถลิงก์ไป API ได้เช่นกัน)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "อัพโหลด" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "ถอดถอน" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "อัพโหลดแฟ้มจากคอมพิวเตอร์ของคุณ" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "ไฟล์" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "บันทึกลำดับ" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "กำลังบันทึก..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "อัพโหลดไฟล์" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "เกิดข้อผิดพลาด" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "ไม่สามารถอัพโหลดแฟ้ม" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "ไม่สามารถที่จะตรวจสอบการอัพโหลด" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "อัพโหลดทรัพยากรแล้ว" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "ไม่สามารถที่จะดึงข้อมูลจากไฟล์ที่อัพโหลดมา" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "แก้ไข" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "แสดงอีก" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "ซ่อน" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "ผิดพลาด %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "เกี่ยวกับ {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "การตั้งค่าของผู้ดูแลระบบ" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "ดูโปรไฟล์" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "หน้าปัด (%(num)d new items)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "หน้าปัดข้อมูล" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "ออกจากระบบ" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "เข้าสู่ระบบ" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "ลงทะเบียน" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "ชุดข้อมูล" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "ค้นหาชุดข้อมูล" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "ค้นหา" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "ถังขยะ" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "คุณแน่ใจหรือไม่ที่จะรีเซ็ทการปรับแต่ง?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "ตั้งค่าใหม่" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "ปรับปรุงการปรับแต่ง" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "ตัวเลือกการปรับแต่ง CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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 นี้ ซึ่งจะใช้ในส่วนต่างๆ ของ " +"CKAN.

รูปแบบ: เลือกจากรายการตัวเลือกที่มี " +"เพื่อให้สามารถตกแต่งหน้าตาได้แบบรวดเร็ว

" +"

ป้ายกำกับโลโก้: โลโก้ที่จะแสดงในส่วนหัวของแม่แบบของ CKAN" +" ทั้งหมด

เกี่ยวกับ: ข้อความส่วนนี้จะแสดงใน หน้าเกี่ยวกับ ของ CKAN

" +"

ข้อความเกริ่นนำ: ข้อความส่วนนี้จะแสดงใน หน้าหลัก ของ CKAN " +"เพื่อเป็นการต้อนรับผู้ที่เข้ามา

CSS ที่กำหนดเอง: " +"โค๊ด CSS ที่จะแสดงใน <head> ของทุกหน้า " +"หากคุณต้องการปรับแต่งแม่แบบเพิ่มเติม เราขอแนะนำให้อ่านเอกสารอ้างอิง

หน้าหลัก: " +"สำหรับเลือกรูปแบบการจัดเรียงของโมดูลที่มีเตรียมไว้ให้

" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "ยืนยันการลบ" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "คลิกที่นี่สำหรับข้อมูลเพิ่มเติม" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "ไม่มีการกำหนดวิธีจัดการชนิดข้อมูลประเภทนี้ไว้: %(type)s" + +#: 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/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 "Markdown" + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "เลือก" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "เพิ่มกลุ่ม" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "ฟอร์มกลุ่ม" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "คุณแน่ใจว่าต้องการลบกลุ่ม - {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 "คุณแน่ใจว่าต้องการลบสมาชิก - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "เพิ่มสมาชิก" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "ผู้ใช้งานที่มีอยู่ก่อนแล้ว" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "ถ้าคุณต้องการเพิ่มผู้ใช้ที่มีอยู่ กรุณาค้นหาชื่อด้านล่างนี้" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "หรือ" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "ผู้ใช้ใหม่" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "ถ้าคุณต้องการเชิญผู้ใช้ใหม่ กรอกที่อยู่อีเมลของพวกเขา" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "หน้าที่" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "คุณแน่ใจว่าต้องการลบสมาชิกนี้?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "ลบ" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "มีหน้าที่อะไร?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "ค้นหาชุดข้อมูล..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "ชุดข้อมูลในกลุ่ม:{group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "ชื่อ" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "กลุ่มของฉัน" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "ข้อมูลเบื้องต้นเกี่ยวกับกลุ่มของฉัน..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "คุณแน่ใจว่าต้องการลบกลุ่มนี้?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "บันทึกกลุ่ม" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "ดู {name}" + +#: 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 ในการสร้างและจัดการชุดข้อมูล " +"ไม่ว่าจะเป็นการสร้างแค็ตตาล็อกสำหรับชุดข้อมูลสำหรับโปรเจ็คต์ ทีม หรือธีม " +"หรือเป็นวิธีง่ายๆ ในการให้ผู้ค้าหาชุดข้อมูลของคุณได้" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "ลบแล้ว" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 เป็นแพลตฟอร์มด้านข้อมูลเปิดระดับโลก

CKAN " +"เป็นเครื่องมือสำเร็จรูปที่ทำให้ข้อมูลถูกเข้าถึงและใช้งานได้ " +"โดยมีเครื่องมือที่ใช้ในการทำให้การเผยแพร่ การแบ่งปัน การค้นหา " +"และการใช้งานข้อมูล (รวมไปถึงการจัดเก็บข้อมูลและการจัดเตรียม API " +"ข้อมูลที่ทนทาน) CKAN มีจุดมุ่งหมายที่จะทำให้ผู้เผยแพร่ข้อมูล " +"(ทั้งหน่วยงานราชการระดับประเทศและระดับภาค บริษัทห้างร้าน และองค์กร) " +"ต้องการที่จะทำให้ข้อมูลของพวกเขาเป็นข้อมูลเปิดและเข้าถึงได้

CKAN " +"ถูกใช้โดยราชการและกลุ่มบุคคลทั่วทั้งโลก " +"และเป็นตัวขับเคลื่อนพอร์ทัลข้อมูลทั้งที่จัดตั้งโดยชุมชนและที่เป็นของหน่วยงาน" +" เช่น data.gov.uk ของสหราชอาณาจักร publicdata.eu ของสหภาพยุโรป dados.gov.br ของบราซิล " +"รวมไปถึงพอร์ทัลราชการของประเทศเนเธอร์แลนด์ " +"และไซท์ของเมืองและเทศบาลเมืองในสหรัฐอเมริกา สหราชอาณาจักร อาร์เจนตินา " +"ฟินแลนด์ และที่อื่นๆ ทั่วโลก

CKAN: http://ckan.org/
ชมรอบๆ CKAN: http://ckan.org/tour/
" +"ภาพรวมฟีเจอร์การใช้งาน: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "ยินดีต้อนรับสู่ 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 "" +"พื้นที่สำหรับใส่ข้อความสั้นๆ แนะนำภาพรวมของ CKAN หรือของไซท์ " +"เรายังไม่มีข้อความแนะนำมาให้ในส่วนนี้ แต่จะมีให้ในอนาคต" + +#: 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 "{0} สถิติ" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "ชุดข้อมูล" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "ชุดข้อมูล" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "องค์กร" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "กลุ่ม" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "ต้องการฟิลด์นี้" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "ค่า" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "กำหนดเอง" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "แบบฟอร์มมีข้อมูลที่กรอกผิด:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "ฟิลด์ที่ต้องการ" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL ของรูปภาพ" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "ล้างการอัพโหลดนี้" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "พบแล้วสำหรับ \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "ไม่สามารถหาชุดข้อมูลจาก \"{query}\" นี้ได้" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "ทำให้เป็นสาธารณะ" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "ทำให้เป็นเป็นส่วนตัว" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "ร่าง" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "ส่วนตัว" + +#: ckan/templates/organization/bulk_process.html:98 +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 "กรุณายืนยันว่าคุณต้องการลบองค์กร - {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 "แก้ไของค์กร" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "ชื่อผู้ใช้" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "ปรับปรุงสมาชิก" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Admin:เพิ่ม/แก้ไข/ลบ ชุดข้อมูล " +"และจัดการสมาชิกขององค์กร

" +"

บรรณาธิการ:สามารถเพิ่มหรือแก้ไขชุดข้อมูลแต่ไม่สามารถจัดการสมาชิกองค์กรได้

" +"

สมาชิก: " +"สามารถดูชุดข้อมูลส่วนบุคคลขององค์กรคุณได้แต่ไม่สามารถเพิ่มชุดข้อมูลใหม่ได้

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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:20 +msgid "A little information about my organization..." +msgstr "ข้อมูลเบื้องต้นเกี่ยวกับองค์กรของฉัน" + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "บันทึกองค์กร" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "ดู {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 ชุดข้อมูลคือการรวบรวมของชุดข้อมูล (เช่นไฟล์) คำอธิบายและอื่นๆ บน URL" +" หนึ่ง ชุดข้อมูลคือสิ่งที่ผู้ใช้เห็นเวลาค้นหาข้อมูล" + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "ความเปลี่ยนแปลง" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "คุณแน่ใจว่าคุณต้องการลบชุดข้อมูล - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "คุณแน่ใจว่าคุณต้องการลบทรัพยากร - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "ดูชุดข้อมูล" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "แก้ไขข้อมูลเมตา" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "ดูตัวอย่าง" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "เพิ่ม" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "แก้ไขทรัพยากร" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API ปลายทาง" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "ไปสู่ทรัพยากร" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "ดาวน์โหลด" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "แหล่ง: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "ยังไม่มีการสร้างวิวสำหรับทรัพยากรนี้" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "ไม่มีวิวที่สร้างไว้แล้วซึ่งเหมาะสมกับทรัพยากรนี้" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "ข้อมูลเพิ่มเติม" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "ฟิลด์" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "ไม่ทราบ" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "สร้างแล้ว" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "รูปแบบ" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "สัญญาอนุญาต" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "ทรัพยากรนี้ยังไม่มีวิว" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "เพิ่มทรัพยากรใหม่" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

ชุดข้อมูลนี้ไม่มีข้อมูล ลองเพิ่มดูไหม?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "คู่มือ API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "ถ่ายโอนข้อมูลเต็ม {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 "" +"คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s) หรือดาวน์โหลด " +"%(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 "คุณสามารถเข้าถึงคลังทาง %(api_link)s (ให้ดู %(api_doc_link)s). " + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "สภาพ" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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 "ตัวอย่าง: my-dataset" + +#: 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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"สามารถดูข้อมูลเกี่ยวกับประเภทลิขสิทธิ์ต่างได้ที่ opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "องค์กร" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "ไม่มีองค์กร" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "ทัศนวิสัย" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "สาธารณะ" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "ต่อไป: เพิ่มข้อมูล" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "สมชาย ใจกว้าง" + +#: 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 "somchai@example.com" + +#: 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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "ตัวอย่าง ราคาทองคำ มกราคม 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "คำอธิบายที่เป็นประโยชน์ต่อข้อมูล" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "ตัวอย่าง CSV, XML หรือ JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "ตัวอย่าง 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "ขนาดไพล์" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "ตัวอย่าง 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "ประเภท MIME " + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "ตัวอย่าง application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "คุณแน่ใจที่จะลบทรัพยากรนี้" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "ก่อนหน้า" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "บันทึกและเพิ่มรายการ" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "สำรวจ" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "ข้อมูลเพิ่มเติม" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "ฝังตัว" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "ฝังวิวของทรัพยากร" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "โค้ด" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "ข้อมูลและทรัพยากร" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "เพิ่มชุดข้อมูล" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "สถานะของ Datapusher: {status}" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "แสดง {facet_type} เพิ่มเติม" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "แสดงเฉพาะ {facet_type} ที่เป็นที่นิยม" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "ไม่พบ {facet_type} ที่ตรงกับที่ค้นหา" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "หน้าหลัก" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "ภาษา" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "ไป" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "ไม่พบข้อมูลลิขสิทธิ์" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "ชุดข้อมูลนี้ตรงตามมาตรฐาน Open Definition" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "เรียงโดย" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "กรองผลลัพธ์" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

กรุณาลองค้นหาใหม่

" + +#: ckan/templates/snippets/search_form.html:87 +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] "พบ {number} ชุดข้อมูลสำหรับ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "ไม่พบชุดข้อมูลสำหรับ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "พบ {number} ชุดข้อมูล" + +#: 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] "พบ {number} กลุ่มสำหรับ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "ไม่พบกลุ่มสำหรับ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "พบ {number} กลุ่ม" + +#: 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] "พบ {number} องค์กรสำหรับ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "ไม่พบองค์กรสำหรับ \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "พบ {number} องค์กร" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "อีเมล" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} เพิ่ม tag {tag} ไปยังชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} ปรับปรุงกลุ่ม {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} ปรับปรุงข้อมูลองค์กร {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} ปรับปรุงชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} ปรับปรุงทรัพยากร {resource} ในชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} ปรับปรุงข้อมูลส่วนตัว" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} ลบกลุ่ม {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} ลบองค์กร {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} ลบชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} ลบทรัพยากร {resource} จากชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} ได้ติดตาม {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} ได้ติดตาม {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} ได้ติดตาม {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} สร้างกลุ่ม {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} สร้างองค์กร {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} สร้างชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} เพิ่มทรัพยากร {resource} ไปยังชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} เข้าสู่ระบบ" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} ลบ tag {tag} จากชุดข้อมูล {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "ค้นหาแท็ค" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 อื่นๆ ได้รู้จักคุณและผลงานคุณดีขึ้น" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "แก้ไขรายละเอียด" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "ชื่อเต็ม" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "ตัวอย่าง: สมชาย ใจกว้าง" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "ตัวอย่าง somchai@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "ข้อมูลเล็กน้อยเกี่ยวกับตัวคุณ" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "สมัครการแจ้งเตือนทางอีเมล" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "เปลี่ยนรหัสผ่าน" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "รหัสผ่าน" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "ยืนยันรหัสผ่าน" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "คุณแน่ใจหรือไม่ที่จะลบผู้ใช้นี้?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "คุณได้เข้าสู่ระบบด้วยชื่อ {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "ออกจากระบบ" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "จดจำฉัน" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "คุณได้เข้าสู่ระบบแล้ว" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "คุณจะต้องออกจากระบบก่อนที่จะสามารถเข้าสู่ระบบด้วยบัญชีอื่นได้" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "สร้างบัญชี" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "ตั้งค่ารหัสผ่านใหม่" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "ตั้งค่ารหัสผ่านใหม่" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "ปรับปรุงรหัสผ่าน" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "ใช้งานอย่างไร" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "เราจะปรับปรุงบัญชีของคุณเมื่อคุณป้อนรหัสผ่านใหม่" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "ผู้ใช้ไม่ได้สร้างชุดข้อมูลใด" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "คุณยังไม่ได้ให้ข้อมูลประวัติของคุณ" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "ผู้ใช้รายนี้ไม่มีข้อมูลประวัติส่วนตัว" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "คุณเท่านี้ที่สามารถเห็นสิ่งนี้ได้" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "เป็นสมาชิกตั้งแต่" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "ตั้งค่ารหัสผ่านใหม่" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "ค้นหาผู้ใช้" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "" diff --git a/ckan/i18n/tr/LC_MESSAGES/ckan.po b/ckan/i18n/tr/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..a74886ff234 --- /dev/null +++ b/ckan/i18n/tr/LC_MESSAGES/ckan.po @@ -0,0 +1,5037 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Turkish (https://www.transifex.com/okfn/teams/11162/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Kaynak bulunamadı" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Bu sayfayı görüntüleme izni yoktur" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Tamamlandı" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Bekliyor" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Gönderiliyor" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Hata" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Henüz karşıya yüklenmedi" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Hata:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Durum" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Son güncelleme" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Hiç bir zaman" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Detaylar" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Veri Deposu" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Oluştur" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Sorgulama" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Sorgu örnekleri (ilk 5 sonuç)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Sorgu örnekleri ('jones' içeren sonuçlar)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Sorgu örnekleri (SQL ile)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Örnek: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Örnek: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Kaydet" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Açıklama" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Veri Sözlüğü" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Tip" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Yükleniyor..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Tablo" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Sütunları Göster" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +msgstr "Sütunları Gizle/Göster" + +#: 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 "" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "İsme Göre Artan" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "İsme Göre Azalan" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Son Güncelleme" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "Popüler" + +#: 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 "Ülke kodu" + +#: ckanext/example_idatasetform/templates/package/snippets/resource_form.html:6 +msgid "custom resource text" +msgstr "" + +#: ckanext/example_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Bu tercüme edilmemiş bir metin." + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Bu grubun bir açıklaması bulunmamaktadır." + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Veri Seti" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN veri önizleme aracının pek çok güçlü özelliği vardır." + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Takipçiler" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Kaynaklar" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Resim" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "Resim bağlantısı" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"örn: http://example.com/image.jpg (boş bırakılırsa kaynak url'ini kullanır)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Grafik" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Harita" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +msgstr "Filtreler" + +#: 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 "örn: 0" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "Number of rows" +msgstr "Satır sayısı" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:4 +#: ckanext/reclineview/theme/templates/recline_map_form.html:4 +msgid "eg: 100" +msgstr "örn: 100" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:6 +msgid "Graph type" +msgstr "Grafik tipi" + +#: 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 "Alan tipi" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:7 +msgid "Latitude field" +msgstr "Enlem alanı" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:8 +msgid "Longitude field" +msgstr "Boylam alanı" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:9 +msgid "GeoJSON field" +msgstr "GeoJSON alanı" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Grup" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Veriseti sayısı" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Etiket ismi" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Veriseti sayısı" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "En Çok Veri Seti Oluşturan Kullanıcılar" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Kullanıcı" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "İstatistik menüsü" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "En çok güncellenen veri setleri" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Metin" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "Web sitesi" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "Web adresi" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Tarayıcınız iframe kullanımını desteklemiyor." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Yetkilendirme işlevi bulunamadı: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Yönetici" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "İçerik Düzenleyici" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Üye" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Yönetmek için sistem yöneticisi olmanıza gerek vardır" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Site başlığı" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Stil" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Site logosu" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Hakkında" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Hakkında metni" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Karşılama metni" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Ana sayfadaki metin" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Anasayfa" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Temizleme tamamlandı" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Erişim engellendi" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Bulunamadı" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON Hatası: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Grup bulunamadı" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Organizasyon bulunamadı" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Doğru olmayan grup tipi" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Organizasyonlar" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Gruplar" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Etiketler" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Formatlar" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Lisanslar" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "%r kullanıcısı, %s'ı düzenlemek için yetkilendirilmemiştir." + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Toplu güncelleme için yetki bulunmamakta" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Grup yaratmak için yetki bulunmamakta" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "%s grubunu silmek için yetki bulunmamaktadır." + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Organizasyon silinmiştir." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Grup silinmiştir." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s silinmiştir." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "%r kullanıcısı %s üyelerini güncellemek için yetkili değildir." + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "%s grubuna üye eklemek için yetkiniz yoktur" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "%s grubunun üyelerini silmek için yetkiniz yoktur" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Grup üyesi silinmiştir." + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN Grup Revizyon Tarihçesi" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Günlük mesajı:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Artık {0}'i takip ediyorsunuz" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Artık {0}'i takip etmiyorsunuz." + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Bu site şu anda hizmet dışı. Veritabanı başlatılmamış." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Lütfen profilinizi güncelleyin ve e-posta adresinizi " +"ekleyin." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "Şifrenizi unutursanız, %s e-posta bilgilerinizi kullanacaktır." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Veri kümesi bulunamadı" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Veri seti {id} bulunamadı." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Arama indeksi güncellenemedi." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Veri kümesi silindi" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Kaynak silindi." + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Kullanıcı bulunamadı" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Profil güncellendi" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Doğrulama kodu hatalı. Lütfen tekrar deneyin." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Girilen şifre hatalıdır" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Eski Şifre" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "Hatalı şifre" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Giriş hatası. Kullanıcı adı ya da şifre hatalı." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Şifreniz yenilendi." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Şifreniz en az 4 karakter veya daha uzun olmalı." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Girmiş olduğunuz şifreler uyuşmamaktadır." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Bir şifre belirlemelisiniz." + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} bulunamadı" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Herşey" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Az önce" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Yeni veriseti oluşturuldu." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "" +msgstr[1] "" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "organizasyon" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "grup" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Eksik değer" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Veri seti" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Bir doğal sayı olmalı" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Tarih formatı hatalı" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Bu URL zaten kullanımda." + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Eksik Değer" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Organizasyon bulunamadı" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "%s kullanıcısı paket yaratmak için yetkili değil" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "%s kullanıcısı bu grupları düzenlemek için yetkili değil." + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "%s kullanıcısı bu organizasyona veri seti eklemek için yetkili değil" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "%s kullanıcısı bu paketleri düzenlemek için yetkili değil" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "%s kullanıcısı grup yaratmak için yetkili değil" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Grup bulunamadı" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "%s kullanıcısı üye eklemek için yetkili değil" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "%s kullanıcısı %s grubunu düzenlemek için yetkili değil" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Kullanıcıyı güncellemek için giriş yapmalısınız" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons - Alıntı (CC BY)" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Alıntı-Lisans Devam (CC BY-SA)" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Alıntı-Gayriticari (CC BY-NC)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Eşleşme bulunamadı" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" +msgstr[1] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Onayla" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Kaydediliyor..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Hata oluştu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Filtre ekle" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Düzenle" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Gizle" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Hata %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Çıkış yap" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Giriş yap" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Veri Seti" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Veri Seti Ara" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Ara" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "" + +#: ckan/templates/admin/config.html:52 +#, 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Daha fazla detay..." + +#: 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/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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "İşlem Akışı" + +#: 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:5 +msgid "Add a Group" +msgstr "" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "{name} grubunu silmek istediğinize emin misiniz?" + +#: 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:15 +#: 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 "Grubu Düzenle" + +#: 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 "Üyeler" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Grup Ekle" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Grupları ara..." + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Bu site için şu an tanımlı grup bulunmamaktadır" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Yaratmak ister misiniz?" + +#: 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 "Üyeyi Düzenle" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Üye Ekle" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Mevcut Kullanıcı" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "veya" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Yeni Kullanıcı" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Bu üyeyi silmek istediğinize emin misiniz?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Sil" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "" + +#: ckan/templates/group/member_new.html:93 +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 "Grup Yarat" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Grubu Güncelle" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Grup Yarat" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "{group} grubundaki veri setleri:" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "İsim" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Grubu Kaydet" + +#: 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 "Gruplar nedir?" + +#: 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 "" +"Veri setlerinin koleksiyonlarını oluşturmak ve yönetmek için CKAN Açık Veri " +"Gruplarını kullanabilirsiniz. Bu, belirli bir proje veya ekip için veya " +"belirli bir tema için veri setlerini kataloglamak veya insanların kendi " +"yayınlanmış veri setlerini bulmasına ve aramasına yardımcı olmanın çok basit" +" bir yolu olabilir." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Silindi" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Hoşgeldiniz" + +#: 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'a hoşgeldiniz" + +#: 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 "Veri ara" + +#: 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:11 +msgid "dataset" +msgstr "veri seti" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "veri setleri" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "organizasyonlar" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "gruplar" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Bu alan zorunludur" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Burada Markdown formatlama kullanabilirsiniz" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Zorunlu alan" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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: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:47 +msgid "Make public" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Organizasyonu Düzenle" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Organizasyon Ekle" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Organizasyonları ara..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" +msgstr[1] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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 "Organizasyonlar nedir?" + +#: 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 Açık Veri organizasyonları, verileri oluşturmak yönetmek ve yayınlamak " +"için kullanılırlar. Kullanıcılar, organizasyon içinde oluşturma yönetme ve " +"yayınlama yetkilerine göre farklı rollere sahip olabilirler." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "" + +#: ckan/templates/package/confirm_delete.html:12 +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:13 +msgid "View dataset" +msgstr "" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +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:85 +msgid "Show More {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "" + +#: ckan/templates/snippets/search_form.html:87 +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor}, {dataset} verisetine {tag} etiketini ekledi. " + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor}, {group} grubunu güncelledi." + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}, {organization} organizasyonunu güncelledi." + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}, {dataset} verisetini güncelledi." + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} profilini güncelledi." + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} , {group} grubunu sildi" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor}, {dataset} verisetini sildi." + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} , {group} grubunu oluşturdu." + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} , {organization} organizasyonunu oluşturdu." + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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:10 +msgid "Full name" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Bir hesap oluşturun" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Şifrenizi mi unuttunuz?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Sorun yok, şifrenizi sıfırlamak için şifre kurtarma formumuzu " +"kullanabilirsiniz." + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Şifrenizi mi unuttunuz?" + +#: 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 "{user} olarak giriş yapmış bulunuyorsunuz." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Oturumu kapat" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Beni hatırla" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Zaten giriş yapmış bulunuyorsunuz" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Oturumumu şimdi kapat" + +#: 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 "Neden kayıt olmalıyım?" + +#: 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 "Kullanıcı adı" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Ad & Soyad" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Hesap oluşturun" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Şifrenizi sıfırlayın" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Şifreyi sıfırla" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Şifreyi güncelle" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Nasıl çalışır?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Bu kullanıcının bir özgeçmişi bulunmamaktadır." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Arama listesi..." + +#: 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 "Kullanıcı arama" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Başka bir siteye yönlendirmeye izin verilmemektedir." diff --git a/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..992e93f59c3 --- /dev/null +++ b/ckan/i18n/uk_UA/LC_MESSAGES/ckan.po @@ -0,0 +1,5178 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Ukrainian (Ukraine) (https://www.transifex.com/okfn/teams/11162/uk_UA/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: uk_UA\n" +"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Ресурс не знайдено" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Недостатньо прав для перегляду цієї сторінки" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Завершено" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Обробка" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Відправка" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Помилка" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Ще не завантажено" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Завантажити до DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Помилка завантаження" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Помилка:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "Відстеження помилки:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Статус" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Останнє оновлення" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Ніколи" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Журнал вкладень" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Подробиці" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Кінець повідомлення журналу" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Ресурс DataStore не знайдено" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Ресурс \"{0}\" не знайдено." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Користувач {0} не має достатньо прав для оновлення ресурсу {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN Data API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "Доступ до даних ресурсу через веб API із потужною підтримкою запитів" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Точки входу" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Доступ до API даних можна отримати через такі дії за допомогою API дій CKAN." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Створити" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Оновити / Вставити" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Запит" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Запит (через SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Запит" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Приклад запиту (перші 5 результатів)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Приклад запиту (результати, що містять 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Приклад запиту (за допомогою SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Приклад: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Простий ajax (JSONP) запрос до API даних з використанням jQuery." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Приклад: Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Зберегти" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "Поле {num}" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Опис" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "Словник даних" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "Колонка" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "Тип" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Завантаження..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "API даних" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "Таблиця" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "Показати колонки" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "Тестові налаштування" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Last Modified" + +#: 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 "Користувацьке поле (по спаданню)" + +#: ckan/templates/group/read.html:17 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 "Популярне" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "Це неперекладена строка" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Ця група не має опису" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} набір даних" +msgstr[1] "{num} набори даних" +msgstr[2] "{num} наборів даних" +msgstr[3] "{num} наборів даних" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 наборів даних" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" +"Інструмент CKAN для попереднього перегляду є потужним і багатофункціональним" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Підписники" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Ресурси" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Зображення" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "URL-адреса зображення" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "" +"наприклад, http://example.com/image.jpg (якщо пусто, використовується адреса" +" ресурсу)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "Провідник даних" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "Графік" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "Карта" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "помилка при завантаженні представлення" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "Не вдалось завантажити представлення" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore повернув помилку" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy повернув помилку" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "Сітка" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "наприклад, 0" + +#: 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 "наприклад: 100" + +#: 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 "Група (Вісь 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "Серії (Вісь 2)" + +#: 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 "Поле GeoJSON" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Найрейтинговіші набори даних" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Середня оцінка" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Кількість оцінок" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Немає оцінок" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Найбільші групи" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Група" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Кількість наборів даних" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Немає груп" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Найпопулярніші теги" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Назва тегу" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Кількість наборів даних" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "Користувачі, що створили найбільшу кількість наборів даних" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Користувач" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Меню статистики" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Найчастіше редаговані набори даних" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "Текст" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" +"наприклад, http://example.com (якщо пусто, використовується адреса ресурсу)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Ваш браузер не підтримує фрейми." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Функція авторизації не знайдена: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Адмін" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Редактор" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Учасник" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Для виконання цієї дії необхідні права системного адміністратора" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Заголовок сайту" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Стиль" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Лінія тегів сайту" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Логотип тега сайту" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Детальніше" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Текст сторінки про проект" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Вступний текст" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Текст на домашній сторінці" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Довільний CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "Код сss, інтегрований в головну сторінку" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Головна сторінка" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Неможливо очистити пакет %s, оскільки версія %s містить невидалені пакети %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "При видаленні версії %s виникла помилка: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Очищення завершено" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Дія не вступила в силу." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "У доступі відмовлено" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Не знайдено" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Неправильний запит" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Назва дії невідома: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Помилка JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Неправильні дані запиту: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Групу не знайдено" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Організація не знайдена" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Невірний тип групи" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Організації " + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Групи" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Теги" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Формати" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Ліцензії" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Користувач %r не має достатньо прав для редагування %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Немає прав на масове оновлення" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Недостатньо прав для створення групи" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Помилка цілісності" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "" +"Користувач %r не має достатньо прав для редагування прав користувача %s" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Недостатньо прав для видалення групи %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Організація була видалена" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Група була видалена" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s було видалено." + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "Користувач %r не має достатньо прав для редагування учасників %s" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Недостатньо прав для додавання учасника у групу %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Недостатньо прав для видалення учасників групи %s" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Учасник групи був видалений" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Виберіть дві версії перед порівнянням" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Історія попередніх версій групи" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Останні зміни у групі CKAN:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Log message: " + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Тепер ви підписані на {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Ви більше не підписані на {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Недостатньо прав для перегляду підписників %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Сайт зараз перебуває у режимі офлайн. База даних не ініціалізована." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "" +"Будь ласка, оновіть Ваш профайл і вкажіть свою електронну" +" пошту." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "" +"%s використовує Вашу електронну пошту, якщо Вам необхідно скинути свій " +"пароль." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "Неправильний пошуковий запит: {error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Параметр \"{parameter_name}\" не є цілим числом" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Набір даних не знайдено" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Неправильний формат перевірки: %r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" +"Перегляд наборів даних типу \"{package_type}\" не підтримується ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Недостатньо прав для читання пакету %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Історія попередніх версій набору даних" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Останні зміни у наборі даних CKAN:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Недостатньо прав для створення пакету" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Недостатньо прав для редагування цього ресурсу" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Недостатньо прав для оновлення набору даних" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Набір даних {id} не знайдено" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Ви має додати хоча би один ресурс" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Недостатньо прав для створення ресурсу" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Недостатньо прав для створення ресурсу у цьому пакеті" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Неможливо додати пакет до пошукового індексу." + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Неможливо оновити пошуковий індекс." + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Набір даних було видалено" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Недостатньо прав для видалення пакету %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Ресурс був видалений" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Недостатньо прав для видалення ресурсу %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Вид ресурсу не знайдено" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Дані ресурсу не знайдено" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Не доступно для завантаження" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Недостатньо прав для читання набору даних %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Недостатньо прав для читання ресурсу %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Недостатньо прав для редагування ресурсу" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "View не знайдено" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Тип представлення не знайдено" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Погані дані про представлення ресурсу" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Представлення ресурсу не надано" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Попередній перегляд недоступний." + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Користувача не знайдено" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Недостатньо прав для реєстрації користувачем" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Недостатньо прав для створення користувача" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "" +"Недостатньо прав для видалення користувача з ідентифікатором \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Не вказано користувача" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Недостатньо прав для редагування користувача %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Профіль оновлено" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Недостатньо прав для створення користувача %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Ви неправильно ввели КАПЧУ. Попробуйте ще раз." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "" +"Користувач \"%s\" тепер зареєстрований, але ви все ще перебуваєте в сесії як" +" користувач \"%s\"" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Недостатньо прав для редагування користувача." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "Введений пароль невірний" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "Старий пароль" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "невірний пароль" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Не вдалось увійти. Неправильний логін або пароль." + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Недостатньо прав для запиту скидання паролю." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Недостатньо прав для скидання паролю." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Неправильний код відновлення. Попробуйте знову." + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Ваш пароль був відновлений." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Пароль повинен мати не менше 4 символів." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Введені паролі не збігаються." + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Ви повинні ввести пароль" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Підписка не була знайдена" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} не знайдено" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Все" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Переглянути" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{n} нова активність від {site_title}" +msgstr[1] "{n} нові активності від {site_title}" +msgstr[2] "{n} нових активностей від {site_title}" +msgstr[3] "{n} нових активностей від {site_title}" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Щойно" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Невідомий" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Ресурс без назви" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Створити новий набір даних." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Відредаговані ресурси." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Відредаговані налаштування." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} перегляд" +msgstr[1] "{number} перегляди" +msgstr[2] "{number} переглядів" +msgstr[3] "{number} переглядів" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} недавній перегляд" +msgstr[1] "{number} недавніх переглядів" +msgstr[2] "{number} недавніх переглядів" +msgstr[3] "{number} недавніх переглядів" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Email адреса отримувача не доступна!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "організація" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "група" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Значення відсутнє" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Введене поле %(name)s не очікувалося." + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Будь ласка, введіть ціле число" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "Значення має бути строкою" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Пакет ресурсу(ів) не дійсний" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Додатки" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Тег словника \"%s\" не існує" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Набір даних" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Не вдалося проаналізувати як дійсний JSON" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "Вкажіть організацію" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Організації не існує" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Ви не можете додати набір даних до цієї організації" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Неправильне число" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Має бути натуральним числом" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Має бути додатнім числом" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Формат дати вказаний неправильно" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Посилання в log_message заборонені." + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Набір даних з таким id вже існує" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Ресурс" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Дане ім'я групи або ID не існує" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Тип процесу" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Назви повинні бути рядками" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Це ім'я не може бути використане" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "Має мати не менше %s символів" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Ім'я має мати не більше %i символів" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" +"може містити лише символи нижнього регістру (ascii), а також символи - " +"(дефіс) та _ (підкреслення)" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Дане URL уже зайняте" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Назва \"%s\" є коротшою за встановлений мінімум у %s символи" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Назва \"%s\" є довшою за встановлений максимум у %s символи" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Версія повинна містити максимум %i символів" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Створити дублікат ключа \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Група з такою назвою уже існує" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Тег \"%s\" коротший за мінімальне значення %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Тег \"%s\" довший за максимальне значення %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "" +"Тег \"%s\" може містити лише числа, літери, а також символи - (дефіс) та _ " +"(підкреслення)." + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Тег \"%s\" не може містити літер у верхньому регістрі" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Імена користувачів мають бути рядками" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Цей логін уже використовується." + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Будь ласка, введіть обидва паролі" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Паролі мають бути рядками" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Введені паролі не збігаються" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Редагування не дозволено, оскільки текст схожий на спам. Будь ласка, " +"уникайте посилань у описі." + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Ім'я має мати не менше %s символів" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Ця назва словника уже використовується." + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Неможливо змінити значення ключа з %s на %s. Цей ключ доступний лише для " +"читання" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Тег словника не знайдено" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Тег %s не належить словнику %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Немає назви тегу" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Тег %s уже існує в словнику %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Вкажіть дійсний URL" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "роль не існує" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Набори даних, що не належать організації, не можуть бути приватними." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Не список" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Не рядок" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "Цей батьківський елемент може створити петлю в ієрархії" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" +"параметри \"filter_fields\" та \"filter_values\" повинні бути однакової " +"довжини" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "параметр \"filter_fields\" необхідний, якщо \"filter_values\" заповнений" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "параметр \"filter_values\" необхідний, якщо \"filter_fields\" заповнений" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "Вже існує поле схеми з таким же ім’ям" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "Електрона пошта {email} має некоректний формат" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Значення відсутнє" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Ви пробували створити організацію як групу" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Введіть ідентифікатор пакету або його ім'я (параметр \"пакет\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Задайте рейтинг (параметр \"рейтинг\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Значення рейтингу має бути цілим числом." + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Значення рейтингу має бути між %i та %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" +"Помилка під час надсилання листа-запрошення, користувача не було створено: " +"{0}" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Увійдіть, щоб мати можливість стежити за користувачами" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Ви не можете стежити за собою" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Ви уже стежите за {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Увійдіть, щоб мати можливість стежити за набором даних" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Користувача {username} не існує." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Увійдіть, щоб мати можливість стежити за групою" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "id немає в даних" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Не вдалося знайти словник \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Не вдалося знайти тег \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Увійдіть, щоб мати можливість відписатись від чогось." + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Ви не стежите за {0}." + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Ресурс не знайдено." + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Не вказуйте, якщо вже використовуєте параметр запиту" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Мають бути пара (пари) :" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Поле \"{field}\" не кваліфікується в resource_search." + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Пакет не знайдено." + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "TaskStatus не знайдено." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Організацію не знайдено." + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Користувач %s не має достатньо прав для створення пакетів" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Користувач %s не має достатньо прав для редагування цих груп" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "" +"Користувач %s не має достатньо прав для додавання набору даних до цієї " +"організації" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "Не надано id ресурсу, неможливо підтвердити достовірність." + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "" +"Не знайдено пакетів для цього ресурсу. Неможливо підтвердити достовірність." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" +"Користувач %s не має достатньо прав для створення ресурсів у наборі даних %s" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Користувач %s не має достатньо прав для редагування цих пакетів" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Користувач %s не має достатньо прав для створення груп" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Користувач %s не має достатньо прав для створення організацій" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "" +"Користувач {user} не має достатньо прав для створення користувачів через API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Не має достатньо прав для створення користувачів" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Групу не знайдено" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Користувач %s не має достатньо прав для додавання учасників" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Користувач %s не має достатньо прав для редагування групи %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Користувач %s не має достатньо прав для видалення ресурсу %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" +"Представлення ресурсу не знайдено, неможливо підтвердити достовірність." + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Користувач %s не має достатньо прав для видалення зв'язку %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Користувач %s не має достатньо прав для видалення груп" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Користувач %s не має достатньо прав для видалення групи %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Користувач %s не має достатньо прав для видалення організацій" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Користувач %s не має достатньо прав для видалення організації %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Користувач %s не має достатньо прав для видалення task_status" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Не авторизований" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Користувач %s не має достатньо прав для читання цих пакетів" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Користувач %s не має достатньо прав для читання пакету %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Користувач %s не має достатньо прав для читання ресурсу %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "Користувач %s не має достатньо прав для читання групи %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Увійдіть, щоб отримати доступ до панелі управління." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Користувач %s не має достатньо прав для редагування пакету %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Користувач %s не має достатньо прав для редагування ресурсу %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "Користувач %s не має достатньо прав для зміни статусу пакета %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Користувач %s не має достатньо прав для редагування організації %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Користувач %s не має достатньо прав для зміни статусу групи %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Користувач %s не має достатньо прав для редагування дозволів групи %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Ви повинні бути авторизовані для редагування користувача" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Користувач %s не має достатньо прав для редагування користувача %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "Користувач {0} не має достатньо прав для оновлення користувача {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Користувач %s не має достатньо прав для зміни статусу версії" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "" +"Користувач %s не має достатньо прав для оновлення таблиці task_status " + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "" +"Користувач %s не має достатньо прав для оновлення таблиці term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Ліцензію не вказано" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Інші (Open)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Інші (Public Domain)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Інші (Attribution)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Інші (Non-Commercial)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Інші (Not Open)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "залежить від %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "залежно від %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "походить від %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "є похідним від %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "посилається на %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "зв'язаний посиланням від %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "є дочірнім від %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "є батьківським для %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "має сестринське відношення з %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Для цього ресурсу немає доступних для завантаження даних API" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Не вдалося завантажити інформацію про дані API" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Друкуйте..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Збігів не знайдено" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "Ввід надто короткий, має бути хоча би один символ" +msgstr[1] "Ввід надто короткий, має бути хоча би %(num)d символа" +msgstr[2] "Ввід надто короткий, має бути хоча би %(num)d символ" +msgstr[3] "Ввід надто короткий, має бути хоча би %(num)d символ" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Ця форма містить незбережені зміни" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Підтвердіть операцію" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Ви впевнені, що хочете виконати цю операцію?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Підтвердити" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Скасувати" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Не стежити" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Стежити" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Посилання" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "Додати посилання на адресу в інтернеті (або посилання на API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Вивантажити" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Видалити" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Вкласти файл з комп’ютера" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "URL" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Файл" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Зберегти порядок" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Збереження..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Вкласти файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Виникла помилка" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Не вдалось вивантажити файл" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Не вдалося завантажити" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Ресурс вивантажено" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Не вдалось отримати дані з вивантаженого файла" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "Додати фільтр" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "Оберіть поле" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Редагувати" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Показати більше" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Сховати" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Помилка %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Про {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "Асоціація CKAN" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Створено за допомогою CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Налаштування системного адміністратора" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Переглянути профіль" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Панель приладів (%(num)d новий елемент)" +msgstr[1] "Панель приладів (%(num)d нові елементи)" +msgstr[2] "Панель приладів (%(num)d нових елементів)" +msgstr[3] "Панель приладів (%(num)d нових елементів)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Панель приладів" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Вийти" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Увійти" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Зареєструватись" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Набори даних" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Пошук по наборах даних" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Пошук" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Перейти до вмісту" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "Кошик" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "Логотип сайту" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Ви впевнені, що хочете скинути налаштування?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Скинути" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Оновити налаштування" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "Опції налаштувань CKAN" + +#: ckan/templates/admin/config.html:52 +#, 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.

Стиль: Виберіть зі списку простих варіацій головної кольорової схеми, щоб швидко отримати працюючу тему.

Логотип сайту: Це логотип, що відображається у заголовку усіх шаблонів примірника CKAN.

Про нас: Цей текст буде відображатись на сторінці з інформацією про сайт цього примірника CKAN.

Вступний текст: \n" +"Цей текст буде відображатись на головній сторінці цього примірника CKAN як привітання для відвідувачів.

Користувацький CSS: Це блок CSS, що з’явиться у <head> тегу кожної сторінки. Якщо ви хочете змінити шаблон більше, ми рекомендуємо читати документацію.

Головна сторінка: Тут можна вибрати наперед визначене розташування модулів, що будуть відображатись на головній сторінці.

" + +#: 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" + +#: 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. \n" +"Працюйте обережно!

Для детальніших пояснень роботи з функціональністю CKAN, дивіться документацію для сисадмінів.

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Підтвердіть видалення" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Клікніть тут, щоб отримати детальнішу інформацію. " + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "Немає обробника для цього типу даних: %(type)s." + +#: 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/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 "Textarea" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Select" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "Додати групу" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Форма групи" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Ви впевнені, що хочете видалити групу - {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 "Ви впевнені, що хочете видалити учасника - {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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Додати учасника" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Існуючий користувач" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Якщо ви хочете додати існуючого користувача, знайдіть його ім’я внизу." + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "або" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Новий користувач" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Якщо ви хочете запровити нового користувача, введіть їхню адресу електронної" +" пошти тут." + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Роль" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Ви впевнені, що хочете видалити цього учасника?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Видалити" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Що таке роль?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Пошук по наборах даних..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Набори даних у групі: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Назва" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Моя група" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Коротко про мою групу..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Ви впевнені, що хочете видалити цю групу?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Зберегти групу" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Переглянути {name}" + +#: 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 для створення та управління наборами " +"даних. Використовуйте їх для каталогізування наборів даних для конкретного " +"проекту чи команди, на певну тему або як найпростіший спосіб допомогти людям" +" шукати та знаходити ваші власні опубліковані набори даних." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Видалено" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 є провідною платформою інформаційних порталів з відкритим кодом.

" +"

CKAN це повністю завершене програмне рішення, що дозволяє доступ та " +"використання даних за допомогою інструментів для швидкої публікації, " +"поширення, пошуку та будь-якої іншої роботи з даними (включно зі зберіганням" +" даних та забезпечення потужних API). CKAN корисний тим, хто займається " +"публікацєю даних (національні та регіональні уряди, компанії та організації)" +" та хоче зробити ці дані відкритими та доступними.

CKAN " +"використовується урядами та користувацькими групами по всьому світу та є " +"основою різноманітних офіційних та громадських порталів, включаючи портали " +"для місцевих, національних та міжнародних урядів, таких як британський data.gov.uk та publicdata.eu ЄС, бразильський dados.gov.br, голандський та " +"нідерландський урядові портали, а також міські та муніципальні сайти в США, " +"Великобританії, Аргентині, Фінляндії та ін.

CKAN: http://ckan.org/
CKAN тур: http://ckan.org/tour/
Огляд " +"можливостей: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Вітаємо у 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 "Це вступний абзац про CKAN або сайт загалом." + +#: 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 "{0} статистика" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "набір даних" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "набори даних" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "організації" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "групи" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Це поле обов’язкове" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"Тут ви можете використовувати Markdown форматування " + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Значення" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Звичайний" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Форма містить неправильні значення:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Обов’язкове поле" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "URL зображення" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Очистити вкладення" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "знайдено для \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Вибачте, не знайдено жодного набору даних за запитом \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Зробити публічним" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Зробити приватним" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Чернетка" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Приватний" + +#: ckan/templates/organization/bulk_process.html:98 +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 "Ви впевнені, що хочете видалити організацію - {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 "Редагувати організацію" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Ім'я користувача" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email адреса" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Оновити члена" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} член" +msgstr[1] "{count} члена" +msgstr[2] "{count} членів" +msgstr[3] "{count} членів" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "Набори даних в організації: {group}" + +#: 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 використовуються для створення, управління і публікації " +"колекцій наборів даних. Користувачі можуть мати різні ролі в рамках " +"організації, залежно від рівня їх прав на створення, зміну та публікацію." + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Зберегти організацію" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Переглянути {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 це колекція інформаційних ресурсів (таких як файли), разом " +"з описом та іншою інформацією, що доступні за фіксованою URL-адресою. Набори" +" даних - це те, що користувачі бачать при пошуку даних." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Зміни" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Ви впевнені, що хочете видалити набір даних - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Ви впевнені, що хочете видалити ресурс - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Переглянути набір даних" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Редагувати метадані" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "Попередній перегляд" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"Представлення провідника даних можуть бути повільними і ненадійними, якщо " +"розширення DataStore не включене. Для отримання більш детальної інформації, " +"будь ласка, читайте документацію провідника " +"даних." + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "Додати" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "Редагувати ресурс" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Представлення" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API Endpoint" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Перейти до ресурсу" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Завантажити" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "URL:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Джерело: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Для цього ресурсу поки що немає жодного представлення." + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Бачите не ті представлення, які очікували?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "Ось можливі причини, чому ви не бачите очікуваних представлень:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "Немає представлення, яке б підходило цьому ресурсу" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "Адміністратори сайту можливо не увімкнули плагіни представлення" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"Якщо представлення вимагає DataStore, можливо плагін DataStore не включений," +" або дані не переміщені в DataStore, або DataStore ще не встиг завершити " +"обробку даних." + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "Додаткова інформація" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Поле" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "Останнє оновлення даних" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "невідомо" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "Останнє оновлення метаданих" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Створено" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Формат" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Ліцензія" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "Нове представлення" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "Цей ресурс немає представлень" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Додати новий ресурс" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Цей набір даних пустий, чому б не " +"додати даних?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Документація API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "повний {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 "" +" Ви також можете отримати доступ до цього реєстру через %(api_link)s (see " +"%(api_doc_link)s) або завантажити %(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 "" +" Ви можете отримати доступ до цього реєстру через %(api_link)s (see " +"%(api_doc_link)s). " + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Стан" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "Останнє оновлення" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "Перед тим як створити набір даних ви повинні створити організацію." + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "Створити нову організацію" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "Нема організацій до яких ви можете долучити цей набір даних." + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" +"Зверніться до системного адміністратора з проханням створити організацію " +"перед тим як продовжити." + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Визначення ліцензії та додаткова інформація може бути знайдена на opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Організація" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Немає організації" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Видимість" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Загальнодоступний" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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 "" +"Ліцензія даних, яку ви вибрали вище стосується лише змісту будь-яких " +"файлів ресурсів, які ви додаєте до цього набору даних. Відправляючи цю " +"форму, ви погоджуєтеся випускати значення метаданих, які ви вводите у" +" форму під ліцензією відкритої бази даних (Open Database " +"License)." + +#: 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:43 +msgid "Next: Add Data" +msgstr "Далі: Додати дані" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "E-mail автора" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email відповідальної особи" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Оновити ресурс" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "Дані" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "наприклад January 2011 Gold Prices" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Корисні нотатки про дані" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "наприклад CSV, XML або JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "Це буде додано автоматично, можете залишити пустим" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "наприклад 2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Розмір файлу" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "наприклад 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME тип" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "наприклад application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Ви впевнені, що хочете видалити цей ресурс?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Попередній" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Зберегти і додати ще один" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "Дослідити" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Детальніша інформація" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Вставити" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "Це представлення ресурсу недоступне на даний момент." + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "Приєднати представлення ресурсу" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "" +"Ви можете скопіювати і вставити embed код в CMS або програмне забезпечення " +"для блогу, що підтримує чистий HTML" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "Ширина" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "Висота" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Код" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "Попередній перегляд ресурсу" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Дані та ресурси" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Додати набір даних" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Статус Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Трекбек URL (зворотні посилання)" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Показати більше {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Показати лише популярні {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Немає {facet_type}, які б підходили пошуковому запиту" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Головна" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Мова" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Перейти" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Не вказано ліцензію" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Цей набір даних відповідає вимогам Open Definition." + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Впорядкувати по " + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Фільтрувати результати" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Попробуйте пошукати ще.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} набір даних знайдений за запитом \"{query}\"" +msgstr[1] "{number} набори даних знайдено за запитом \"{query}\"" +msgstr[2] "{number} наборів даних знайдено за запитом \"{query}\"" +msgstr[3] "{number} наборів даних знайдено за запитом \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Не було знайдено жодного набору даних для \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} набір даних знайдено" +msgstr[1] "{number} набори даних знайдено" +msgstr[2] "{number} наборів даних знайдено" +msgstr[3] "{number} наборів даних знайдено" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Не було знайдено жодного набору даних " + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} групу знайдено за запитом \"{query}\"" +msgstr[1] "{number} групи знайдено за запитом \"{query}\"" +msgstr[2] "{number} груп знайдено за запитом \"{query}\"" +msgstr[3] "{number} груп знайдено за запитом \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Не було знайдено жодної групи для \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} групу знайдено" +msgstr[1] "{number} групи знайдено" +msgstr[2] "{number} груп знайдено" +msgstr[3] "{number} груп знайдено" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Не було знайдено жодної групи" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} організацію знайдено за запитом \"{query}\"" +msgstr[1] "{number} організації знайдено за запитом \"{query}\"" +msgstr[2] "{number} організацій знайдено за запитом \"{query}\"" +msgstr[3] "{number} організацій знайдено за запитом \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Не було знайдено жодної організації для \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} організацію знайдено" +msgstr[1] "{number} організації знайдено" +msgstr[2] "{number} організацій знайдено" +msgstr[3] "{number} організацій знайдено" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Email" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} додав тег {tag} до набору даних {dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} оновив групу {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} оновив організацію {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} оновив набір даних {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} оновив ресурс {resource} у наборі даних {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} оновив свій профіль" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} видалив групу {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} видалив організацію {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} видалив набір даних {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} видалив ресурс {resource} з набору даних {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} стежить за {dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} стежить за {group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} стежить за {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} створив групу {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} створив організацію {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} створив набір даних {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} додав ресурс {resource} до набору даних {dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} зареєструвався" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} видалив тег {tag} з набору даних {dataset}" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Пошук тегів" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 дізнатись про те, хто ви і чим " +"займаєтесь." + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Деталі змін" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Повне ім'я" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "наприклад Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "наприклад joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Коротко про себе" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Отримувати сповіщення на електронну пошту" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Змінити пароль" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "Пароль системного адміністратора" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Пароль" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Підтвердіть пароль" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Ви впевнені, що хочете видалити цього користувача?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "Ви впевнені, що хочете згенерувати новий ключ API?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "Перегенерувати ключ API" + +#: ckan/templates/user/edit_user_form.html:59 +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 "Ви увійшли в систему як {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Вийти" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Запам'ятати мене" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Ви уже увійшли в систему" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Вам потрібно вийти з системи, щоб увійти через інший акаунт." + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "Створити акаунт" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Скинути пароль" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Оновлення пароля" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Оновити пароль" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Як це працює?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Просто введіть новий пароль і ми оновимо Ваш акаунт" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Користувач ще не створював жодного набору даних." + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Ви не вказали свою біографію." + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Цей користувач не вказував свою біографію." + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Це означає, що тільки ви можете це бачити" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Учасник починаючи з " + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Ключ API" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Відновити Ваш пароль." + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "Шукати користувача" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Перенаправлення на зовнішні сайти не дозволено." diff --git a/ckan/i18n/vi/LC_MESSAGES/ckan.po b/ckan/i18n/vi/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..b6ce63c382e --- /dev/null +++ b/ckan/i18n/vi/LC_MESSAGES/ckan.po @@ -0,0 +1,5088 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Vietnamese (https://www.transifex.com/okfn/teams/11162/vi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "Nguồn không tìm thấy" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "Không được phép truy cập trang này" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "Hoàn thành" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "Đang chờ" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "Đang đăng ký" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "Lỗi" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "Chưa tải lên được" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "Tải lên kho dữ liệu" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "Lỗi tải:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "Lỗi:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "Tình trạng" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "Cập nhật lần cuối" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "Không bao giờ" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "Nhật ký đăng tải" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "Chi tiết" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "Kết thúc nhật ký" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "Kho dữ liệu" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "Không tìm thấy nguồn kho dữ liệu" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "Tài nguyên \"{0}\" không tìm thấy." + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "Người dùng {0} không có quyền cập nhật nguồn {1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "Giao diện người sử dụng dữ liệu CKAN " + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "" +"Truy cập vào tài nguyên dữ liệu qua một web API với đây đủ hỗ trợ truy vấn." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "Điểm kết thúc" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "" +"Giao diện người sử dụng dữ liệu có thể truy cập thông qua hoạt động theo dõi" +" giao diện người sử dụng CKAN" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "Tạo" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "Cậ nhật/Chèn" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "Truy vấn" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "Truy vấn (thông qua ngôn ngữ truy vấn mang tính cấu trúc)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "Đang hỏi" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "Ví dụ câu hỏi (5 kết quả đầu tiên)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "Ví dụ câu hỏi (kết quả có chứa \"jones\")" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "Ví dụ câu hỏi (bằng xác nhận SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "Ví dụ: Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "Một yêu cầu (JSONP) đơn giản đối với dữ liệu API sử dụng jQuery" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "Ví dụ: Con trăn" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "Lưu" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "Mô tả" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "Đang tải" + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "Dữ liệu API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "" + +#: ckan/templates/group/read.html:13 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 "Sự liên quan" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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 "Tên từ A-Z" + +#: ckan/templates/group/index.html:20 ckan/templates/group/read.html:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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 "Tên từ Z-A" + +#: ckan/templates/group/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +msgstr "Sửa gần đây" + +#: 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 "" + +#: ckan/templates/group/read.html:17 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 "Ưa chuộng" + +#: 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 "Tùy chỉnh chữ" + +#: ckanext/example_idatasetform/templates/package/snippets/package_basic_fields.html:4 +msgid "custom text" +msgstr "Tùy chỉnh chữ" + +#: ckanext/example_idatasetform/templates/package/snippets/package_metadata_fields.html:11 +msgid "Country Code" +msgstr "Mã quốc gia" + +#: 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_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "Không có mô tả nào về nhóm này" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} Bộ dữ liệu" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0 Bộ dữ liệu" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "Người theo dõi" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "Nguồn" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "Hình ảnh" + +#: 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:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "Bộ dữ liệu được đánh giá cao nhất" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "Đánh giá trung bình" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "Số lần đánh giá" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "Không có đánh giá" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "Các nhóm lớn nhất" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "Nhóm" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "Số bộ dữ liệu" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "Không có nhóm" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "Các nhãn đứng đầu" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "Tên nhãn" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "Số bộ dữ liệu" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "Người sử dụng" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "Bảng chọn thống kê" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "Bộ dữ liệu được sửa nhiều nhất" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "Trình duyệt của bạn không hỗ trợ iframes" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "Không tìm thấy tính năng xác nhận: %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "Quản trị viên" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "Biên tập viên" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "Thành viên" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "Cần là quản trị viên hệ thống để thực hiện việc quản trị" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "Tiêu đề trang" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "Kiểu trang trí" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "Đặt thẻ đánh dấu dòng" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "Thẻ biểu tượng trang" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "Thông tin" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "Thông tin về trang" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "Đoạn văn bản giới thiệu" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "Văn bản trên trang chủ" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "Chỉnh sửa CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "CSS cho phép chỉnh sửa được chèn vào đầu trang" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "Trang chủ" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "" +"Không thể xóa gói %s do mục đang xem lại %s bao gồm những gói không xóa được" +" %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "Vấn đề xóa chỉnh sửa %s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "Xóa thành công" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "Hoạt động chưa hoàn thành" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "Không được phép truy cập" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "Không tìm thấy" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "Yêu cầu bị lỗi" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "Tên hành động không biết: %s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "Lỗi JSON: %s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "Dữ liệu yêu cầu tồi: %s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "Không tìm thấy nhóm" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "Không tìm thấy tổ chức" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "Loại nhóm không đúng" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "Tổ chức" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "Nhóm" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "Từ khóa" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "Định dạng" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "Giấy phép" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "Người dùng %r không được phép sửa %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "Không được phép thực hiện cập nhật số lượng lớn" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "Không được phép tạo nhóm" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "Lỗi tích hợp" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "Người dùng %r không được quyền sửa %s quyền cấp phép" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "Không được quyền xóa nhóm %s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "Tổ chức bị xóa" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "Nhóm bị xóa" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "Không được phép thêm thành viên nhóm %s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "Không được xóa thành viên %s nhóm" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "Thành viên nhóm bị xóa" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "Chọn hiệu chỉnh trước khi so sánh" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "Lịch sử sửa đổi nhóm CKAN" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "Thay đổi gần đây của nhóm CKAN" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "Nhật kí tin nhắn" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "Bạn đang theo dõi {0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "Bạn đang không theo dõi {0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "Không được phép xem người theo dõi %s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "Trang này hiện ngừng kết nối. Dữ liệu không được thiết lập" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "Vui lòng cập nhập thông tin và địa chỉ email của bạn." + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s dùng địa chỉ email của bạn nếu bạn cần đặt lại mật khẩu." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "Thông số \"{parameter_name}\" không phải là số nguyên" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "Dữ liệu không tìm thấy" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "Định dạng hiệu chỉnh không hợp lệ: %r " + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "Không được phép đọc dữ liệu %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "Lịch sử sửa đổi bộ dữ liệu CKAN" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "Những thay đổi gần đây của bộ dữ liệu CKAN" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "Không cấp phép tạo dữ liệu" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "Không cấp phép hiệu chỉnh nguồn này" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "Không cấp phép cập nhật dữ liệu" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "Dữ liệu {id} không tìm thấy" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "Bạn phải thêm ít nhất một nguồn dữ liệu" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "Không được phép tạo mới tài liệu" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "Không được phép tạo mới dữ liệu tại đây" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "Không thể thêm dữ liệu vào mục lục tìm kiếm" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "Không thể cập nhật mục lục tìm kiếm" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "Dữ liệu đã được xóa." + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "Không được phép xóa dữ liệu %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "Nguồn không tìm thấy" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "Không được phép xóa nguồn %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "Không tìm thấy chức năng đọc dữ liệu" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "Dữ liệu nguồn không tìm thấy" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "Không thể tải về" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "Không được phép đọc bộ dữ liệu %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "Không được phép tìm hiểu nguồn %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "Không được phép sửa dữ liệu" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "Không thấy chức năng đọc" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "Không tìm thấy định dạng đọc" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "Thông tin về dữ liệu kém " + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "Không có chức năng đọc dữ liệu" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "Không được xem trước" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "Người sử dụng không tìm thấy" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "Không cấp phép đăng kí cho người sử dụng" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "Không cấp phép tạo người sử dụng" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "Không cấp phép xóa địa chỉ người sử dụng với id \"{user_id}\"." + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "Người sử dụng không được xác nhận" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "Không được phép sửa người dùng %s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "Cập nhật lí lịch" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "Không được quyền tạo người dùng %s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "Hệ thống kiểm thử lỗi. Đề nghị thử lại." + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "Người dùng \"%s\" đã đăng ký nhưng hiện đang đăng nhập ở dạng \"%s\" từ trước" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "Không cấp phép hiệu chỉnh người sử dụng" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "Không thể đăng nhập. Tên đăng nhập hoặc mật khẩu sai" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "Không cấp phép đề nghị cài lại mật khẩu" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "Không cấp phép cài lại mật khẩu" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "Từ khóa không hợp lệ. Thử lại" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "Mật khẩu của bạn đã được cài đặt lại" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "Mật khẩu của bạn phải có từ 4 kí tự trở lên" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "Mật khẩu bạn nhập không đúng" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "Bạn phải nhập mật khẩu" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "Không tìm thấy mục tin tiếp theo" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} Không tìm thấy" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "Tất cả" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "Xem" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "Ngay bây giờ" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "Không biết" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "Nguồn không tên" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "Dữ liệu mới tạo" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "Nguồn đã hiệu chỉnh" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "Cài đặt hiệu chỉnh" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} xem" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number} Số lượng xem gần đây" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "Không có địa chỉ email của người nhận" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "Tổ chức" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "Nhóm" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "Giá trị bị mất" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "Trường đầu vào %(name)s không được tiếp nhận" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "Nhập giá trị số nguyên" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Nguồn dữ liệu không hợp lệ" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "Phần thêm" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "Từ khóa \"%s\" không tồn tại" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "Dữ liệu" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "Không thể phân tích JSON hợp lệ" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "Tổ chức không tồn tại" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "Bạn không thể thêm dữ liệu vào tổ chức này" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "Số nguyên không hợp lệ" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "Phải là một số tự nhiên" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "Phải là số nguyên dương" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "Định dạng dữ liệu không đúng" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "Liên kết không được phép vào nhật kí tin nhắn" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "Bộ dữ liệu đã có sẵn" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "Nguồn" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "Tên nhóm hoặc địa chỉ không tồn tại" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "Hình thức hoạt động" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "Tên phải là một chuỗi" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "Tên không được sử dụng" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "Tên dài tối đa %i ký tự" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "Địa chỉ đã được sử dụng" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "Độ dài tên \"%s\" dưới mức tối thiểu %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "Độ dài tên \"%s\" trên mức tối đa %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "Phiên bản không vượt quá %i ký tự " + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "Từ khóa bị trùng lặp \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "Tên nhóm đã tồn tại trên dữ liệu" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "Độ dài thẻ \"%s\" ngắn hơn quy định tối thiểu %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "Độ dài thẻ %s lớn hơn quy định tối đa %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "Thẻ \"%s\" chỉ chấp nhận các ký tự chữ số hoặc các biểu tượng:-_" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "Thẻ \"%s\" không chấp nhận ký tự viết hoa" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "Tên người sử dụng phải là một chuỗi" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "Không có tên đăng nhập" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "Nhập mật khẩu" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "Mật khẩu phải là một chuỗi" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "Mật khẩu bạn nhập không đúng" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "" +"Không được phép hiệu chỉnh thư rác. Tránh các liên kết trong phần mô tả của " +"bạn" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "Tên gồm tối thiểu %s ký tự" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "Từ vựng đã được sử dụng" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "" +"Không thể thay đổi giá trị của chỉ dẫn từ %s thành %s. Chỉ dẫn này ở chế độ " +"không chỉnh sửa" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "Từ vựng đi kèm không tìm thấy" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "Thẻ %s không nằm trong kho từ vựng %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "Không có từ khóa" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "Thẻ %s đã có trong kho từ vựng %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "Cung cấp địa chỉ hợp lệ" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "không tồn tại vai trò này" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "Bộ dữ liệu thiếu dữ liệu tổ chức không thể đặt chế độ bảo mật" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "Không có danh sách" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "Không phải là một chuỗi" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "có thể tạo vòng lặp trong hệ thống" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "Giá trị bị mất" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "Thử thiết lập tổ chức dạng nhóm" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "Bạn phải cung cấp địa chỉ hoặc tên gói dữ liệu (thông số\"gói dữ liệu\")." + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "Bạn phải cung cấp một trị số (thông số \"trị số\")." + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "Trị số phải là số nguyên" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "Trị số trong khoảng %i và %i." + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "Bạn phải đăng nhập để theo dõi người sử dụng" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "Bạn không thể tự theo dõi chính mình" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "Bạn đang theo dõi {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "Bạn phải đăng nhập để theo dõi dữ liệu" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "Tên người sử dụng {username} không tồn tại" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "Bạn phải đăng nhập để theo dõi nhóm" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "Địa chỉ không có trong dữ liệu" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "Không thể tìm từ vựng \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "Không thể tìm từ khóa \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "Bạn phải được đăng nhập để tránh theo dõi một số thứ" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "Bạn đang không theo dõi {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "Không tìm thấy nguồn" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "Không xác định nếu sử dụng tham số \"truy vấn\"" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "Phải là : cặp(s)" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "Miền \"{field}\" không được công nhận trong Nguồn_Tìm kiếm" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "Không tìm thấy dữ liệu" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "Trạng thái công việc không tìm thấy." + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "Không tìm thấy tổ chức" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "Người dùng %s không được quyền tạo gói" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "Người dùng %s không được quyền tạo nhóm" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "Người dùng %s không được quyền bổ sung dữ liệu vào tổ chức này" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "Nguồn này không tìm thấy dữ liệu" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "Người dùng %s không được quyền sửa các gói gói" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "Người dùng %s không được quyền tạo nhóm" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "Người dùng %s không được quyền tạo tổ chức" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "Người dùng {user} không được quyền tạo người dùng thông qua API" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "Không cấp phép tạo người sử dụng" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "Không tìm thấy nhóm" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "Người dùng %s không được quyền thêm thành viên" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "Người dùng %s không được quyền sửa nhóm %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "Người dùng %s không được xác thực để xóa tài nguyên %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "Người dùng %s không được quyền xóa mối liên kết %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "Người dùng %s không được quyền xóa nhóm" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "Người dùng %s không được quyền xóa nhóm %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "Người dùng %s không được quyền xóa tổ chức" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "Người dùng %s không được quyền xóa tổ chức %s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "Người dùng %s không được quyền xóa trạng thái công việc" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "Không cấp phép" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "Người dùng %s không được quyền xem gói dữ liệu" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "Người dùng %s không được quyền xem gói dữ liệu %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "Người dùng %s không được quyền xem tài nguyên %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "Bạn phải đăng nhập để truy cập bảng điều khiển" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "Người dùng %s không được quyền sửa gói dữ liệu %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "Người dùng %s không được quyền sửa tài nguyên %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "" +"Người dùng %s không được xác thực để thay đổi trạng thái của package %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "Người dùng %s không được xác thực để chỉnh sửa tổ chức %s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "Người dùng %s không được thay đổi trạng thái của nhóm %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "Người dùng %s không được thay đổi quyền hạng của nhóm %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "Phải đăng nhập để điều chỉnh người sử dụng" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "Người dùng %s không được chỉnh sửa user %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "Người dùng %s không được để thay đổi trạng thái của phiên bản" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "Người dùng %s không được cập nhập bảng task_status" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "Người dùng %s không được cập nhập bảng term_translation" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "Không xác định được giấy phép" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Tổ chức Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Tổ chức Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Tổ chức Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Giấy phép bản quyền mở" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "Tổ chức GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "Khác (Mở)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "Khác (Khu vực công cộng)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "Khác (Quyền)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "Tổ chức UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Bản quyền mở phi thương mại (bất kỳ)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "Khác (phi thương mại)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "Khác (Không mở)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "Phụ thuộc vào %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "Là phần phụ thuộc của %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "xuất phát từ %s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "có nguồn %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "Liên kết tới %s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "Được liên kết từ %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "Là con của %s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "là gốc của %s" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "có liên hệ gần nhau %s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "Không có dữ liệu giao diện người sử dụng để tải nguồn này" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "Không thể tải thông tin giao diện người sử dụng dữ liệu " + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "Bắt đầu nhập" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "Không tìm thấy" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "Không thể lưu thay đổi theo hình thức này" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "Xác nhận hành động" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "Bạn chắc chắn muốn thực hiện hoạt động này" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "Xác nhận" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "Hủy" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "Không theo dõi" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "Theo dõi" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "Liên kết" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "" +"Liên kết đến một địa chỉ trên mạng ( Bạn cũng có thể liên kết với một giao " +"diện người sử dụng)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "Tải lên" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "Xóa" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "Tải lên một tệp từ máy tính của bạn" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "Địa chỉ" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "Tệp" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "Lưu" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "Đang lưu" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "Tải lên một tệp" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "Xuất hiện lỗi" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "Không thể tải tệp" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "Không thể tải lên giá trị" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "Nguồn đã tải lên" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "Không thể lấy dữ liệu từ tệp đã tải" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "" +"You are uploading a file. Are you sure you want to navigate away and stop " +"this upload?" +msgstr "Bạn đang tải tệp. Bạn muốn chuyển hướng và ngừng tải tệp?" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "Hiệu chỉnh" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "Hiển thị thêm" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "Ẩn" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "Lỗi %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "Thông tin {0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "Giao diện người sử dụng CKAN" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Được phát triển bởi CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "Cài đặt hệ thống" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "Xem tiểu sử" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "Bảng điều khiển (%(num)d Mục mới)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "Bảng điều khiển" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "Thoát" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "Đăng nhập" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "Đăng kí" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "Dữ liệu" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "Tìm kiếm bộ dữ liệu" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "Tìm kiếm" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "Đi thẳng đến nội dung" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +msgstr "" + +#: ckan/templates/activity_streams/activity_stream_items.html:9 +msgid "Load less" +msgstr "Tải ít hơn" + +#: ckan/templates/activity_streams/activity_stream_items.html:17 +msgid "Load more" +msgstr "Tải thêm" + +#: ckan/templates/activity_streams/activity_stream_items.html:23 +msgid "No activities are within this activity stream" +msgstr "Không có hành động nào là trong dòng hoạt động này" + +#: ckan/templates/admin/base.html:3 +msgid "Administration" +msgstr "Quản trị" + +#: ckan/templates/admin/base.html:8 +msgid "Sysadmins" +msgstr "Quản trị hệ thống" + +#: ckan/templates/admin/base.html:9 +msgid "Config" +msgstr "Cấu hình" + +#: ckan/templates/admin/base.html:10 ckan/templates/admin/trash.html:27 +msgid "Trash" +msgstr "Rác" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "Bạn có muốn thiết lập lại câu hình?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "Cài đặt lại" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "Cập nhật cấu hình" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "các lựa chọn cấu hình CKAN " + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

Tiêu đề: Đây là tiều đề của CKAN, Nó xuất hiện trong " +"những vị trí khác nhau trong CKAN.

Kiểu: Chọn từ một" +" danh sách của các biến đơn giản của bộ màu sắc chính để nhanh chóng thấy " +"được việc thay đổi chủ đề.

Site Tag Logo: Đây là " +"logo nó xuất hiện trong phần đâu của tất cả các mẩu của CKAN.

" +"

About: Văn bản này sẽ xuất hiện trên thể hiện của CKAN " +"này.Trang này.

Văn bản giới " +"thiệu: Văn bản này sẽ xuất hiện trên thể hiện của CKAN này Trang chủ chào mừng đến những vị khách.

" +"

Thay đổi CSS: Đây là một khối của CSS nó xuất hiện trong" +" <phần đầu> của mọi trang. Nếu bạn muốn được tùy chỉnh " +"các mẫu một cách đầy đủ hơn chúng tôi đề nghị bạn đọc tài liệu.

Trang chủ: " +"Đây là lựa chọn đã được xếp đặt trước cho những modules xuất hiện trên trang" +" chủ của bạn.

" + +#: ckan/templates/admin/confirm_reset.html:3 +#: ckan/templates/admin/confirm_reset.html:10 +msgid "Confirm Reset" +msgstr "Xác nhận cài đặt lại" + +#: 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:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "Xác nhận xóa" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +msgstr "" + +#: ckan/templates/dataviewer/snippets/data_preview.html:9 +msgid "This resource can not be previewed at the moment." +msgstr "Nguồn không được xem trước tại thời điểm này" + +#: ckan/templates/dataviewer/snippets/data_preview.html:11 +#: ckan/templates/package/resource_read.html:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "Bấm vào đây để biết thêm thông tin" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +msgstr "Tải nguồn về" + +#: ckan/templates/dataviewer/snippets/no_preview.html:3 +msgid "No preview available." +msgstr "Không thể xem trước" + +#: ckan/templates/dataviewer/snippets/no_preview.html:5 +msgid "More details..." +msgstr "Thêm chi tiết" + +#: ckan/templates/dataviewer/snippets/no_preview.html:12 +#, python-format +msgid "No handler defined for data type: %(type)s." +msgstr "Không có công cụ định nghĩa dạng dữ liệu: %(type)s." + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard" +msgstr "Tiêu chuẩn" + +#: ckan/templates/development/snippets/form.html:5 +msgid "Standard Input" +msgstr "Đầu vào tiêu chuẩn " + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium" +msgstr "Trung bình" + +#: ckan/templates/development/snippets/form.html:6 +msgid "Medium Width Input" +msgstr "Đầu vào cỡ trung bình" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full" +msgstr "Đầy đủ" + +#: ckan/templates/development/snippets/form.html:7 +msgid "Full Width Input" +msgstr "Đầu vào cỡ đầy đủ" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large" +msgstr "Lớn" + +#: ckan/templates/development/snippets/form.html:8 +msgid "Large Input" +msgstr "Đầu vào lớn" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend" +msgstr "Hàm bổ sung Tiền tố" + +#: ckan/templates/development/snippets/form.html:9 +msgid "Prepend Input" +msgstr "Đầu vào hàm bổ sung tiền tố" + +#: ckan/templates/development/snippets/form.html:13 +msgid "Custom Field (empty)" +msgstr "Trường chỉnh sửa (trống)" + +#: ckan/templates/development/snippets/form.html:19 +#: ckan/templates/snippets/custom_form_fields.html:20 +#: ckan/templates/snippets/custom_form_fields.html:37 +msgid "Custom Field" +msgstr "Trường chỉnh sửa" + +#: ckan/templates/development/snippets/form.html:22 +msgid "Markdown" +msgstr "Giảm " + +#: ckan/templates/development/snippets/form.html:23 +msgid "Textarea" +msgstr "Vùng văn bản" + +#: ckan/templates/development/snippets/form.html:24 +msgid "Select" +msgstr "Chọn" + +#: ckan/templates/group/activity_stream.html:3 +#: ckan/templates/group/activity_stream.html:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: ckan/templates/user/read_base.html:20 +msgid "Activity Stream" +msgstr "Chuỗi hoạt động" + +#: 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 "Người quản lý" + +#: ckan/templates/group/base_form_page.html:5 +msgid "Add a Group" +msgstr "Thêm nhóm" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "Hình thức nhóm" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "Bạn có muốn xóa nhóm không - {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 "Bạn có muốn xóa tên thành viên nhóm không - {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:15 +#: 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 "Quản lí" + +#: ckan/templates/group/edit.html:12 +msgid "Edit Group" +msgstr "Điều chỉnh nhóm" + +#: 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 "Thành viên" + +#: ckan/templates/group/index.html:13 +#: ckan/templates/user/dashboard_groups.html:7 +msgid "Add Group" +msgstr "Thêm nhóm" + +#: ckan/templates/group/index.html:20 +msgid "Search groups..." +msgstr "Tìm nhóm" + +#: ckan/templates/group/index.html:29 +msgid "There are currently no groups for this site" +msgstr "Hiện tại không có nhóm nào tại trang này" + +#: ckan/templates/group/index.html:31 +#: ckan/templates/organization/index.html:31 +msgid "How about creating one?" +msgstr "Bạn có muốn tạo nhóm?" + +#: ckan/templates/group/member_new.html:8 +#: ckan/templates/organization/member_new.html:10 +msgid "Back to all members" +msgstr "Quay lại tất cả các thành viên" + +#: 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 "Điều chỉnh thành viên" + +#: ckan/templates/group/member_new.html:10 +#: ckan/templates/group/member_new.html:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "Thêm thành viên" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "Người sử dụng hiện tại" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "" +"Nếu bạn muốn thêm một người sử dụng hiện có, hãy tìm tên người sử dụng bên " +"dưới" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "Hoặc" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "Người sử dụng mới" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "" +"Nếu bạn muốn mới một người sử dụng mới, hãy nhập địa chỉ email của người đó" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "Vai trò" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "Bạn có muốn xóa thành viên này không?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "Xóa" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "Vai trò là gì?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Quản trị viên: có thể sửa thông tin nhóm và quản lý các " +"thành viên tổ chức.

Thành viên: Có thể thêm/bớt bộ " +"dữ liệu của các nhóm

" + +#: ckan/templates/group/new.html:3 ckan/templates/group/new.html:5 +#: ckan/templates/group/new.html:7 +msgid "Create a Group" +msgstr "Tạo nhóm" + +#: ckan/templates/group/new_group_form.html:17 +msgid "Update Group" +msgstr "Cập nhật nhóm" + +#: ckan/templates/group/new_group_form.html:19 +msgid "Create Group" +msgstr "Tạo nhóm" + +#: ckan/templates/group/read.html:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "Tìm kiếm bộ dữ liệu" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "Bộ dữ liệu trong nhóm: {group}" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "Tên" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "Nhóm của tôi" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "Một chút thông tin về nhóm của tôi" + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "Bạn có muốn xóa nhóm này không?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "Lưu nhóm" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "Xem tên {name}" + +#: ckan/templates/group/snippets/group_item.html:43 +msgid "Remove dataset from this group" +msgstr "Xóa bộ dữ liệu từ nhóm này" + +#: ckan/templates/group/snippets/helper.html:4 +msgid "What are Groups?" +msgstr "Nhóm là gì?" + +#: 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 "" +"Bạn có thể dùng CKAN Groups để tạo và quản lý các bộ sưu tập của các tập dữ " +"liệu. Điều này có thể cho tập dữ liệu cho một dự án hoặc nhóm cụ thể, hoặc " +"trên một chủ để cụ thể, hoặc là rất đợn giản để giúp mọi người tìm và tìm " +"kiếm tập dữ liệu được phổ biến của chính họ." + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "Đã xóa" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +msgstr "Đọc thêm" + +#: ckan/templates/home/index.html:4 +msgid "Welcome" +msgstr "Chào đón" + +#: 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 là nền tản cổng thông tin dữ liệu mã nguồn mở hàng đầu thế giới.

" +"

CKAN là một giải pháp phần mềm hoàn chỉnh về truy cập và sử dụng dữ liệu" +" - bằng cách cung cấp công cụ để xuất bản, chia sẻ, tìm kiếm và sử dụng dữ " +"liệu (bao gồm lưu trữ dữ liệu và cung cấp các thư viện dữ liệu APIs mạnh " +"mẽ). CKAN nhằm mục đích xuất bản dữ liệu (các chính phủ quốc gia và khu vực," +" công ty và tổ chức) muốn làm cho dữ liệu của họ mở và sẵn sàng.

CKAN" +" được dùng bởi các chính phủ và các nhóm người sử dụng trên toàn thế giới và" +" và quyền hạn một loạt các cổng thông tin dữ liệu chính thức và cộng đồng " +"bao gồm cổng thông cho chính quyền địa phương, quốc gia và quốc tế, chẳng " +"hạn như của Vương quốc Anh data.gov.uk và" +" cộng đồng châu Âu publicdata.eu, " +"Brazin dados.gov.br, Hà Lan và Cổng " +"thông tin chính phủ Hà Lan, cũng như nhiều website ở Mỹ, Anh Argentina, Phần" +" Lan và nhiều nước khác.

CKAN: http://ckan.org/
CKAN tour: http://ckan.org/tour/
Tính năng: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "Chào mừng gia nhập 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 "" +"Đây là đoạn giới thiệu hay về CKAN hoặc tổng quát site. Chúng toi không có " +"mọi bản sao ở đây nhưng chúng tôi sẽ sớm hoàn thành nó" + +#: ckan/templates/home/snippets/promoted.html:19 +msgid "This is a featured section" +msgstr "Đây là khu vực mô tả" + +#: 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 "Các thẻ phổ biến" + +#: ckan/templates/home/snippets/stats.html:5 +msgid "{0} statistics" +msgstr "{0} Thống kê" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "Bộ dữ liệu" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "Các bộ dữ liệu" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "Các tổ chức" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "Các nhóm" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "Lĩnh vực được yêu cầu" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "Giá trị" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "Chỉnh sửa" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "Mẫu gồm các đầu vào vô hiệu" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "Lĩnh vực được yêu cầu" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "hình ảnh URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "Xóa nội dung tải" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +msgid "Organization Form" +msgstr "Hình thức tổ chức" + +#: ckan/templates/organization/bulk_process.html:3 +#: ckan/templates/organization/bulk_process.html:11 +msgid "Edit datasets" +msgstr "Hiệu đính bộ dữ liệu" + +#: ckan/templates/organization/bulk_process.html:16 +msgid " found for \"{query}\"" +msgstr "tìm thấy đáp ứng \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "Xin lỗi không tìm thấy bộ dữ liệu đáp ứng \"{query}\"" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "Công khai" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "Bí mật" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "Nháp" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "Riêng tư" + +#: ckan/templates/organization/bulk_process.html:98 +msgid "This organization has no datasets associated to it" +msgstr "Không có dữ liệu nào liên quan đến tổ chức này" + +#: ckan/templates/organization/confirm_delete.html:11 +msgid "Are you sure you want to delete organization - {name}?" +msgstr "Bạn có chắc bạn muốn xóa tổ chức - {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 "Chỉnh sửa tổ chức" + +#: ckan/templates/organization/index.html:13 +#: ckan/templates/user/dashboard_organizations.html:7 +msgid "Add Organization" +msgstr "Thêm tổ chức" + +#: ckan/templates/organization/index.html:20 +msgid "Search organizations..." +msgstr "Tìm kiếm tổ chức..." + +#: ckan/templates/organization/index.html:29 +msgid "There are currently no organizations for this site" +msgstr "Hiện tại không có tổ chức nào cho trang web này" + +#: ckan/templates/organization/member_new.html:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "Tên người sử dụng" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "Cập nhật thành viên" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

Quản trị viên: Có thể thêm/chỉnh sửa và xóa bộ dữ liệu, " +"cũng như quản lý các thành viên tổ chức.

Biên tập " +"viên: Có thể thêm và chỉnh sửa bộ dữ liệu, nhưng khong quản lý " +"thành viên tổ chức.

Thành viên: Có thể xem bộ dữ " +"liệu cá nhân của tổ chức nhưng không thể thêm dữ liệu mới.

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +msgid "Create an Organization" +msgstr "Tạo một Tổ chức" + +#: ckan/templates/organization/new_organization_form.html:17 +msgid "Update Organization" +msgstr "Cập nhật Tổ chức" + +#: ckan/templates/organization/new_organization_form.html:19 +msgid "Create Organization" +msgstr "Tạo Tổ chức" + +#: ckan/templates/organization/snippets/feeds.html:2 +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 "Tổ chức là gì?" + +#: 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 "" +"Các tổ chức CKAN được dùng để lập ra, quản lý và công bố các bộ dữ liệu. " +"Người dùng có thể có nhiều vai trò trong một Tổ chức, tùy thuộc vào cấp độ " +"quyền của họ trong việc tạo ra, chỉnh sửa và đưa tin." + +#: ckan/templates/organization/snippets/organization_form.html:10 +msgid "My Organization" +msgstr "Tổ chức của tôi" + +#: ckan/templates/organization/snippets/organization_form.html:20 +msgid "A little information about my organization..." +msgstr "Một vài thông tin về tổ chức của tôi..." + +#: ckan/templates/organization/snippets/organization_form.html:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "Lưu Tổ chức" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "Xem {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:2 +msgid "Create Dataset" +msgstr "Tạo bộ dữ liệu" + +#: ckan/templates/package/base_form_page.html:22 +msgid "What are datasets?" +msgstr "Bộ dữ liệu là gì?" + +#: 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 "" +"Bộ dữ liệu CKAN là một tập hợp các dữ liệu nguồn (như các tập tin), với mô " +"tả và các thông tin khác, tại một địa chỉ cố định. Bộ dữ liệu là những gì " +"người dùng thấy khi tìm kiếm dữ liệu." + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "Những thay đổi" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "Bạn có chắc muốn xóa bộ dữ liệu - {name}?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "Bạn có chắc muốn xóa nguồn - {name}?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "Xem bộ dữ liệu" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "Chỉnh sửa lý lịch dữ liệu" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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 "Chỉnh sửa chức năng xem" + +#: ckan/templates/package/edit_view.html:20 +#: ckan/templates/package/new_view.html:28 +#: ckan/templates/package/snippets/resource_item.html:46 +msgid "Preview" +msgstr "Xem trước" + +#: ckan/templates/package/edit_view.html:21 +msgid "Update" +msgstr "Cập nhật" + +#: ckan/templates/package/group_list.html:14 +msgid "Associate this group with this dataset" +msgstr "Liên kết nhóm này với dữ liệu này" + +#: ckan/templates/package/group_list.html:14 +msgid "Add to group" +msgstr "Thêm vào nhóm" + +#: ckan/templates/package/group_list.html:23 +msgid "There are no groups associated with this dataset" +msgstr "Không có nhóm nào liên quan đến bộ dữ liệu này" + +#: ckan/templates/package/new_package_form.html:13 +msgid "Update Dataset" +msgstr "Cập nhật bộ dữ liệu" + +#: ckan/templates/package/new_resource.html:5 +msgid "Add data to the dataset" +msgstr "Thêm dữ liệu vào bộ dữ liệu" + +#: ckan/templates/package/new_resource.html:11 +#: ckan/templates/package/new_resource_not_draft.html:8 +msgid "Add New Resource" +msgstr "Thêm nguồn mới" + +#: ckan/templates/package/new_resource_not_draft.html:3 +#: ckan/templates/package/new_resource_not_draft.html:4 +msgid "Add resource" +msgstr "Thêm nguồn" + +#: ckan/templates/package/new_resource_not_draft.html:16 +msgid "New resource" +msgstr "Nguồn mới" + +#: 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 "Thêm chức năng xem" + +#: 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:85 +msgid "Add" +msgstr "Thêm" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +msgstr "" + +#: ckan/templates/package/resource_edit_base.html:17 +msgid "All resources" +msgstr "Tất cả các nguồn" + +#: ckan/templates/package/resource_edit_base.html:19 +msgid "View resource" +msgstr "Xem nguồn" + +#: ckan/templates/package/resource_edit_base.html:24 +#: ckan/templates/package/resource_edit_base.html:30 +msgid "Edit resource" +msgstr "Sửa nguồn" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "Các lượt xem" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "Đầu nút API" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "Đến nguồn" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "Tải về" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "Địa chỉ:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "Nguồn: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "Không có chế độ xem đối với dữ liệu này" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "Không thấy chế độ xem dữ liệu bạn yêu cầu?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "Thông tin khác" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "Miền" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "Không biết" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "Được tạo ra" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "Định dạng" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "Giấy phép" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "Thêm nguồn mới" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

Bộ dữ liệu này trống, bạn có muốn " +"thêm vào không?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "Giao diện lập trình ứng dụng" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "Văn bản API" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "đầy đủ {format} kết xuất" + +#: 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 "" +"Bạn cũng có thể truy cập cơ quan đăng ký này bằng %(api_link)s (xem " +"%(api_doc_link)s) hoặc tải về %(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 "" +"Bạn cũng có thể truy cập cơ quan đăng ký này bằng %(api_link)s (xem " +"%(api_doc_link)s)." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: ckan/templates/package/snippets/additional_info.html:2 +#: ckan/templates/snippets/additional_info.html:7 +msgid "Additional Info" +msgstr "Thông tin khác" + +#: ckan/templates/package/snippets/additional_info.html:14 +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "Source" +msgstr "Nguồn" + +#: 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 +msgid "Author" +msgstr "Tác giả" + +#: 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 "Người bảo dưỡng" + +#: ckan/templates/package/snippets/additional_info.html:49 +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "Version" +msgstr "Phiên bản" + +#: ckan/templates/package/snippets/additional_info.html:56 +#: ckan/templates/package/snippets/package_basic_fields.html:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "Tình trạng" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +msgid "Title" +msgstr "Tiêu đề" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +msgid "eg. A descriptive title" +msgstr "Ví dụ: Tiêu đề bằng hình" + +#: ckan/templates/package/snippets/package_basic_fields.html:13 +msgid "eg. my-dataset" +msgstr "Bộ dữ liệu_của tôi" + +#: ckan/templates/package/snippets/package_basic_fields.html:19 +msgid "eg. Some useful notes about the data" +msgstr "Ví dụ: Những ghi chú hữu ích về dữ liệu" + +#: ckan/templates/package/snippets/package_basic_fields.html:24 +msgid "eg. economy, mental health, government" +msgstr "Ví dụ: kinh tế, sức khỏe tinh thần, chính phủ" + +#: ckan/templates/package/snippets/package_basic_fields.html:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"Bạn có thể tìm định nghĩa giấy phép và thông tin khác tại đây opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "Tổ chức" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "Không có tổ chức nào" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "Tầm nhìn" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "Công khai" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +msgid "Active" +msgstr "Hoạt động" + +#: 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 "Bạn có chắc muốn xóa bộ dữ liệu này?" + +#: ckan/templates/package/snippets/package_form.html:43 +msgid "Next: Add Data" +msgstr "Tiếp theo: Thêm dữ liệu" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: ckan/templates/package/snippets/package_metadata_fields.html:16 +msgid "Author Email" +msgstr "Email tác giả" + +#: 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 "joe@example.com" + +#: ckan/templates/package/snippets/package_metadata_fields.html:22 +msgid "Maintainer Email" +msgstr "Email người bảo dưỡng" + +#: ckan/templates/package/snippets/resource_edit_form.html:12 +msgid "Update Resource" +msgstr "Cập nhật nguồn" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "VD: Giá vàng Tháng 1 năm 2011" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "Vài ghi chú hữu ích về dữ liệu" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "VD: CSV, XML hay JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "VD: 5.6.2012" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "Kích cỡ tệp" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "VD: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "Định dạng MIME" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "VD: ứng dụng/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "Bạn có chắc muốn xóa nguồn này?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "Trước" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "Lưu & thêm" + +#: ckan/templates/package/snippets/resource_form.html:81 +msgid "Finish" +msgstr "Kết thúc" + +#: ckan/templates/package/snippets/resource_help.html:2 +msgid "What's a resource?" +msgstr "Nguồn là gì?" + +#: ckan/templates/package/snippets/resource_help.html:4 +msgid "A resource can be any file or link to a file containing useful data." +msgstr "" +"Nguồn có thể là bất kỳ tệp hoặc đường dẫn nào đến tệp chứa dữ liệu có ích." + +#: ckan/templates/package/snippets/resource_item.html:37 +msgid "Explore" +msgstr "Tìm hiểu" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "Thông tin thêm" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "Đã được gắn" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "Mã" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "Dữ liệu và nguồn" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +msgstr "" + +#: ckan/templates/package/snippets/stages.html:23 +#: ckan/templates/package/snippets/stages.html:25 +msgid "Create dataset" +msgstr "Tạo bộ dữ liệu" + +#: 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 "Thêm dữ liệu" + +#: 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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "Thêm bộ dữ liệu" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Trạng thái Datapusher: {status}." + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Tra ngược URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "Hiển thị thêm {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "Chỉ hiển thị ưu chuộng {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "Không có {facet_type} khớp với tìm kiếm này" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "Trang chủ" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "Ngôn ngữ" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Đến" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "Không cấp giấy phép" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "Bộ dữ liệu này đáp ứng Định nghĩa Mở" + +#: ckan/templates/snippets/organization.html:50 +msgid "There is no description for this organization" +msgstr "Không có mô tả nào về tổ chức này" + +#: ckan/templates/snippets/package_item.html:57 +msgid "This dataset has no description" +msgstr "Bộ dữ liệu này không có mô tả nào" + +#: ckan/templates/snippets/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "Sắp xếp thành" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "Kết quả lọc" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

Thử tìm kiếm khác

" + +#: ckan/templates/snippets/search_form.html:87 +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] "{number} bộ dữ liệu tìm thấy cho \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "Không tìm thấy bộ dữ liệu cho \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "{number} số bộ dữ liệu tìm thấy" + +#: ckan/templates/snippets/search_result_text.html:18 +msgid "No datasets found" +msgstr "Không tìm thấy bộ dữ liệu" + +#: ckan/templates/snippets/search_result_text.html:21 +msgid "{number} group found for \"{query}\"" +msgid_plural "{number} groups found for \"{query}\"" +msgstr[0] "{number} số nhóm tìm thấy cho \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "Không tìm thấy nhóm cho \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "{number} số nhóm tìm thấy" + +#: ckan/templates/snippets/search_result_text.html:24 +msgid "No groups found" +msgstr "Không tìm thấy nhóm" + +#: ckan/templates/snippets/search_result_text.html:27 +msgid "{number} organization found for \"{query}\"" +msgid_plural "{number} organizations found for \"{query}\"" +msgstr[0] "{number} số tổ chức tìm thấy cho \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "Không tìm thấy tổ chức cho \"{query}\"" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "{number} số tổ chức tìm thấy" + +#: ckan/templates/snippets/search_result_text.html:30 +msgid "No organizations found" +msgstr "Không tìm thấy tổ chức" + +#: ckan/templates/snippets/social.html:5 +msgid "Social" +msgstr "Xã hội" + +#: ckan/templates/snippets/subscribe.html:2 +msgid "Subscribe" +msgstr "Đăng kí" + +#: ckan/templates/snippets/subscribe.html:4 +#: ckan/templates/user/edit_user_form.html:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "Thư điện tử" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "Định dạng dữ liệu dựa theo chuẩn XML " + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} đã thêm thẻ {tag} đến tập dữ liệu{dataset}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} Nhóm đã cập nhật {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor} Tổ chức đã được cập nhật {organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor} Dữ liệu đã được cập nhật {dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} cập nhật tài nguyên {resource} trong bộ dữ liệu {dataset}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} Lí lịch đã được cập nhật" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} đã xóa nhóm {group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} đã xóa tổ chức {organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} đã xóa bộ dữ liệu {dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} đã xóa tài nguyên {resource} từ bộ dữ liệu {dataset}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} khởi động giám sát {dataset} " + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor} khởi động giám sát {group} " + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} khởi động giám sát {user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} đã tạo nhóm {group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} đã tạo tổ chức {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} đã tạo bộ dữ liệu {dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} đã thêm tài nguyên {resource} vào bộ dữ liệu {dataset} " + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} Đăng nhập" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} đã loại thẻ {tag} khỏi bộ dữ liệu {dataset} " + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "Từ khóa tìm kiếm" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "Cung cấp tin tức" + +#: ckan/templates/user/dashboard.html:20 +#: ckan/templates/user/dashboard_datasets.html:12 +msgid "My Datasets" +msgstr "Bộ dữ liệu của tôi" + +#: ckan/templates/user/dashboard.html:21 +#: ckan/templates/user/dashboard_organizations.html:12 +msgid "My Organizations" +msgstr "Tổ chức của tôi" + +#: ckan/templates/user/dashboard.html:22 +#: ckan/templates/user/dashboard_groups.html:12 +msgid "My Groups" +msgstr "Nhóm của tôi" + +#: ckan/templates/user/dashboard.html:39 +msgid "Activity from items that I'm following" +msgstr "Hoạt động từ mục tôi đang theo dõi" + +#: ckan/templates/user/dashboard_datasets.html:17 +#: ckan/templates/user/read.html:20 +msgid "You haven't created any datasets." +msgstr "Bạn không tạo bộ dữ liệu nào" + +#: ckan/templates/user/dashboard_datasets.html:19 +#: ckan/templates/user/dashboard_groups.html:22 +#: ckan/templates/user/dashboard_organizations.html:23 +#: ckan/templates/user/read.html:22 +msgid "Create one now?" +msgstr "Tạo bộ dữ liệu ngay bây giờ?" + +#: ckan/templates/user/dashboard_groups.html:20 +msgid "You are not a member of any groups." +msgstr "Bạn không là thành viên nhóm nào" + +#: ckan/templates/user/dashboard_organizations.html:21 +msgid "You are not a member of any organizations." +msgstr "Bạn không là thành viên của tổ chức nào" + +#: ckan/templates/user/edit.html:6 ckan/templates/user/edit_base.html:3 +#: ckan/templates/user/list.html:6 ckan/templates/user/list.html:13 +#: ckan/templates/user/read_base.html:5 ckan/templates/user/read_base.html:8 +#: ckan/templates/user/snippets/user_search.html:2 +msgid "Users" +msgstr "Người sử dụng" + +#: ckan/templates/user/edit.html:17 +msgid "Account Info" +msgstr "Thông tin tài khoản" + +#: ckan/templates/user/edit.html:19 +msgid "" +"Your profile lets other CKAN users know about who you are and what you do." +msgstr "" +"Lí lịch của bạn cho phép những người sử dụng CKAN khác biết bạn là ai và làm" +" nghề gì" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "Thay đổi chi tiết" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "Tên" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "VD: Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "VD: joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "Thông tin bản thân" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "Đăng kí không cần email" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "Đổi mật khẩu" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "Mật khẩu" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "Xác nhận mật khẩu" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "Bạn có muốn xóa người sử dụng này không?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:59 +msgid "Update Profile" +msgstr "Cập nhật lí lịch" + +#: ckan/templates/user/list.html:3 +#: ckan/templates/user/snippets/user_search.html:11 +msgid "All Users" +msgstr "Tất cả người sử dụng" + +#: 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 "Đăng nhập" + +#: ckan/templates/user/login.html:25 +msgid "Need an Account?" +msgstr "Cần một tài khoản không?" + +#: ckan/templates/user/login.html:27 +msgid "Then sign right up, it only takes a minute." +msgstr "Đăng ký nhanh, chỉ mất 1 phút" + +#: ckan/templates/user/login.html:30 +msgid "Create an Account" +msgstr "Tạo tài khoản" + +#: ckan/templates/user/login.html:42 +msgid "Forgotten your password?" +msgstr "Quên mật khẩu?" + +#: ckan/templates/user/login.html:44 +msgid "No problem, use our password recovery form to reset it." +msgstr "" +"Không vấn đề, sử dụng hình thức khôi phục mật khẩu của chúng tôi để cài đặt" + +#: ckan/templates/user/login.html:47 +msgid "Forgot your password?" +msgstr "Quên mật khẩu" + +#: ckan/templates/user/logout.html:3 ckan/templates/user/logout.html:9 +msgid "Logged Out" +msgstr "Thoát" + +#: ckan/templates/user/logout.html:11 +msgid "You are now logged out." +msgstr "Bạn đang thoát" + +#: ckan/templates/user/logout_first.html:9 +msgid "You're already logged in as {user}." +msgstr "Bạn đã đăng nhập như người sử dụng {user}." + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "Thoát" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "Ghi nhớ mật khẩu" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "Bạn đã đăng nhập" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "Bạn cần thoát trước khi đăng nhập vào một tài khảo khác" + +#: ckan/templates/user/logout_first.html:23 +msgid "Log out now" +msgstr "Thoát ngay bây giờ" + +#: ckan/templates/user/new.html:6 +msgid "Registration" +msgstr "Đăng kí" + +#: ckan/templates/user/new.html:14 +msgid "Register for an Account" +msgstr "Đăng kí một tài khoản" + +#: ckan/templates/user/new.html:26 +msgid "Why Sign Up?" +msgstr "Lý do đăng ký?" + +#: ckan/templates/user/new.html:28 +msgid "Create datasets, groups and other exciting things" +msgstr "Tạo bộ dữ liệu, nhóm và các hoạt động thú vị khác" + +#: ckan/templates/user/new_user_form.html:5 +msgid "username" +msgstr "" + +#: ckan/templates/user/new_user_form.html:6 +msgid "Full Name" +msgstr "Tên" + +#: ckan/templates/user/new_user_form.html:27 +msgid "Create Account" +msgstr "Tạo tài khoản" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "Cài lại mật khẩu" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "Thiết lập lại mật khẩu" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "Cập nhật mật khẩu" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "Thực hiện công việc này như thế nào?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "Nhập mật khẩu mới và chúng tôi sẽ cập nhật tài khoản của bạn" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "Người sử dụng không tạo bộ dữ liệu nào" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "Bạn đã không cung cấp lí lịch" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "Người sử dụng này không có lí lịch" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Mở địa chỉ" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "Chỉ bạn mới có thể xem" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "Thành viên trước đây" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "Chìa khóa giao diện người sử dụng" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "Cài đặt lại mật khẩu của bạn" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +msgid "Activity from:" +msgstr "Hoạt động từ" + +#: ckan/templates/user/snippets/followee_dropdown.html:23 +msgid "Search list..." +msgstr "Tìm kiếm danh sách" + +#: ckan/templates/user/snippets/followee_dropdown.html:44 +msgid "You are not following anything" +msgstr "Bạn không theo dõi hoạt động nào" + +#: ckan/templates/user/snippets/followers.html:9 +msgid "No followers" +msgstr "Không có người theo dõi" + +#: ckan/templates/user/snippets/user_search.html:5 +msgid "Search Users" +msgstr "Tìm kiếm người sử dụng" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "Không cho phép chuyển hướng trang " diff --git a/ckan/i18n/zh_Hans_CN/LC_MESSAGES/ckan.po b/ckan/i18n/zh_Hans_CN/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..abafd821ee6 --- /dev/null +++ b/ckan/i18n/zh_Hans_CN/LC_MESSAGES/ckan.po @@ -0,0 +1,5061 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Adrià Mercader , 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/okfn/teams/11162/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "没找到资源" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "没有权限浏览此页 " + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "完成" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "挂起中" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "提交中" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "错误" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "尚未完成上传" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "上传至数据仓库" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "上传错误:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "错误:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "状态" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "最后更新" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "从未" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "上传日志" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "详情" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "日志结尾" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "数据仓库" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "未发现资源 \"{0}\"" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "用户{0}未被授权修改资源{1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN 数据 API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "通过 API 来访问与查询数据" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr "" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "终端" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +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." + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "创建" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "更新 / 插入" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "查询" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "查询 (通过 SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "查询中" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "查询实例(头5条结果)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "查询实例(结果中含 'jones')" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "查询示例(通过 SQL 语句)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "示例:Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "使用 Jquery 向 数据 API 发起简单的 ajax (JSONP) 请求" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "示例:Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "保存" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "描述" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "读取中..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "数据 API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "表格" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "测试配置" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "" + +#: ckan/templates/group/read.html:17 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 "热门" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "此群组沒有说明" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num} 数据集" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0数据集" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN的数据预览工具有很多实用功能" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "追从者" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "资源" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +msgstr "图片" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "Image url" +msgstr "图片url" + +#: ckanext/imageview/theme/templates/image_form.html:3 +msgid "eg. http://example.com/image.jpg (if blank uses resource url)" +msgstr "例如. http://example.com/image.jpg (如果为空将使用资源路径)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "图" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "例如:0" + +#: 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 "例如:100" + +#: 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 "GeoJSON字段" + +#: 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/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "最高分数据集" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "平均评分" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "评分数目" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "暂无评分" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "最大群组" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "群组" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "数据集数目" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "没有群组" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "标签名" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "数据集数目" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "用户" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "统计目录" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "编辑数做多的数据集" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "文本" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +msgid "Website" +msgstr "网站" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "Web Page url" +msgstr "页面url" + +#: ckanext/webpageview/theme/templates/webpage_form.html:3 +msgid "eg. http://example.com (if blank uses resource url)" +msgstr "例如. http://example.com (如果为空将使用资源路径)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "你的浏览器不支持内置页框." + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "授权功能未找到 %s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "管理员" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "编辑者" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "成员" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "必须成为系统管理员才能管理" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "网站标题" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "风格" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "网站标签行" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "网站标签图标" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "关于" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "关于页面文字" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "介绍文字" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "主页文字" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "客户化格式" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "将自定义的CSS插入页面头部" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "首页" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "无法净化组件 %s相关的修订版本%s 包含未刪除的组件 %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "清除变更问题%s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "清理结束" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "动作未执行." + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "没有登陆权限" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "未找到" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "错误请求" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "指令名称未知:%s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "JSON 错误:%s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "错误请求的数据:%s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "未找到群组" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "未发现该组织名" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "错误的群组类别" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "机构" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "群组" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "标签" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "格式" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "授权" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "用户%r没有权限编缉%s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "没有权限进行批量更新" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "没有权限创立群组" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "完整性错误" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "用户 %r 无权限修改 %s 的授权" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "没有权限删除群组%s" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "机构已经被删除." + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "群组已经被删除." + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s 已经被删除" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "没有权限加成员到群组%s" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "没有权限删除群组%s成员" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "群组成员已被删除" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "比较之前选择两个修改版本" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN 群组修该历史" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN 群组最新变更" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "日志信息:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr " 你现在在追随{0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "你不再追随{0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "没有权限浏览追随者%s" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "本网站目前无法运作. 数据库没有初始化." + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "請 更新你的个人资料 并且加入你的电子邮件地址。" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s用你的电子邮件地址, 若你需要重设你的密码." + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "参数\"{parameter_name}\"并非整型" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "数据集未找到" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "修改格式无效:%r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "" + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "没有权限读取组件 %s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN 数据集变更历史" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN 数据集最新变更:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "没有权限创建组件" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "没有权限编缉本资源" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "没有权限更新数据集" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "数据集 {id} 未找到" + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "你必须添加至少一项数据资源" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "没有权限创建资源" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "无法在搜索索引中加入组件" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "无法更新搜索索引" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "数据集已被删除" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "没有权限删除组件 %s" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "资源已被删除" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "没有权限删除资源 %s" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "未找到资源视图" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "没找到资源数据" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "没有可下载的内容" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "没有权限读取数据集 %s" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "没有权限读取资源 %s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "没有权限编辑该资源" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "未发现该视图" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "无法找到该视图类型" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "没有给定的预览" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "未找到用户" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "没有权限注册为用户" + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "没有权限创建用户" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "没有权限删除编号为 \"{user_id}\" 的用户" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "未指定用户" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "没有权限编缉用户%s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "用户信息已更新" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "没有权限创建用户%s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "验证码错误。请重试。" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "用户\"%s\"已经注册了但你仍旧已\"%s\"的身份登录着" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "没有权限编辑用户信息" + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "密码不正确" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "旧密码" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "不正确的密码" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "登录失败。用户名或密码错误。" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "没有权限申请重置密码" + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "没有权限重置密码" + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "无效的重置码。请重试。" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "您的密码已经被重设." + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "您的密码必需有4个以上字符." + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "你输入的密码错误。" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "您必须提供密码" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "没有关注项目" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0} 未找到" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "所有事物" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "浏览" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "刚才" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes}字节" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "未知的" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "未命名资源" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "创建新数据集." + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "编辑过的资源." + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "编辑过的设置." + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "{number} 浏览" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "{number}最新浏览" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "没有收件人电子信箱地址!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "组织" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "群组" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "缺失值" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "预料之外的输入项 %(name)s" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "请输入整数" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "组件资源无效" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "额外内容" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "标签 \"%s“ 不存在" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "数据集" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "不合法的 JSON 文件" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "机构不存在" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "你不能向这个机构添加数据集" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "无效整数" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "必须为自然数" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "必须为正整数" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "日期格式错误" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "在 log_message 中不允许超链接" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "数据集id已经存在" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "资源" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "群组名称或 ID 不存在" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "活动类型" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "姓名必须为字符串" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "这个名称不可使用" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "长度不得少于 %s 个字符" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "名称最大长度为 %i 字符" + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "URL已被占用" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "名称 \"%s\" 的长度小于最小长度 %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "名称 \"%s\" 长度大于最大长度 %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "版本号最大长度为 %i 字符" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "重复键值 \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "群组名称已存在" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "标签 \"%s\" 长度小于最小长度 %s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "标签 \"%s\" 长度大于最大长度 %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "标签 \"%s\" 仅能包含字母和以下符号:-_" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "标签 \"%s\" 不能大写" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "用户名必须为字符串" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "登录名不可用" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "请输入两遍密码" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "密码必须为字符串" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "你输入的密码不匹配" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "你的编辑无效因为它看上去像是垃圾广告。请移除描述中的超链接。" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "名称长度至少为 %s 字符" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "词汇表名称已被占用" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "无法将键值从 %s 改为 %s。这个键值是只读的。" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "标签词汇未找到。" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "标签 %s 不属于词汇表 %s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "没有标签名称" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "标签 %s 已经包含于词汇表 %s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "请提供有效链接" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "角色不存在。" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "没有关联组织的数据集不能设定为私有。" + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "非列表" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "非字符串" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "作为父结点,它将会在层次结构中创造环" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "\"filter_fields\" 和 \"filter_values\" 长度应该相同" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr " \"filter_fields\" 与\"filter_values\"需被同时填写" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr " \"filter_fields\" 与\"filter_values\"需被同时填写" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "缺失值" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "尝试创建一个机构作为群组" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "你必须给定一个组件ID或名称 (参数”package“)。" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "你必须给定一个评分(参数\"rating\")。" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "评分必须为整数。" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "评分必须在%i和%i之间" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "关注用户前请登录" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "你不能关注自己" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "你已经关注了 {0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "关注数据集前请登录。" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr "用户{username}不存在" + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "关注群组前请登录。" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "数据中无此ID" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "无法找到词汇表 \"%s\"" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "找不到标签 \"%s\"" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "取消关注前请登录" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "你并没关注 {0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "资源未找到。" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "如果使用「查询」参数则不必详细说明" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr "必须为 : 对" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "在 resource_search 中无法辨识「{field}」域" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "包未找到。" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "任务状态未找到。" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "组织未找到。" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "用户 %s没有权限创建组件" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "用户 %s没有编辑这些群组的权限" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "用户%s没有权限向这个机构添加新的数据集" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "本资源中没发现组件,无法授权." + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "用户 %s 未被授权在数据集 %s 上创建资源" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "用户%s没有权限编辑这些组件" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "用户 %s没有权限创立群组" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "用户 %s 无权限创建机构" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "用户{user} 没有权限通过 API 创建新用户" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "没有权限创建新用户" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "未找到群组." + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "用户 %s没有权限增加成员" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "用户 %s 没有权限编辑群组%s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "用户 %s没有权限删除资源 %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "用户 %s 无权限删除关联性%s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "用户 %s没有权限删除群组" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "用户 %s没有权限删除群组%s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "用户 %s 无权限删除机构" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "用户 %s 无权限删除机构%s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "用户 %s没有权限删除任务状态" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "未授权的" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "用户%s没有权限读取这些组件" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "用户%s没有权限读取组件%s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "用户 %s没有权限读取资源 %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "用户 %s 未被授权读取组 %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "你必须登入才能使用控制台." + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "用户 %s没有权限编辑组件%s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "用户 %s没有权限编辑资源 %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "用户 %s没有权限变更组件%s状态" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "用户 %s 无权限编辑机构%s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "用户 %s没有权限变更群组%s的状态" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "用户 %s没有编辑这些群组%s权限的授权" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "编辑用户前必须先登录" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "用户 %s没有编辑用户%s的劝限" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "用户 {0} 未被授权 更新用户 {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "用户%s没有授权变更修改状态" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "用户 %s没有权限边更任务状态表" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "用户 %s没有权限更新翻译字词表格" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "未指定许可证" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "Open Data Commons Public Domain Dedication and License (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "其他(开放)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "其他(公共领域)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "其他(归因)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "其他(非商业)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "其他(非开放)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "取决于%s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "是%s的附属" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "来自于%s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "拥有来源%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "链接到%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "链接自%s" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "是%s的子项目" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "是%s的父项目" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "拥有同级别项目%s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "这个资源中沒有API资料可供读取" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "读取API资讯失败" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "开始输入..." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "沒有匹配的资料" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "此表格有未保存的修改" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "请确认行动" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "确定要进行这个操作吗?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "确认" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "取消" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "取消追随" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "追随" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "链接" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "链接到你指明的URL(或者API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "上传" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "移除" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "从你的电脑上传文件" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "网址" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "文件" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "保存排序" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "保存中..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "上传文件" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "发生错误" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "无法上传文件" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "无法验证上传" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "上传资源" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "无法取得上传文档的数据" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "增加筛选条件" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "编辑" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "显示更多" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "隐藏" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "错误%(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "关于{0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "系统管理员设置" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "浏览个人资料" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "控制台(%(num)d 新项目)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "仪表盘" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "登出" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "登陆" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "登记" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "数据集" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "搜索数据集" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "搜索" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "垃圾桶" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "你确认要重设系统配置吗?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "重设" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "更新配置" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN 配置选项" + +#: ckan/templates/admin/config.html:52 +#, 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 "" +"

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.

" + +#: 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" + +#: 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实例具有完全控制权。请谨慎操作!

\n" +"

该链接可以引导您使用系统管理员特性 系统管理员引导

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "确认删除" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "点击此处看更多信息." + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "沒有处理程序定义的资料类型:%(type)s" + +#: 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/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 "Markdown标记" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "增加群组" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "群组表单" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "确定要删除群组:{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 "确定要删除成员:{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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "增加成员" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "现有的用户" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "如果你想添加一个现有的用户,请在下方搜索其用户名。" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "或" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "新用户" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "如果你想邀请一个新用户,请输入他的邮件地址。" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "角色" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "你确定要删除此成员吗?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "删除" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "什么是角色?" + +#: ckan/templates/group/member_new.html:93 +msgid "" +"

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

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

" +msgstr "" +"

Admin: Can edit group information, as well as manage " +"organization 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 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "搜索数据集..." + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "群组{group}中的数据集" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "名称" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "我的群组" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "关于我的群组的一些信息..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "你确定要删除此群组吗?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "保存群组" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "浏览{name}" + +#: 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 提供的群组功能来创建和管理数据集的集合。这可以用来整理同一个项目或者团队的数据集,或者仅是方便其他人搜索到你发布的数据集。" + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "已删除" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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 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/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "欢迎來到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 "这是一个关于CKAN或网站的简单介绍资讯。目前沒有文案,但很快就会有" + +#: 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 "{0} 统计" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "数据集" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "数据集" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "组织" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "群组" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "必须填写" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"在这里你可以使用Markdown 格式" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "价值" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "客户化" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "此表格包含无效输入:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "必填项" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "图片网址" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "清空上传" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "找到匹配「{query}」的结果" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "未找到匹配「{query}」的结果" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "设为公开" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "设为私有" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "草稿" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "私有的" + +#: ckan/templates/organization/bulk_process.html:98 +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 "你确定要删除机构- {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 "编辑机构" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "用户名" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "Email 地址" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "更新成员" + +#: ckan/templates/organization/member_new.html:95 +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 "" +"

管理者:可以新增/编辑和删除数据集,以及管理组织成员。< /p>

编辑:" +" 可以新增和编辑资料集,但无法管理组织成员。

一般成员: " +"可以浏览组织的私有的数据集,但无法新增数据集。

" + +#: ckan/templates/organization/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +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 组织使用来创建,管理,发布数据集集合的。用户可以在组织中扮演不同的角色,并被赋予不同级别的权限来创建,编辑和发布数据。" + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "保存组织" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "查看{organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 数据集是指数据资源的集合,并包含其相应的简介和相关信息。它拥有一个固定的 URL 地址。当用户搜索数据时,他们得到的结果均以数据集呈现。" + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "变更" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "你确定要删除数据集:{name}吗?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "你确定要删除资源:{name}吗?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "浏览数据集" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "编辑元数据" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "预览" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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:85 +msgid "Add" +msgstr "新增" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "编辑资源" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "视图" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API终端" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "前往资源" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "下栽" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "网址" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "来源: %(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "该资源暂时没有视图" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "没有看到期望的视图?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "这里列出了一些您未找到期望视图的原因:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "该资源没有已创建的视图" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "该站点管理员并没有开启相应的视图插件" + +#: ckan/templates/package/resource_read.html:152 +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:175 +msgid "Additional Information" +msgstr "其他信息" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "域" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "未知" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "创建的" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "格式" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "授权" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "新视图" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "该资源没有视图" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "添加新资源" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "" +"

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

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "应用程式界面" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API文献" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "以 {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 "您也可以使用%(api_link)s (参见 %(api_doc_link)s)来访问这个注册表或者下载%(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 "您也可以使用%(api_link)s (看 %(api_doc_link)s)注册." + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "状态" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "最近更新" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"授权协议的定义和其他信息可以参见 opendefinition.org" + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "组织" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "没有组织" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "可见性" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "公开" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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:43 +msgid "Next: Add Data" +msgstr "下一步:添加数据" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: 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 "joe@example.com" + +#: 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:26 +msgid "Data" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "例如:2011年1月的黄金价格" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "关于数据的有用信息" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "例如:CSV, XML, 或者 JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "该项将自动填充,您可以留空" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "例如:2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "文件大小" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "例如:1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME 类型" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "例如:application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "你确定要删除此资源吗?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "上一步" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "保存并添加另一个" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "浏览" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "更多信息" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "该资源暂时不可使用" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "" + +#: ckan/templates/package/snippets/resource_view.html:75 +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:78 +msgid "Width" +msgstr "宽度" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "高度" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "代码" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "资源预览" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "数据与资源" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "增加数据集" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "数据推送器 (Datapusher) 状态:{status}。" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "Trackback URL" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "显示更多{facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "仅显示热门{facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "没有匹配该搜索的{facet_type}" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "首页" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "语言" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "Go" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "没有指定授权" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "该数据集满足开放知识定义的要求" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "排序" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "过滤结果" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

请重新搜索.

" + +#: ckan/templates/snippets/search_form.html:87 +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] "查找到匹配「{query}」的{number}个数据集" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "未找到匹配「{query}」的数据集" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "找到{number}个数据集" + +#: 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] "查找到匹配「{query}」的{number}个群组" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "未找到匹配「{query}」的群组" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "找到{number}个群组" + +#: 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] "查找到匹配「{query}」的{number}个组织" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "\"{query}\"该查询未发现任何组织" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "找到{number}个组织" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "邮箱" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor} 向数据集 {dataset} 添加了标签 {tag}" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor} 更新了群组 {group}" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}更新了机构{organization}" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}变更了数据集{dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} 更新了数据集{dataset}的资源{resource}" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} 更新了他们的个人资料" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor} 删除了群组{group}" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor} 删除了机构{organization}" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor} 删除了数据集{dataset}" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor}从数据集{dataset}删除了资源{resource}" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor} 开始追随{dataset}" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor}开始关注{group}" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor} 开始追随{user}" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor} 建立了群组{group}" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor} 建立了机构 {organization}" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor} 建立了数据集{dataset}" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor}增加了资源{resource} 到数据集{dataset}" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} 已登录" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor} 从数据集{dataset}删除了标签{tag} " + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "搜索标签" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "" + +#: ckan/templates/user/dashboard.html:19 ckan/templates/user/dashboard.html:37 +msgid "News feed" +msgstr "News feed" + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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 用户了解你是谁以及你是做什么的。" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "变更详情" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "全名" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "例如:Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "例如:joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "关于你自己的一些信息" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "订阅提醒邮件" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "更改密码" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "密码" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "确认密码" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "你确定要删除此用户吗?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "你确定想要重新生成API密钥吗?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "记住API密钥" + +#: ckan/templates/user/edit_user_form.html:59 +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 "你已经以{user}的身份登陆了。" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "登出" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "记住我" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "你已经登陆了" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "创建用户" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "重置您的密码" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "密码重置" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "更改密码" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "它是如何工作的?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "用户尚未创建数据集。" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "您尚未提交个人信息。" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "该用户没有任何记录。" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "这意味着只有您可以看到该项" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "注册时长" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API 密钥" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "重置你的密码" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "搜索用户" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "不允许重定向至其它站点。" diff --git a/ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.mo b/ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.mo new file mode 100644 index 0000000000000000000000000000000000000000..24b3d1f6b54a5008a302f8f07b90c98d9734ac7d GIT binary patch literal 73983 zcmc${37k~bng4x>J1%iw;*x7C0!laFnjm6O1UHrlMos>a6x~Hr(%scoRf9;#G$67I zMnDmiMMY3qTtPt0>f~?M$-Yf8iBxrW#!MD7S;xuy{hjCBTeo^aChxqTH=oG2&$(w` zp7WgNoO|nMCmy;o;D1jX5(H<#OV5_8{J)!r1i{HTN5iY(B*_1Rjh_DskHCHUl@>09 z!*E{)d&2@G>ENH>$KYHz5dIiWguRCb!JuA2a2MQ!d(BlrFcV%wBHx4i;D3_93Nrr= z?nT!I!Hb6m!JQ+5U>)&Jydelu_`h&t5WEUcz9|SUfZu@C@IT>s@VuLY;1)Ov5;b@f zQiR~=P~|;yw3YMY@JQTu!ed}PRQ(EY3H&rX3?4Nm2;L9h508Q$gvY}EQ0ZL(6>l0; zI-h}Oz{T)1_>_PC8ay2Lm!Z=88dUjz3Xg+_jJ0%6glfkS9uLolC&0_#(Qp)0dyj`I z&z;^q1uA^r^FFBXE8$6S15|xqhAP)SsPNy1DtDXbAE3hZ8W#iuU~gCjuYfA=$KgOY z8@?Yt4^M@khib1MdjFq6)$2bz--RmgF(0*ho(knYAF6&eFoYk0gJB9PpNHTe_(ga* z`~$ogUPLEf1n-0^;39Y-{NQ+dej}{LJqxNH&%zq`L+^jY1Pgx|RQjLt?gt@VAMAyy zZ|_^JUW1{^dj(WK4u@*D>*4wER(J}$7pmUNp~k^FcoKXSo&&!Q)h}94uX+Gjgd`ASgp_}7r8394_mavLA9;tR^M0s$p9WR#3!vg%0Z)V1 zLDm10Q04tJboGI1|7}p^_&HQQZ$qW?4ph2_e%yExRJbarbOw6=YvCEVZ-FPk26!s` zjDNlo4#xc?RQ_JJv=a?OXDe-A*FV>ML#O;Gvm zfr|HSsDAzx)VTX2)cEQ1e@w0pglgZrpxQGFRjzyBU2p+Z`@I7{i2UpINn{}IbMLhJ zT?)^{JrXM2N$@P#;QbeR_ft^y`~o}|z6n*{x1rjr7s6RQ6RO=VgDTG`_yIT$D&AE8 zd@0ntTnA5q--K$HB2+$aL-pGqp!)5wPg%H=q1xj@sBo9V{%{ynep8_GzZ*)9%!R7& zLa6lCLbcacsBkYp^~0B-()}is|4*RW?bn`vgJW?Yl`{W3pxUb*y8NKhp9@uw6;S!F zfl6lsRJiS)pNCp!z5^BRPf+9VU8wS$Fv-$C3+nj=Q0+Ycj)ueGRd5+pzF&vR_h(S? zi%{wP7HT{kT5IJv8LHi?pu%4W&x3=Z^0^gW3_k&t&I8bmPpEd=1Xb^6q59=zsPw)B zmEPApzXR2;KZXkbTkrlWJRSG(br!xqRQy3u>3;|+{8do(8s*)$LzQO|+yoopIq>AP z)$0=YKHS5h$~6KW2FF9iy8|8y>%4ykDqPk-{|wZ8TL_iz2G|FF4yyf1Q0@OmsCphf z*~asUQ0`0NmGDZae5OMupS*iH)c9NpmCxh;`73ZY?l<9ea9({74255XhruJKSbH4j zc{)@%s^DGl3aIjJgsSHYQ2q6q_kRe*=$~)*?mbZ9z5><1KY(-L&!NUeErnNpGoadQ4pjTiheyFL zdVU@D#{C0$IQ%74z8z5M{t2pFe}}!{(NnGbr^3Ft&w`3K0;-*Ef=d4rP~p>1=YQ-UhrJ5crg8&tVZXfS>dsyx+D z`CkRquVdgiSPMT0UxFHs--T+=ccA9a`x?Exh3DbE432?!z@y=2sPeu9Ro~a3^806~ z{C)t{?(MK2{I%z)O_tBqP~peG0q{RMzr+KRgEa>E7K3 zsvI@&IQSu``7sJA{wLsta3PeOd(&+Z2me=Jn|3{<)9hU%Bkc>je^^?A^{*Flx%Y46?v zHU4%%jhi1r)w><4zW?R@kG;p_#Mw~e|9q(ayAY~>E`>M1YyI=3Q0YAcmHrb@7LSp_5XLg`)5$$-tzu`gc`5CW?8tCpwc@BDxH2%{WcJ){jP>;*PFcicK^H%D%}E9 zz2-x;$0JbXe;O*i*S-H6a4_!gL8X7hXDr>*;HkLJhw7Irp~~}d_+eNF)!vVLJ_l95 z-B97a43*wDq4N7V3}FdMP8{)1=3fo_TQ`7F79;o^5u7li}I8 zuYl^`Tj3e-<51-&c>m8pm18bc{FU%b_&8KM?1mce{|3*6ht09|rY}_fAAv)Av9Ew* za6g3-b2|J3RJ>#Fv;MdkR^e`dnjg#H1#mZ1I=_G;;ZgI%@~#;dVpy z%P;)%Lzh^(=Rx)N2&j5YhDvWW>O1BOw+!CmC_rS|x5nc$-df3MGC|Hd<4>cY)z+vz!Q0W};h{YcW74HtH@b|%w zz!#wE_YS-QUa;Ec*_}}BbT8C=Tnp7NJE6wO8&KsdL8W`jqvrn+sB(S^YMeX_HBZ+= zjmu5m{Y9wp^MBz$_%GhS*BX7Z?q9;&;W_KjdEj)o8D6tK2>t^99jgC}8!Y{kHrlwZftvTVQ02KFs{fyX8b@D) z>Zd@=wUT?{pz9)=os>!8NNW~lyq#rwYj)i2+KYR{j+ zli?qs@;&-#8>juD!i|JV|5kWDOhJXeA6@|0z)Rs5;4t_ncon>yMpye4;MH&y)Hwb= zRJy-{hrz$VBjDem#?uj7j30n{UJVb2mq3l{AyDyeh8jPgfGXEa?_Tepe-0|WZ$gdR zU&2%1J5cEy^^EaMsP?Ibs^?YkeeedTaeFgVJKh10g7r}KzZMr$=*HHyJx~0 z!neX3;dZEW{|ZOKKHIJQ4R8YPr=WWd&(iZ9#%tgqxF^C*f!z%R~Xaq_?_rPB+v%GgL}yybRyiJ+DlyGUGq8S4*ttOkL-iLhidnK z{(_C)5|sPsFJhB`7sBh{r{Qq;1*qqTe#zv=c~IpZ3N_0OO4d=V<0-LNnG5>$F`d;SF~y~E$I_{Vyl z?O6>~o~xkZjr07Z=UtxDp~Btg`LOqY21>r}geu>6y#HICzx8||7>#Vav0+N zB-Hr(3{?CrP~~_Ps$Orvli|1E;jrla--ZhRN2u_Jf5mu`X9y+Nt6@Jl5}psUo-1G< z+^@oZ@aOPcc;x@JadaV+`%%~z?)BX7{f~Lmp4UK)gK^NM5BuX@0o5-1;C1lF-W`6` z>M<0m+}C>dI4F5|8&rQc!VoTi3b(~Se+8-^z6O=w&;9d5zh?1HfXa6O90ae2N5UEK zXgCK--aG&$uh&A&`@Qfv_#-H}cK_E+4|@cv-M|6!={awF99 zyP(QffQr8gsvWjK)%$ht|5K>&zw!QmflBw(@7XxL3|8U(C{+9cR6Q1XKIr`)fy!r_ z=jZ+N?|S|OUc~cXdiQZG0&e_3rB?+{fc>G`;Y#m+lXu?&6@HRu*7MW;`9i4tSHmoP z&Oblv2Ntit=jEQ)LghQoyKjSvUk5d=rbD&Ea;SFP4i)}ipu+tSsyzP=)qa2W&)@e$ zYp0{&ZTNo>j)c>p>a`Cl{5PQD{}7%8i~jjv;3>F|`jO@LL8x#SK>1(d{cnJm;~wXq z&xgn2Ug4i_^!{5sU-A5+fBr4cAHdUz_cN$+{Ryg^y?$&w0jl2TdiL`i=y^F*dtBw+ zj{KRe6PG}ZyD?Dh)C`sWT&Q|I z;JMOst>+U^`9A{{f2Vi<$g|}6j%V<53x6zBx*vd9crH}=AN2lDdv1dt!T)8beE#Tp z$iJEUc&K#FhAQ{@-hBmB_+j3CljkjP5dL>~_adlp4?@-Vaj5aM1**SaglfmHL52G% zRDKoKFMSRUge9nQpSs`j9{^SEtD(}n6Dr>{RQu+<`_oY6T?m!_TF;l^`MAFU zFNNf!g*os35>!6l_3mH5^KkzTUJOqunLc(sRC#ky=`8Sk1SM-j(FR`^@oc8VW@gv z>;1<;<@+h`U+>)osPHpA=Ru9rWl-hX?A?33`@2x(Y=cVgUC%>*ZTTJTc{;p~=Y62U zO@&G?2R{hsLCLA7pxWj8P~rX?9s&>h53Ao%Q2pBvD&81)7Hop*zr|4PyaOu!SD^Cw zrg#6+vjeK0zxD3FLWS$~8yk-&LzQEYci-+=fEVDu94fz^up0gpDt_r>vn$MdV+|0i$|&wmFsf2w|G@rFU=H^#ef z_3pH115`Qk-hDq*{H0L&Z}EJ^^NXI}f=c&ap~|=4`~Shad;Q+xp8)mz9M2l>Kg_#t z^6pPSr8fm053}$>*a}a8&q9^wHK_J^6RN-Wd;de_VomhRE;IQ&nCir?4!*Le4pp4UK)ryIO`JUkKi$D#VM z(Q__T`>cjaZwtHt?tsew2T=OY`~K6)c{QxUoq`(Y_d(Tn1603lgQvhZq0;*|?{0$% z_pWE}KU%)0LHYNEn%9@Y5RQgQugP-}JO%eAsCL>5Pwz$h!|QRs`zPzCk$<-Sxg8F` zKL;g;*1?P5KB#nm<$3sDtbSEc>&`@|aXc4lKD`9hKR@#Bzd_|6{?+`ihsx(JsC*vw z?pHkDg39mszghhTcwPsU?wwHW-wIW~<^K65I05(T@Jx8}e_6hRpyv1Op7%pNe+er7 zx4gRqKaBf*?^-@X;pMpRgzA@-@N~EqYFxYw)em2R8aLmA%ID`$;g9`qdwwzuai0t2 ze+_iw4641xL#1~QRQ(o1<+IiMzXAK>{t*n}A%C~$=X+iSRiBSRjlZ0CKL$UD`&D>0 z{1MbR{F8ToAn4`B?T4VAPxPDx2jgA?PlaEHinkvspCfwpa{YE5RJ?1v`%^H){ZH@% zaJ}aqsC2#$&w#&%C&44$*UN=J6P|;6sCR$D^V3l6`xsPvJp)`xwtwsQLE-)Oz_dsBniKVeWqL zO59^$Ke!0$`HTMf54`(bsC3Rf(!z~~a!>Q_jZo=-)w_QO)&Czj%EI3a^}NM%4OINk zL)GKgQ2F=iZ5-n{9V*; z7#lakq0*fMH7*{7Zk#~PqnF?z@cU5X<;ULt7v6oyvDUA>p`M=x)vxD3r8fjB{~MwD z|5H%qZS?L|sBlZY`!T5T@C?-W-vzIN-+@a1gyXDyr$ePz1?4}`^Kz(l^eU))#(1Wn z%2Dv{MV^m&?(qB~RJiX$rTez`f5-bD{{CK0-kjw*9IC#Pq2kSf%J&h^XW_?j?}L)7 zXB^+l*-x9`CAhc3+u$$YPWa&ydIekH@8Ej4=EPo39t}Oo(yxc=zgbZI{4A7wdeggq z1=VjyVce5kyvTDLlz)qNKkVImq00X=D7pPtsBw7dDZSi!^hv1xc>pTC$Dz{sB3ulM zQ1S0R)ylaPsyw?qe+X~E{bwk7eA8)`ULDjpD?s(*XS{ncJR0{(D1BoClw8;WmG76J z5HVK;{2y&p$ww^KVe$k37rI8z^@b)booyuZEguH$#of zMNsS2KB)ES7f|K?yZ1l;Z1W!l<)4O%zX&S+SD@D*yFR?fwE(xnF@Q&rhJr^Kah$ThIUW{3{H?$=Q~s zI{wXtRWt8yN#|zFstT$mXBrCW+{DS5bVFUfDoha~@|%`wXi4LjpOS59s0*j0rlrHe zlysO+HKxOcbW?p{N|*SVe3(n$-IB?r>%!?%(oJ0wBLG=8r0e3SQ8qnBjmlPz+9w|l z?UNrCz$vMGI4Mm=b?Jt5AzfD^&z5{TAI`|Ogsaod_K%fmT%aUrgViY zCC#S`7Opv!&ri?hh(0JBkt(EkkPime3<`!ehqVnnys9eQ*j$)VHEhBZ%28)QT<%R- z=Nu3YO@&i(>B(1B_377=Yv`Y^8a92(jIb$NQ2t>)+nBz3=)lylp#z(TC6m3UkV{n! z8`qE~)3A`6K_6sk=3JOhr*gGZYNGI&x~roY*Rf&O6StybXp?S z6uM`$eWrn)aw%k*>Pf_h4U-wwr!q}Z`f+N*>l!mnL&_1ZB~dCcFkP3SCX5ej>8K6z z141&Mo^GI-^I>DEDOH~iv$^_IQ|8`OA(L$i8`F)G(z(3LC>+`xXLKD2W^-M0a+$c? zd^3~9q?Uqf$^S|Eqg}q8(w~+|Pj{m@S;W5iusN5RmMWwZwTiM-=QR;2D$GGOm@9sL zF5A)^W}29Cjjk#F;il@gD(aM6x-rYNjLH^H&Se`zmv7#Wo4C0<_v;O=TQjbUm<+CE z87i)Ee0r2ugCQT*+8A&>m&(-CU zDM*s!nZvc|I(T?Sc~mNO4uC6`*V#)+iLgU%H&Q|MBw@filpgiN6! zofu?JJ|H4gp@N=;*~vKYx%Q^vV;BwjLaM1Y9p1oXYHntNB9@xMX{lT$+rltxNKrw; zGj!^ay9F1kORdHiW>jQ)?UZa5>EU~!A(JmC*LzGG99- zjXY-r)FTX2;WQS85D8v8HLPvP7wA@MLI9-WRFfpl!;-Vu8X;95-khz^_RtOuJR+G? zMU~Y+Q_`tABpqcP1ZUfV@tMC{;iN@)iT_Jr>A)LslJzbc=_khK$o3)F-a?ksKYaHqFn-JCP_ABj=O}rxvNwOel?y zh7f_A>t@*1gyVAATB#n>GleOL)Li;prLD;{k`mXqWa^w`pad$d<_f6>38{kC zw0MF<$)soli5$ct&0L+GTum!iPs-kd_A|LKof`8;LyIjr5(kZ`sWiXjewZ@JJ_&&( zC8H&u(x1OZ@$qD;4xgkp{DdSwap0se(Yfv<4MAM0CB-A5nt}sbOB;Ox3uBo8XQbo0nrdTFt z*{DBUl+-k|TD4D?9$;A3slgKY`Q~IynqDAD-cUE4k>H**XQ!*&2!0waU6`SYXD3h2 z)Mk7gG>coBGCZ-mx-peWOPFL%Ni` zc514rhH*x@eY3_sD*Mn$xp3ex8`~4m2@a4zfydpX;=B_{jr0P`$wH~z2S_p!Zrvms zKXOUizG>Ll#NL8&TU!VlGR%{*5MYDSoXQp4WOIX3y{-*i*iS<=eNRd<%KCdm98}}} z`gE$HFokLEl(+VtHM(l5*)p{)4JlMI*UEV(%))-@n);e>tfYcdXU9Y`ZoC%gJaLeX zwx;-P<~T_e*F5EoBs0oyrKcc#s-3c?aacV$n?*uYOG~WsTj);1v}%}^7>$BpxQ){h zeh2O}9qmQZwQgCVrPbZ#y+hb9k}}vG()s@Mdlt1r8*H}@tH1KKxlFT*uEw?9cjdNC zn(^e!J=EydTW+q2O$4EqwCNfl>d?Gfo}Jkv-g(CZu!fR1WD434B$5tImt?E?@&^A zrS1v)-8g>im~s6nE5<37UE)gwy53~!Y$=^2g_vQt@cYf&_?EFr?AAftG&_qwV| z)}rc3JeoSh{aeir=E|yJGYg6{D^jLs)@GY$%tF8p8?D7Wj~1tj$(N~1i%uWlT7P=B zsc%7&#c4f+kfJAhi;8|OAD}^>vVYw^0j2w%$USq=tYElpWb4vs6?Ks-+CEzoPRpQU zp_fkzRc|-+-O{h_aMnNy*Q}*n(bfAA!y7PQ;BfP!Nwz4cY1RcV)04WoKbVGilaQSB!wu=d>IZ4b^Px#T#HR9KFPVDIu=gVqIf zqc<^<5xCA@2BoNfoJWO&2u>WhCmQGagIO2_3TH-tP1IDIr6D!5d1}46d|>V4X7bO0 zf-t}0rq;%fF6btua?*O7ltAH3Dl!qDa?Z}6#0qDlrVbmQX~1%OGZ+QLs$~BnO_0Qr z?y(z_5>b*)How7ec38Jc$hyCx`kPBl#9vL}bux^GV{2<$a;!e`sVHru)Oju6Zabj> zOh*YnH!t;vv~N|i(#9E9Q&C3#tgGKMhU>TgL3mrc{|6B&Ds=GWiW=;Hkdw2VxN-j8 z)plXWCN#6F!!a!C7Y+$W$SyC*%{n2$q2^ELG!_`pW~Me>Tnk5MD{MlqaycX`kA!)T z-g8kjW)8CaNt5P5M$!CcP9J1w>+FLJ9QD`%g8PPKxzjr6JJc< zeQUZY%|tY7gI0{G=@|!%Kr6Uqm&JZ^Mrr4#vff~NK(d<|nW^rq#hPEXrb;PJb}8M> zz_2MPwL*$Rrl}=OSLgFtcBHO6)YWF0Tf|)5eK!Qd+1ayJ>E95W9)C$s_6V=jVUTx3 zhZB=qn#${!J0Y`0t%X9~o0au58%EoZU^tt2SqvnhSevd%VPE69Y?sNgldpKr5>uFh630F66vjRFs!#H7w|KiEDSk92O!;xE%r%{w%qc6hyl)aG-l7Aq?pwVk zaP}LiMD~YoYYAcJF+vJ;{8%n^_AO}{Cb5)UPse6+Gc2r=7d<>n$_K_P9gRBZ6i_SJ z06T>6b_p};xP~>|-kGm`wemH#7&z_Inc(U&lP9y~Kz!RaNrQt;6{9Gb?Evl0ut`cF zQFQb~j4KV;Ix*X^NAue%w*Zxg>44Ck0BCREH&4FFY^;Y_w|B_92H+@3MMRR(JZY&g zq=QjV=ad|=V9L_YNJ>{cs;-sQuOR@Ej|`6{hL}4QRhgJ~X4miI7Uw?He1fLC`~lrv zSDkHYp!qF+vzz733{8zxBFUT_%^r;)-)lTE6OL2to2vc!De9$*nU`vJt(B!Njr!gY zJEOBw{}_J;b1uBKxgndX!=a-CcOt3XwzCN*HaxUk1FJA=eq$;(Rm=IcDAoLvI8BnP zrIEqsjfwmrnPSK_Mzp0xae10+49EF1+}Pt5o$un(>9v|xCP8Q3uIiJo>g+!a%he=p zeP@K79;;ez!X=`xQ)cr`)6!3wx=>q}E>E=yv2IisBtnMSNp~@%6#SkT!NRIc&FH%^2^prc%Op4w(U{e_B|54b=859Nd6S0#M z^Olp%R5;#Ar|-ec>DV=ln&wj(3X7ms2oW(<@Dbb%J zb!(!+fvH5-1fn=t>$CwKp072TQyF#yhKEXjoh|t=88d*_>e@mRIt+U%{$RDyu+qVV zKRgRYr1DcHWmCDj@?T-UKK+_n8v9#YYH!v5Ko9eJ%7#V%I63eB7?E)cBNM_Nl-=9_ znZ^z;q;W#+!<>~bhfRlj06KgtXseq>9Alev)({mrUb+xkO**G*aq`0CzcL)pB9gYO zuDge4xpc15<>sKI=nN^5c{Ye{khL`B(pYSDT97bd#3^F2D5RU*LPgH$CIzJIBfF7J z131}mw=kkpmdFO&H!?ZoKW^X5{F1wc?jiJ5ews|gCP{kC?&T6?qXQCS7t28n@h z_m?6@`WuC|2VSnm&SYK+6x%TQ+m`DQS=R<;#6ww_>`iD@&fHT)9dhhxS&D-Z*mB(B z9sLoHfnY=~HJLIpSu?dNzSIu4K3*r2aJp$)hAT)i`2@Ps;r>BXmlt#MvGqwILT_hr ze~(RU7%gC(jg!2&C|ycE=2C~EYNJ2V=X4Z?|7>yS)81!hT0v(?fpfL;%7Kjy!c1b?x_{%Mm;!>8QaT})@_;{`!IErc^ss-!KK@r4$)IBq8JU9}UGDZ=#*QW=MD=C!98*%YNes z#E#@T8K9+2Xk(AdtrU=i^T9}3mEK~NbV{4Xjx%>A6wtsHZCjYDW=_@uJ*&!fgKjL; zH*u<>l{RkqiT)m*MRW_E|8pj5EHVyrV%q%^j^|E<{!)t~ky{#&Ip!2ec}g(SSvEZw z!)%Vrg32CBDQ0=9rvcr_jr8rSy)VmIHxCdhdJc%qbp-cMI7VYm&hWNO9k&i{Xlllg z>^$6X)L%3-7bx+}F+g%u-G-sIb~J+qO|%YH{SVhc?F-Xx6|9QZw)nP(*37VCd+Anl zWTa^V-7I(RglW{6Tf>nQSf=~(6_M~}j;2tPf>G(LlyP)@sb+lecoZ6wyXxuI$6!=0 z)jY-iwXPh6;(}XdVE1p>Z#W|?9NgbK)u#T>uB(v6@HV`j9;=}{EmCS&4bDj{iazo3 zD6m9zoip~Uu|WCYdUpvoD+LH4P;VoZ`ne6N=3a1pS_gfA?X|Ypx_8Q0PUWRM%fu=D zNeN4bN~blGP(WCSNJ}y>KP0#wRnGl0@YW_B)k&bUA0v0ta{oyG8p2%?&N}v{9n0UQZYxQKd2I=63Yl zSpeKMV5f;V37|lU^nJA0M>}#Y&}<5smsB33aOb;);S5xlPM4n$_D+3@#E=?Y_i}Vs z*B$neFE#~vyN=h%@bsF_sd&L@`!GvF$0n|7#C8HTT33kNsP=aM>ip6FB?H$Dks9Gm zV(wVPO>(U*SRQnHJ6FK6;!WSE9@25SAISC#TLa=)8o)tCi8d8+v^?<&>H3_Gb!-*F z?XSr3$o9rMFpVAP$(RJ@G0;Otbofcrbrz;9*?TWDb-nN*5ol_#o+2BCJewrysJMW-f7 zVT?klNo&{m>Br7eS=WQgNxAzTC~cC8dG1zped>Q0^ZI(UbYFg(` zj2}EmNqRTJPGZn)iAHlVtuAqRXtu`W<|3S#ZKx}s@o6AbKCV0h9PI_oP&d|x4H@c6 zH;f+1bkLKrn1E2I_wV#Cl|*CC(s{ zbbYvI6$v_a3*6I*W7Ab>ZmVifk*lRa7{krjJkcw1ncA=)I%p=-KN(wlZ3H|a^D`PJ zaTRe$SUoWqJtNVeGfYy*(~AuLs@Umta_56FDb`i}PFu6D|%`~<& z$|~DkKxby<4v&`1dny8!ZBH&8s)J*Y_p)s09QPs)+Kk5d!M?_lY<-+-&nf;NrXOhISMrRxd3#@mINg_Qc#>OUJOPYd|-NZc(!goBAbfgN3!9*q^;I zdDx~~if6P{M@p-(EV~oEh<5?msPN`NqK%S5MJXlSJp}8qJ)8aUhpm+=uj|%m%=FZ8 z{?Mk}1+Ju#Z$iIkz19^MO37Hjpx8J-s}GA+dF5e%*6PwPr#I{%{2oN(r{Ln*5u)o1 z0%n>sI=QM)`^u#_R~hL#N0XBi9BrapCRS^nI@LNZpx<{>X<3@Mme!JCuYrNIOG}V) z!JphPLGM7_l}Czh%twFP6gGcveUUD}-W=6T^)sTIP-eiT=5C{+RHCVfmSdY9jY+rPahoDH!E7Idyh1#=RYta! zc%>|Rc~L;|;!tsSmVL5ZNg0drKR%WktLxiJuDi30NJ0f&L&ZMYEk@zOeq%>Wy19Qh z!N)lbh3zpK4EdpbV7Sv}UTasR?)4itVnh`Ch7rNooLe`7Yco#yod+br+sA%H;!8k8%%0-KOB7uYAgMQ++JaOnwB_0=9V|hC_w#-h{ zjK?~~NLJ!3ppljnkE-Yo8Jw8DvD0lQnbXRqY;2AmcU_^!nUOH?HxuH`1xKaBY~}Gr zr(AY21}|+M+=!AOaAv9s;Z+kx2}P%~!`*38c~kmTSb&Ku|p;^b#@aBRo+>R#$}sz^c#3e*peZNCBsJB>~UN%rF|m$ zoguzX@o?nrJs!K4NTFL4+)hBMZQ{_~?L&F)3fPQ_iw3IjNw?eMM}BmwvpmOvqP>6( z!eE@v`|V#Xx&E(s_u(GL6EvEQvZ9nHIu|SAmqS<~q-(jZ&2T`$-}%g>25#KCi?{Y~ z*iW}f$A1(F;(W0nxjXe-u+QY!WLzfgOxDjX&%M7Hn^9?LoW6Hqipclv64Ynm4wZNT zv58y9E;Hf;w{Qk~3sQ~fk*3*sEY)-lFezP_t{25oZY2r(WC)R_`=cut?s`RRkfhn! ziS`h{>Gke$9dEibuqg+FO(%^Qee4~Mc+T3Ism$U#RXW|ji95!4vCg8|Mt`^kx~wL9 ze=ROpzHec8Pt#oy{_-YAwhjD^n&AV>uDSAFI3b|W(z1rdK;g+v@ zb`I3j`u}>ej3S)*h5p&33t;_ zV*jqoVEm}O&ct5PVY0k4VuiOL~Ds zXA<67n66U^Gi>S;781Pd1Kr4H0h0jdg*>eGsvep&Z!funiHrLOq=(>!0^GAW-^!J7y{JPP8B2$ ztcy4)*O^5m&${3CjkkGdNW56_^@~Y_+Q38dH z0Aj)nY3^|!deYy`u=nHK5}UYa*GILg*CoYxLr{K^u4_1%mRy9yBi%(P$98Wgbq+GU z@+6HMm2G~idX!HtbbhRbfwS<*fxC>Qe`NBGU(t8oDXc=l1nsV65tq@%*OMI=BbnCG zGq>2fO}iAV8%A_0rw_%{AeIz;XGQld$*bw^grRGoXfF`I18kW^2}C`?DYiXGG?oj~ zZD~2<&A8WV+4(z_c<8{)Ft;=IN;OjwiLQ&L`nCdVf$K|6QQaG0HoM!oy5O3NRv@Xg zgi=fBh(H?!CW2E#{6xfVkBKdwJN67gh&jc@sMk3!aWK-lds)hkaz=J9S4L-EPGn<( zjBS$Llv8Tl3)A}VVn<(o@F&?>sr4!DJ=pES%0rWE-K2(rgR2K|deZG4Tv9~+W9N+S zqJcl7u|ptsUs7U~Z}}}7nHF`>gK0qzoWf~-O2Cp+iTuXR?HM`Pn&tBG?H10=)Xk#d zql>N4sgT94*ocLF{aus3%uiWzUBBr~I8!|-qpV35(>0d62f~%ZXv3;DSAvW# z5ZFqF;ZFmqe|ZW;2g#ONw2auXv+EaftFv24jWYka6yH0TC8rmo8ALLKW0JDZ&QzTL z`V(T;tQs-s$^}z{>@=BKPlLPh5`EK(hU@NPF5#MZH&L(Ly0>Oqng{5*ksJNG+{k>F zLB6HnW_one?p``-DlkJ>s@&YyLgh`5D!uZTVU+(W!d55_Jw_=f%4%URL-nE!c9(&= z6uu&O#Wp7Dv}E%UnleNaP}(_}$l3ja#C^PqhL&1HfE1zY#e{;Z3L z5nia*eKX4E&V}r;y=U(xS2Qpq`>h2?c7ro2`j$sYBIWXApfFrPbXBHq2pm3jAra|K z%2>6tS$&VoHT{$f@A7bGV}?bDN3`aJUqhRvpL3Cyjj~yl8qrjn+<>P_aSY!hZmM)j z%x$&^s|4e7oo-XJ2Ir(wZ!S6^!Y-+r)0DKmZSHKpJ|%ZqAjR%OXArKs65&zHOv+?k zuVS)s&)k)41YJE_UR`Zt(~oJGclNOsaqZ&fw5}AnPw+(F$J2Ly0{303U;+(>p@nE8 z80uEy&+D>aKXL$}}9QJ9-#?c={8!L9Bhx0D0v714PQP7^Woa$WkKnq)9+9W<=n zVzupZ;;FuU<)nqAM6{W9R>VXgzX|Fo2XAYX+M`Gnry44xx7ldQ=par!G>u&O;yi(S= zYVP5CHh>Ei6{<`1-P3{=lmiFpsTD==JG_89c6|lR8jTBg2 z1@Ec3w0>$kM>@>!NYU)t=I{Mn1}vvi^fWEKZ16Si(&%m>IMB3q0c@9mg~}>yPSSE8 zTYyq>%D2;lTiv}gk8mL73x-u8a$_Lk8&URw#&+Hyj^k{72 zv>@_}jTSzJKd^`%-x3){?Xf-^8o#2T%}?C7oxf$k`rO&Ns}B_UPseCQtmcL#cU&*# z3#jfJcXzj7H5%rwDJc^^zLD_O5^-?xb&siQd|#h`wEX|?b9XOh-0EJI3b_$Sd7L^c zHCPKx(j`L$DwOW>H?mEWD7MG$S|p36xhRuXb9?XSRwuFf$IMDj#nA1VczdYtpt{{S zy8=7c#bV)a9y9lx0mhl>&4w8$L2hW8&Qq}nI>{qh@LnO}D*^7{<2@tT!s@ovaq3>@ zs>ol9aHa61C7dLTr>!elPjMr07R5>`Hoj6lMfF8IKqyRYdha(cW25FrdHL$GOr4`7 z#pyvuifqsaDjLF=Lb(z}ozY!Iz4nr9mV*fHOMMU_BauN*+x2-#^#k^J7geCgW=V!T zP*HriWE~Hx2+0Tskv{ed8~al*nIB9QqqaGyz-aPQCu*c&z_!WQU3a?adJx0Vg-h1& zz-4g34{E4d$aJnzw_d%?>|o1taP8r8U|+z!n)e*tiLeJTWL@YM8*T?^V;v!Nl1WaM z9;8%qTGBx@Nf&La$9d3I?>cZ$YrKPKke)vqeUNo+aoP@7Gvcw!-#QZMc?3sM7(x>x zDvdpg?qFVy zT>>IN$GianR{`r$9(6&8?w=1T?w4M zP4P{F@O5h~659K_Yv$4~oVDO%?xy<32&XFyp5;p$?{Vw+V;BXpf&16p!}*wA($qih z>V7yTZe!;ct>VrhlZzdxJEynhSmb8AZ)1+Aan0ohBgO|Su5y|d=V{-7vT!q#0?)2# zxd&>2XplG?zw8^j(dE9XVTZHveJ=mSH3ncmUPNq2Pdqm_tACA4C(plJyy07c^H2wS{A(EHrZTdV;<$M`(9o47@N@I^9lc`ya_M&4V8pj z#>%n*EAf=?os>VTXAzv2T1`&A_a-~~t<5;}24ZlBj)G)h_9tfLlM%fn8a>6rr^5Rcv zs}Su^jHW+W%Ltid{f>6~L*u6^-w{6q^A zfx8*J*V2U9mM|4DwamDb+@X>yu|D^&qb2`@?Wenmq|Ye3JG)w}$lKjC32)P}lm?3C z57v0TVOz^_E#IIbNR_VBP(@BUtHNqFZ3SH&(Fj%((x&D2#m;N=uPpIauC8cYRW;gs z_z(Z{D<&LNanp>Wbp&~J^riOZY_klr-q#=e>i15f1SjfSM}LW8z@rg3 zxVE2H(9|R+y&=z+?XtY|#m=0vy6I}Kh0V1#x1+=c5w(`&C`jb4NPLpO$cM$54pGDT2n3f^^n}WX^Km zDDr}|yD*j2baza&3ulEYzlEwW@$7Q7i0-144Gk*3edE-%WnJ{m8yn%>hWE`Ax97nG zbxX*52Xrb?&n0c)4SKC5?%iv*k|dJ!ZS01Z{pL_PA$QFVK_8!IU@T_HNf?IxbX>>H z2bRPtuT4~;E2wi^_2am@Es9`DhBvP$c=RI2x%bRT zLPy_~Por^oY4Y_sI?z;^oXsMjtFLC45eX`dd^-iB+ zAANR;7_!QJ!g>ZnsV-X+_@8}=);s&wu=jM|9rlwth$eSn-_#>ZZdd1VaSfhrk=yFv zPS@9jg9lxFsr%#NL4z-@9&~y2pv#>g84==YQ?^j|~WKAI;mwIs3Sp61gGq zWeU3@*f_(~b3MJ0_crzQHgXsoj^drwkn8xoi|x`&y!oxLyn(4*fqV3x*AErJ-FdP# zdEi}K%5*V#!K*3T$Pm-WcNK;LfAbt%e zK8gxh-uWs%Ki1~H>qEJmhs`GxF!yU5k*~kgz;4HUsLE6{iD;U2Zc;sVS7`{%_kk+3 zh@>MQIGc~V46Kb^Su(rZlr=$%KYx-GaohgL_+Z;>xnxVklEv=;1T(qJmc^dn4J!%7 zx%|~?_rYojaxX!`nf{Mi-9#^-MeF5(gNPJaY7U%qGL#!M@khX-vL{0%n~GQA6Iz&nbX1K8;k4sJZ+W@jRQAEWS3H?a!Y#~$+fOJticd!KlnN zxMz(DW=<`8-Xzbdv!(_!8`E*f(eiAZH9F7-uK3sj0v7RwXk_oC7uq{}Yfsgkzj?b2 zSNU!C9wPS?%KENT`p&aUu8E)rOwC8^DNMy!=#+8tS(p5i4@sOBIhZWoqcpr;hH_zx zUfgsEPsTyiNp4}RaM{CI@j<^H#x6Z%RyASz#mcEG$nNJE+|-{b3*$tmj&%v5yNlff zYMwPNm{}+fq6r#Ag;^7VnKNeH5zM@I*2nb*qc+;rH`G;oL-3GLU(*aPuK94yph<&z z-;&l3P*ji3*JtXguW6~zS5L?e39lPH{Dzx9GJM2{Tdo^FzW2DX6ROSD%%@sMU>F#J z#&_|c>OogjUpzP*Jb1{Zmt2H<5CN-s@yLCmx>LA89}Wj!He}Eh7Y*Wny>G^9RL$)* zcQujUBgKHtUCC59x@CY;zL)^^ZJ;6Hy;CMmxGi>9PrzC*B)k?=p$?GxO-N<<`GEdm zKj{v6e!FV=^yxM3*da5SyJ+Zr1G7^nHw~1LAwO{N;K7$)JkX^$uz&Ay4f?oA^++ru zd{U%|3(Gk3R}H?BPm=1-s|NMf7i-Gx#&6U1zSeHuSL+Vl5T~XO-cJvbg3cXhbCnTy+`?Pz0>A1hVUsJE{fA7SCB(cTK{V4p+_-b zbCE_r7#x-s?kg_X5xmv9q;30_j@i3P8z0-h=asiwm$omMAA1&C_u|vBwzW8KXK~Kz zwl%wo%a@c^?&_GoENELvXdl_a6}LW8T)VlndQS26c^&H)l$I^uzi&+(CeENDX6$?5 z$d*CSr~G@t#hov-Z+y16;F*rqPrlVUN00Wu_Ilfj&HGW(${cmIpQ zrL9lKA@=XuT6*ELrL_yqhr|=xQYrtuZCzTmqqy<${kvNC?_NXJ`(Io6o4xC_8Fk;k zt-oZQHh?ZTbD}t@D1f z_t7|FaoP6$d!Dj74Q$)Fxqa{U;%Apw2gJ=nI}oV2Y>_3=_VRsgudXO9SYCW6%BUhA zmr62|FqsR3Dyru06Um$_fh6SZv^NOpsA<88GADXY6 zXFrOtYTK~^f3@GXMa3nnpikH*^S7o&Ruo$oyB`ZKE^RGtkf`Z2qG;|O ze>a#h+xGmED#i9?q+_i>DZ=)}Pcfow=`5{zskjYI;3dMv#VL>9J-get?oi-W&$n-D zO;ni!%GhEX9Y#ez8>}8&HJ|lbt^ZWBnt= z9S@WRvliz#9gQLrtSrQ)Tlqw+=aDE2mXk>Po^>71uFwzscC;?*nEin1eZ`$m(UvF! z5++Mlp^g-H&3&tNc5%V|`*%OfAEk9qNe8V=x?ge0yyEg_i}$^NK4`g_K2hAev-srG z%FV4n99i|J15{T0+SW)|QTg_557~2hx*Vxnzv9}(#ci)hSwRt8+Nz){UN7!OX3gHe zcXsKitx`0crqaJO_eB&#DvSPAY<-ZRmYy}Hioa|-I%Z;YstCwvYxd&u`^bY>#chuu zV$p+2J09#<^-!!~_|iGKFZFfL6Qvi|5Z;VEF#K);%+s_lHK{V56E&XJQpk;^NzNv93M+3ibrwm-7fTGfV_34gB( z?t6d=k%QHYKROQnydZ`dAc9I`V1}iCg1q0gTEBe1z zMHbvI4aAp@BsY~FSb#L8@gjw639}f{vw!#QIC(^}!l1@1e6_gkQ9qq*f=883*42hj z>6sNMIlchTvjJ44-QH^`uPt&bY1sdFziunB5GEV7ZS6jEw`g3HyTuAg+2}O(9L41e zXta*jM~l05?ce)S$D^C+9G0W@Eic5W5wf&wS^Mid)c6K=DNcp?$-Wc;Cn>S6uUWan6h6()RLl_RBWJNFlIQt+YUL(e^U@ zVR`E_DP)WCSP{rc)gA+}6K|jYOmXM)afrb7*y?7VGV*}wb#;&#n;YYZY-^OqK^vMf91 zzGmapbT3Ush@n_p!Ua5Xswkj~qfo3c{q%F9u_Gk$0 zTQ-{FR9dmUv`pG2VjGu@2<#dSNG2;LnOSFS5AUK#LTY2M6f35x1Cp*^9 z^P0!nR@nz!(4h3v9{xgBk$hm;b!>RN`1s<$YzQ9lp123MRYtZbih?;R#R zy~CO$3g#wZfGMiDXuTh)$(Y{DLM81S0irxEh74ZLo@G7(X|dAds^4cq6xn0RF@is<$u?&R=5!5Evx1rOWirQ388DJvseL&8qKd)u*LY4J%} z-l&MiO;WrD@m3*l(!G;b?jI*Y*@ht&v?R8f<9gUEJ@`~<+fC;EqsZ( zR?Y&&6Zkz!uBLECWgqSz$q{*LE!rgwC$qG3c015+ij0kiH8N_Br;FQO?IsYbE;G4p z#YRSfzDiokglxgZeVD_R zxV;gv_O|U_qF!JXDL0b|maR{E@zJsFMa@KmX)~r+lX~L=rCC? zZDaAuwq4uU86yLVYgZNbz0Aih?Q0u+J`| zhugO?b}Fbvw9?2P*fY}yDjX(l7$d%nPCfA2f>ZOfz;1nlaU+3j4I8%>;?f^s+XJ#<|F9#V~xRx+3J^Tn}?k?4Va$T)x?sMEKDzu zVz+!rynA3zQr!2jHkolo&T5Q}*fNUiMO%c{1~z&z7_oYrPu%_;>z8vHV1^4bV)!ko zvptv|5}>V=URe;>83f}NEsO*>pJK)5K2M0r6yq4?B^=7tgax6rby|UiLiPtA-R355 zgt&J~6q^$^^k+ise|=l~<~i2ldSLpiv=k@v2oXhd@0b(3wBl8(ZeT^Qb1m-(EGyJS zEJG;wruGIMdmfkR4C%6ZW!ushXiORQ+&0CnemmxOtiG@Pb?N(E=1Ry~+rIe`YFb>j zQF@B0t;~WT7L7saIZPW%1KA1}EDx;hC3D-KS?Xc+i5%`M&Tj&IFk8~?_2gKw58Agp zUVLqJ`-aW#wdJzE^-KHSg;GwO%28as*-tlWq2G}yt=}t!JMKZYR&-zc(@&HhUoLws zd(D*#)W8bNl#}sjpqY;L?_nBJKR4Vw%9^+Li1bevC?0|Sp%-e&dFr23XlC}jtN83L ziwYgVB6iL-c55!W<$#(ty z)x;;d5BM%cTcCTinf& z%EInLlyYI-ObXtbYa`(*WJqZ z=_ffxMn@GRy#ANT~WH?JZ&W0{hKEx*O=3*9^AioFXtJ>2eIYqDWj1|+%fz0 z;=H9uL#sP|Y|UimHjP+I)Hj1UqFu2mbJjpU825FyJ?i5G6>5Ldq1F1a){5s+zudJX zieLF)!K$*N>Fh!kkNGJ&{esx6&_m|B zP5kIyuoH zh_3GXpLGq}pV;7)zkQqAw?1NPITzmCM;K>SX{ecBWQ}vGDFz_-+pm6^HE`0%xo%)4 zH#35Jhh0}gA25A(=Q<4ZLAwJrvZ8AOxjF{cWZJ0~Uw;H$*;I0;Om%X5oz%mQ)@3ik zQ0X#T`BHKFbH&}8+V}2qsx4HfCjm1}225d9@@<}nQ#n8Js#R+XorWMF3svJos zm+<(!y~ggAjT&=MKgwzi8EEIZuhk=Ij79xfg>LTQ8=Sp6_47-D2f9}Ko?YQ!DOo1G zh*n&+Eht6%|B8jkf_U>x;sT(LYi8Zf3zS7F_e%HffQt>RYi+Cd(7MHTw3r- z(DCdeG(J}9)r>OCjAruZutVD2+}Ao<*Hb1NeI^Fz1)aRFS?}h{qtCZLye#N&7-$Qc zZ$Z1MfX1!cAKh#O;%kG-8>3g*t=kxwecTqu?qnqU)mh6Wx);v3A|j%b&%0CI*c(Wa zty--^xwX&OMp35JSZO3dqCX+>m4Q(Dxb9N+|Fe36Tpmh{&)>_ zhSfc}H8p#P2{eWU7iT(OPH-RoE`NBJyZZzEm(P3tvDDDp2(9-SwRV2!eVJ-Hee_@; z(3u^NuHjz}o*40}y*pGzcwzsFFCkhqO&C@!2{c>6*z+)wyu-{Z-hnctV^b437)Kt# z+{OaLYRA1V2@XA(zuWJ}y(0k>5Q}SzBjcz%8Jr>`CBa!#Y&1Z$XP`6UByL%Hw^`Z)Q%IP7JD7FxFRGfQ$e(|BOO(k8>HJ%z z3JVoWoY!7u<$q{H`{q5x`xl|n2eEf~lSKh56xfd0yGwhQ$+s0#P3zu%?n~kQ@ur;u zZ{RY0+=)B&L511N2E12ApJN8^A~6$<+E}qaPM#&{R)XKiRQ|qd+tYhAc>FVcl#sz` zM_56pA64~7KDxct%IUIOi{|Y1zpF|?Fgp43(~6MX@^e3~8hd&%Q+98C!h3bB+)0Pq zgM@6uu-Ljdl5BQsA3d2nZQGyavX13h+P>8Pf~u8-i&wL?x7qrztVz#p;=n!ZTiutN z&Wpmn6Z_IdiF;GDSMt6wzYw|w%M1wC! zQCuE(mL;#g*ZH2i$lwoI%&XH03-c?w5zEffR$#w7k@xJ!F<>KM zNI=h7ea-NK#Idk8)B}6J0rkOB)g0jd@v`myMunYo%U;AgA7~=(*qa{G62EJ!6u5ZG z5LK3gSOr5;nX+UiUat0Ztai67IIB^h1>SI?*%o^-(zqOxc!Q;4Qrc!Z&Vd!@88g9{ ziOW_S+eWc9=U!@3WE6L9Yg@TPN?+0j9*GF#vD-Y@>mE+mmw>e9F*PDlN`JB*RiwL8 zM{z7cEbq(jm+gG_GHs=uiO{#4yEdTZ+y5|Yz-{R0w^wOn{{jlv2yMTPpmr-)xwOS4 zuX5WeZYW=7y2jfu%8l#i-~o&6!$fD1>ecAzB5wE|yVg3~j#y-2!QkL62ls98z9hoP zFFmw^8@2IbhFGwRn0_Ujzf^~h?r_hoXZLO3qL@sDycb}{cGfJV6}&_93ePBJa{V&X zfG(-1MDA{ZO;_JI@f1?4C9O7=Y{%>^SUDw863yTzmubMJ6Em&cWw`|pYaiqtPJ+o{ z9cHtwY{Q8ku<_+6CVs$ZU<^i`=O#;q!&~a3Exg7)n|IT!N(*1b5NuPSB9gbyZsit> zuDO>-aK-FzDa=#Fl-rzxy zH0kNihL5{okw3DEf1~Ap^Y>Nl2Co&cIPZBn5tW5MbOn0dy7m_~wk_SmMFHPx8y_n@ zw=eAUW@ax*6F>S#{rAr|MRnsycPvWxeO{=2OU& z0K!RGSQK0Oa#MpGOhO84I96z|7@XHXBFQTrUE(PNnIH`Wv;@8vL?60J@_%$9^^{Xv zj{_(aDAZ++kp)r|G#ST|Tq^kNj@c9z{m-}aOaBE9V&&qk4aWgnOo<^5q8Qpc>_^8d zfY_N>pfAPDLyak8aY8OyZtlU)7v&TG3z;n})evjc)ZPzXsI_(ExlutZf}3pjf3X3oLe@ zzJ7*TrCA7U#>pp}pw(%&9_s1IeQK9L%<++`gHKL_6Z;NM-?3w%ZaDQTuqReZPTv7u z{(}Bn!G}e!nr*pb5k$4i?WR*;a%F}5nBD#sH@hd?fG51fSz)a|QXW+E%Y%C3|S@3frFk&*h8>zRI7djr$oM zVXxpX4Ob5H6O+XkJ11A4Oza&LtO#|r=eIa(;7)91jUOsGt((-Dc_LrlC<_MN@SfZ# z@x)~l(%)DMH}Mbq<`8l}2f_A3@|GRo&VxiAMSb^MicUqdirkduLcq~UoE`F}))De9 zXj`nJ#iyUM2uIbuhbH)%h{q6u!u|izm(V+KiGUje(n2r)XR5Kf3TwyM$x8@%o0^MC z=NB&-GS94Tc{HP%6T8ZTzWcD^O!%b#43TM%Ov++uOAv-SinIyUKvCmCk)`n;XhtY% zr{MU>J}H}Qk(1@l(d)w*_0 zmRxyDDZ02g+@{tQKjnOz~YXoI;}FMW3V-DMUkkE)x=VD!it0dl4ma;N}~K z`p?WCgB;;g$UFkt0LwO%MQkDD*VKhHh2_a(ee)nae)04~B z`0=L8V9zk*R;$Fp5-}iXo;kA(0F;+(y(^SMRjw4GSDFp_&MGj*7=b;34f(->7f23n z%u4d)i$oKDf9$w0Smn`NAPVGQIhkeC)Cq|+0f^)E7cgTWLF6Y*pV&EXiM%cps}2$! zno8{ebf9-CxJWvI?7h6MtR+v>pvtalL!=$c(lgdfLF;@5u9_a4UfZ6M&*#sO6KC_}`d3sBVP*Ny!3qT;AS{?i@kvll z;{r4SVR7G;3=T(uJb0)y(b;nhe!25jYC$02=VAbJ+K`XFKP+)A9D?1lrOC2TebU-Euv`>TI@P5Vl z{Sf$+Hij_u{RioptF3rEcukVY5 zx|`vbMH72jJ~?L{-~bNgWbP)AJ8i=do{HJ^NQOqas&ARjLe=w$|MF^1uuv8fmmnRyGd! z`HLHrPeSSP?Zx@+qs8}+Cy}+OahUd&<)?S|<`=iT{jrn4#!X;mCo32Jwhj$^<9(U& zP5+Q6dp>A;u>f#z7oFqAd-5Ef5codSaslM+}pAOz-ayd#?It4Q0C1Es;q-Q>|; zbTM?1fS4XXxTJEi^#wfT;yKYB&z5#TS;}+4dOVk{tu~8KhaOBhOS9r2%R{4yZknZu zTQx(fD_?4~Zd|{fwL!=+OTBjjMLYU z)yUwr&t;&6OYI!v+3W7e0>;8p!mMb?=l&QJbUg*7tV?Eg^spbRtI2E+*$&Ej-F0Ay z&f+@oQ5X%WU5%@uYDwAzp;MxJF(@xLEVS~`MA07v6wN4(w^CxfOsyG>Noak4{nJ6vJ*0?R_O5hDF8vCULz~yn@}O!Sj%spZg@WO+SM3Z=#>a@4GYcC zNkKgsHK?($Q76Oovyt#m7gY#_LzxD0wH3|^&Z48X&Z`!urnN>nTb*VCQUPIo>rim< zC|;es{V~6%Da&11Q~;T))3IFTUtQXV$Gq^GlhY?l^y*b`D}y-?$1J0;L} z;QZY{z`xekr1)_gwicv!B)O4|k0yUt2FZ{G)ea}k`?##*pb;b0E~`VlCHm$ zA+oe<D8US{&aFOTR~3UwM5k&=L-bBH#=OZ1zK$Vmy~MlGk!KxTV;2-qnAiSiep zUOAcFh$UkLvc(5G?tQgG{l716q^ak{7JcF-T<=zo>IAWF+dDAMil;wCnCT#EOMtoh zb6VcKE1Vb_7Tx*ojA^E!DOXehI0#@b5Tg*)JWQNm8uly%uqNdKCh1jw$8?mmq|s}4 zSbV!&BxnR)N@vayMgv-#**d&JkPJvZ0!p_pf+Bn)2Wp9U zg-G8=Omw&%WKXk99(UAEfABsQhFOMp!fn(n<{uDYLWZo2@dhFiuUSoB0R3b@PKl6# z{6|C@SZpB;RLlObc2P4v%jT4(!LKwadIkY8_k_KV9MP}^)=FGku=0pkz+n&SXG(_M z4Kly@9+3*thzud(mP047nwEPG5lgr{xP$KCih=p;$MkwfD|8*ke$lq7G-G4kZHGP& zK=IK2hwqUcWN$qOICF8FS?d^xtz||W(n{UBg^2;Pi+<5oBAOTOw`STF_$VWM*=mAvGr$CG;CZKmM7)7&te%29CZ(e7PAI_CAxfaE?sXl_aYc z(CCH?EOjH``}H9%LZNu@=s9Re>i`3@b2RF4C&bB7oXL#CYUqf+vX}HmZ!(=FT;RH z0~QvtlY3?D56_%I*rYDm^Sy{!g0-`F^&N=$$>#m#*B6{dnBF?dpH=T?`wlS0=u_Ci8Z`x7TEIx8l0N)C(4W76|8IXC3$V>VX;18WEn|qbacabmgM-P19bU%{@*{k1U`k#d+_aS$ z??)!{BP1huyZ1AKH7Kk6LHfje@P1^fz$%N=2((3(4_*yqhffjO?ZqCi4d5sOAnoLI z@7*{Xp}k0feY830V?X15S%0?8kcb)?(u@0*s6|O8Vm}&d3-2z1WhUfs$V(Lr5A3eo z0`rzWjJaO7IL$dv11tz?wRW5n0EFMT;}4bdPQTHrx~MU%-ldK?p2N*y&1^P7bcfry zSSo`C+8fr+1-=T96rSk(ny)0t=vT6I%~z&j@Fb36IT}S`B!NS$nbp_}FYvKGy6On_ zls8GH!h$S_iSTj=VYGB2Cu0<9Y`mRjbi-nvsilq3ur>W1mW(xB>#aj&Lj4w0PP6v> zyXsFj8NW=C*&kA|S1wazo)a5t-o{Odlt5;?xNq!nV4F0yd}~ zqRE@82jQ`YjkQ`gp3+k=ZWat}8Uq5m@0A3nGgw_I*jyes1?K>**g3|FLu$eHaKP{6 JpQpGl@PE)*v9tgH literal 0 HcmV?d00001 diff --git a/ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.po b/ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.po new file mode 100644 index 00000000000..f4492eec4b8 --- /dev/null +++ b/ckan/i18n/zh_Hant_TW/LC_MESSAGES/ckan.po @@ -0,0 +1,5063 @@ +# Translations template for ckan. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the ckan project. +# FIRST AUTHOR , 2020. +# +# Translators: +# Adrià Mercader , 2020 +# Cheng-Jen Lee , 2022 +# Monica Mu, 2022 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: ckan 2.9.0b0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-07-21 11:43+0200\n" +"PO-Revision-Date: 2020-07-09 15:07+0000\n" +"Last-Translator: Monica Mu, 2022\n" +"Language-Team: Chinese (Taiwan) (https://www.transifex.com/okfn/teams/11162/zh_TW/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.7.0\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ckanext/audioview/plugin.py:25 ckanext/audioview/plugin.py:30 +msgid "Audio" +msgstr "音訊" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "Audio url" +msgstr "音訊網址" + +#: ckanext/audioview/theme/templates/audio_form.html:3 +msgid "eg. http://example.com/audio.mp3 (if blank uses resource url)" +msgstr "例如:http://example.com/audio.mp3(若保持空白則使用資源的網址)" + +#: ckanext/audioview/theme/templates/audio_view.html:5 +#, python-format +msgid "" +"Your browser does not support the audio element. But don't " +"worry, you can download it." +msgstr "" +"您的瀏覽器不支援 音訊 元素。但別擔心,您還是可以 下載它 ." + +#: ckan/controllers/package.py:612 ckan/controllers/package.py:1079 +#: ckan/controllers/package.py:1099 ckan/controllers/package.py:1165 +#: ckan/controllers/package.py:1348 ckan/controllers/package.py:1426 +#: ckan/controllers/package.py:1457 ckan/controllers/package.py:1565 +#: ckan/controllers/package.py:1616 ckan/views/dataset.py:1307 +#: ckan/views/dataset.py:1327 ckan/views/resource.py:96 +#: ckan/views/resource.py:170 ckan/views/resource.py:402 +#: ckan/views/resource.py:479 ckan/views/resource.py:496 +#: ckan/views/resource.py:545 ckan/views/resource.py:590 +#: ckan/views/resource.py:643 ckan/views/resource.py:842 +#: ckan/views/resource.py:920 ckanext/datapusher/blueprint.py:45 +#: ckanext/datastore/blueprint.py:115 ckanext/resourceproxy/blueprint.py:37 +msgid "Resource not found" +msgstr "資源不存在" + +#: ckan/controllers/api.py:63 ckan/controllers/group.py:157 +#: ckan/controllers/home.py:27 ckan/controllers/package.py:144 +#: ckan/controllers/package.py:315 ckan/controllers/user.py:58 +#: ckan/controllers/user.py:85 ckan/controllers/user.py:116 +#: ckan/controllers/user.py:597 ckan/controllers/user.py:668 +#: ckan/views/dashboard.py:21 ckan/views/dashboard.py:28 +#: ckan/views/dataset.py:215 ckan/views/group.py:146 ckan/views/user.py:62 +#: ckan/views/user.py:87 ckan/views/user.py:110 ckan/views/user.py:569 +#: ckanext/datapusher/blueprint.py:56 +msgid "Not authorized to see this page" +msgstr "沒有權限瀏覽此頁面" + +#: ckanext/datapusher/helpers.py:21 +msgid "Complete" +msgstr "完成" + +#: ckanext/datapusher/helpers.py:22 +msgid "Pending" +msgstr "等待中" + +#: ckanext/datapusher/helpers.py:23 +msgid "Submitting" +msgstr "上傳中" + +#: ckan/controllers/package.py:684 ckan/views/resource.py:231 +#: ckanext/datapusher/helpers.py:24 +msgid "Error" +msgstr "錯誤" + +#: ckanext/datapusher/helpers.py:29 +msgid "Not Uploaded Yet" +msgstr "尚未上傳" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:12 +#: ckanext/datapusher/templates/datapusher/resource_data.html:12 +msgid "Upload to DataStore" +msgstr "上傳至 DataStore" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:19 +#: ckanext/datapusher/templates/datapusher/resource_data.html:19 +msgid "Upload error:" +msgstr "上傳錯誤:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:27 +#: ckanext/datapusher/templates/datapusher/resource_data.html:25 +#: ckanext/datapusher/templates/datapusher/resource_data.html:27 +msgid "Error:" +msgstr "錯誤:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:36 +#: ckanext/datapusher/templates/datapusher/resource_data.html:36 +msgid "Error traceback:" +msgstr "錯誤追蹤:" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:48 +#: ckanext/datapusher/templates/datapusher/resource_data.html:48 +msgid "Status" +msgstr "狀態" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:52 +#: ckanext/datapusher/templates/datapusher/resource_data.html:52 +msgid "Last updated" +msgstr "最後更新" + +#: ckan/templates/user/snippets/api_token_list.html:32 +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:56 +#: ckanext/datapusher/templates/datapusher/resource_data.html:56 +msgid "Never" +msgstr "從未" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:62 +#: ckanext/datapusher/templates/datapusher/resource_data.html:62 +msgid "Upload Log" +msgstr "上傳紀錄" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:76 +#: ckanext/datapusher/templates/datapusher/resource_data.html:76 +msgid "Details" +msgstr "細節" + +#: ckanext/datapusher/templates-bs2/datapusher/resource_data.html:83 +#: ckanext/datapusher/templates/datapusher/resource_data.html:83 +msgid "End of log" +msgstr "紀錄尾端" + +#: ckanext/datapusher/templates-bs2/package/resource_edit_base.html:5 +#: ckanext/datapusher/templates/package/resource_edit_base.html:5 +msgid "DataStore" +msgstr "DataStore" + +#: ckanext/datastore/blueprint.py:89 +msgid "DataStore resource not found" +msgstr "資料儲存之資源不存在" + +#: ckanext/datastore/blueprint.py:151 +msgid "" +"Data Dictionary saved. Any type overrides will take effect when the resource" +" is next uploaded to DataStore" +msgstr "已儲存資料字典,下次將資源上載到DataStore時,任何類型覆蓋都將生效" + +#: ckanext/datastore/backend/postgres.py:1067 +msgid "The data was invalid: {}" +msgstr "資料無效:{}" + +#: ckanext/datastore/logic/action.py:277 ckanext/datastore/logic/action.py:309 +#: ckanext/datastore/logic/action.py:373 ckanext/datastore/logic/action.py:509 +msgid "Resource \"{0}\" was not found." +msgstr "資源 \"{0}\" 不存在。" + +#: ckanext/datastore/logic/auth.py:18 +msgid "User {0} not authorized to update resource {1}" +msgstr "使用者{0}沒有權限更新資源{1}" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:19 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:21 +msgid "CKAN Data API" +msgstr "CKAN資料API" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:23 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:25 +msgid "Access resource data via a web API with powerful query support" +msgstr "透過一擁有強大查詢功能支援的網路API來存取資源之資料" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:24 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:26 +msgid "" +"Further information in the main CKAN Data API and DataStore documentation.

" +msgstr " 進一步的資訊位於 CKAN Data API 及 DataStore 文件.

" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:33 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:35 +msgid "Endpoints" +msgstr "終端點" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:37 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:39 +msgid "" +"The Data API can be accessed via the following actions of the CKAN action " +"API." +msgstr "可使用下列之CKAN action API所提供的功能來存取資料API。" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:42 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:44 +msgid "Create" +msgstr "建立" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:46 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:48 +msgid "Update / Insert" +msgstr "更新 / 插入" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:50 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:52 +msgid "Query" +msgstr "查詢" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:54 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:56 +msgid "Query (via SQL)" +msgstr "查詢 (透過SQL)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:66 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:68 +msgid "Querying" +msgstr "查詢" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:70 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:72 +msgid "Query example (first 5 results)" +msgstr "查詢之範例 (前5個結果)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:75 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:77 +msgid "Query example (results containing 'jones')" +msgstr "查詢之範例 (包含字串 'jones' 的結果)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:80 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:82 +msgid "Query example (via SQL statement)" +msgstr "查詢之範例 (透過SQL指令敘述)" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:91 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:93 +msgid "Example: Javascript" +msgstr "範例:Javascript" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:95 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:97 +msgid "A simple ajax (JSONP) request to the data API using jQuery." +msgstr "使用jQuery對資料API發出一個簡單的ajax(JSONP)請求。" + +#: ckanext/datastore/templates-bs2/ajax_snippets/api_info.html:116 +#: ckanext/datastore/templates/ajax_snippets/api_info.html:118 +msgid "Example: Python" +msgstr "範例:Python" + +#: ckan/templates/group/member_new.html:73 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:32 +#: ckanext/datastore/templates/datastore/dictionary.html:18 +msgid "Save" +msgstr "儲存" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:15 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:3 +msgid "Field {num}." +msgstr "欄位 {num}." + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:17 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:12 +msgid "Type Override" +msgstr "覆蓋類型" + +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:24 +#: ckanext/datastore/templates-bs2/package/resource_read.html:20 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:20 +#: ckanext/datastore/templates/package/resource_read.html:21 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:18 +msgid "Label" +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:34 +#: ckan/templates/package/snippets/view_form.html:9 +#: ckanext/datastore/templates-bs2/datastore/dictionary.html:27 +#: ckanext/datastore/templates-bs2/package/resource_read.html:21 +#: ckanext/datastore/templates/datastore/snippets/dictionary_form.html:24 +#: ckanext/datastore/templates/package/resource_read.html:22 +msgid "Description" +msgstr "說明" + +#: ckanext/datastore/templates-bs2/package/resource_edit_base.html:6 +#: ckanext/datastore/templates-bs2/package/resource_read.html:14 +#: ckanext/datastore/templates/package/resource_edit_base.html:6 +#: ckanext/datastore/templates/package/resource_read.html:14 +msgid "Data Dictionary" +msgstr "資料字典" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:18 +#: ckanext/datastore/templates/package/resource_read.html:19 +#: ckanext/datatablesview/templates/datatables/datatables_form.html:17 +msgid "Column" +msgstr "欄位" + +#: ckanext/datastore/templates-bs2/package/resource_read.html:19 +#: ckanext/datastore/templates/package/resource_read.html:20 +msgid "Type" +msgstr "型式" + +#: ckan/public/base/javascript/modules/activity-stream.js:97 +#: ckan/public/base/javascript/modules/activity-stream.min.js:2 +#: ckan/public/base/javascript/modules/popover-context.js:62 +#: ckan/public/base/javascript/modules/popover-context.min.js:2 +#: ckan/templates/tests/mock_json_resource_preview_template.html:7 +#: ckan/templates/tests/mock_resource_preview_template.html:7 +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:7 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:7 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v18_snippet_api/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.js:21 +#: ckanext/example_theme_docs/v19_01_error/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v19_02_error_handling/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v20_pubsub/fanstatic/example_theme_popover.min.js:1 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.js:8 +#: ckanext/example_theme_docs/v21_custom_jquery_plugin/fanstatic/example_theme_popover.min.js:1 +#: ckanext/reclineview/theme/templates/recline_view.html:15 +#: ckanext/textview/theme/templates/text_view.html:9 +msgid "Loading..." +msgstr "讀取中..." + +#: ckanext/datastore/templates-bs2/package/snippets/data_api_button.html:9 +#: ckanext/datastore/templates/package/snippets/data_api_button.html:9 +msgid "Data API" +msgstr "資料API" + +#: ckanext/datatablesview/plugin.py:54 ckanext/reclineview/plugin.py:142 +msgid "Table" +msgstr "表格" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:6 +msgid "Responsive display" +msgstr "響應式顯示" + +#: ckanext/datatablesview/templates/datatables/datatables_form.html:12 +msgid "Show Columns" +msgstr "顯示欄位" + +#: ckanext/datatablesview/templates/datatables/datatables_view.html:30 +msgid "Hide/Unhide Columns" +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 "測試設定" + +#: ckan/templates/group/read.html:13 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/index.html:20 ckan/templates/group/read.html:14 +#: ckan/templates/organization/bulk_process.html:27 +#: ckan/templates/organization/index.html:20 +#: 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:15 +#: ckan/templates/organization/bulk_process.html:28 +#: ckan/templates/organization/index.html:20 +#: 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/read.html:16 +#: ckan/templates/organization/bulk_process.html:29 +#: ckan/templates/organization/read.html:22 +#: ckan/templates/package/search.html:32 +#: ckan/templates/package/snippets/resource_form.html:53 +#: ckan/templates/snippets/sort_by.html:17 +#: ckanext/example_idatasetform/templates/package/search.html:15 +msgid "Last Modified" +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 "客製化欄位(遞減排序)" + +#: ckan/templates/group/read.html:17 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 "熱門的" + +#: 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_itranslation/templates/home/index.html:4 +msgid "This is an untranslated string" +msgstr "此為未被翻譯的字串" + +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:20 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:19 +msgid "This group has no description" +msgstr "此群組沒有說明" + +#: ckan/templates/group/snippets/group_item.html:32 +#: ckan/templates/organization/snippets/organization_item.html:31 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:23 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:22 +msgid "{num} Dataset" +msgid_plural "{num} Datasets" +msgstr[0] "{num}個資料集" + +#: ckan/templates/group/snippets/group_item.html:34 +#: ckan/templates/organization/snippets/organization_item.html:33 +#: ckanext/example_theme_docs/v10_custom_snippet/templates/snippets/example_theme_most_popular_groups.html:25 +#: ckanext/example_theme_docs/v11_HTML_and_CSS/templates/snippets/example_theme_most_popular_groups.html:24 +msgid "0 Datasets" +msgstr "0資料集" + +#: ckanext/example_theme_docs/v12_extra_public_dir/templates/home/snippets/promoted.html:4 +msgid "CKAN's data previewing tool has many powerful features" +msgstr "CKAN 的資料預覽工具提供許多強大功能" + +#: ckan/templates/group/followers.html:3 ckan/templates/group/followers.html:6 +#: ckan/templates/group/snippets/info.html:34 +#: ckan/templates/package/followers.html:3 +#: ckan/templates/package/followers.html:6 +#: ckan/templates/package/snippets/info.html:24 +#: ckan/templates/snippets/context/group.html:13 +#: ckan/templates/snippets/context/user.html:15 +#: ckan/templates/snippets/organization.html:57 +#: ckan/templates/user/followers.html:3 ckan/templates/user/followers.html:7 +#: ckan/templates/user/read_base.html:52 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:12 +msgid "Followers" +msgstr "追蹤者" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +#: ckan/templates/package/edit_base.html:18 +#: ckan/templates/package/resources.html:5 +#: ckan/templates/package/snippets/resources.html:21 +#: ckan/templates/snippets/context/dataset.html:13 +#: ckanext/example_theme_docs/v18_snippet_api/templates/ajax_snippets/example_theme_popover.html:15 +msgid "Resources" +msgstr "資源" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:6 +msgid "Second" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:7 +msgid "Minute" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:8 +msgid "Hour" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:9 +msgid "Day" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:15 +msgid "Expires in" +msgstr "" + +#: ckanext/expire_api_token/templates/user/api_tokens.html:16 +msgid "Units" +msgstr "" + +#: ckanext/expire_api_token/templates/user/snippets/api_token_list.html:5 +msgid "Expires at" +msgstr "" + +#: ckan/public/base/javascript/modules/image-upload.js:87 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +#: ckan/templates/macros/form.html:434 ckanext/imageview/plugin.py:27 +#: ckanext/imageview/plugin.py:32 +msgid "Image" +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 "例如:http://example.com/image.jpg(若保持空白則使用資源的網址)" + +#: ckanext/reclineview/plugin.py:113 +msgid "Data Explorer" +msgstr "資料瀏覽器" + +#: ckanext/reclineview/plugin.py:185 +#: ckanext/reclineview/theme/public/recline_view.js:204 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Graph" +msgstr "圖表" + +#: ckanext/reclineview/plugin.py:245 +#: ckanext/reclineview/theme/public/recline_view.js:211 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Map" +msgstr "地圖" + +#: ckanext/reclineview/theme/public/recline_view.js:29 +#: ckanext/reclineview/theme/public/recline_view.min.js:1 +msgid "error loading view" +msgstr "讀取資料檢視發生錯誤" + +#: ckanext/reclineview/theme/public/recline_view.js:79 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "Could not load view" +msgstr "無法載入檢視器" + +#: ckanext/reclineview/theme/public/recline_view.js:81 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataStore returned an error" +msgstr "DataStore 錯誤" + +#: ckanext/reclineview/theme/public/recline_view.js:83 +#: ckanext/reclineview/theme/public/recline_view.min.js:5 +msgid "DataProxy returned an error" +msgstr "DataProxy 錯誤" + +#: ckanext/reclineview/theme/public/recline_view.js:197 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Grid" +msgstr "網格" + +#: ckan/templates/package/snippets/view_form_filters.html:46 +#: ckanext/reclineview/theme/public/recline_view.js:219 +#: ckanext/reclineview/theme/public/recline_view.min.js:14 +msgid "Filters" +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 "例如:0" + +#: 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 "例如:100" + +#: 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 "群組(軸 1)" + +#: ckanext/reclineview/theme/templates/recline_graph_form.html:8 +msgid "Series (Axis 2)" +msgstr "數列(軸 2)" + +#: 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 "GeoJSON 欄位" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:10 +msgid "Auto zoom to features" +msgstr "自動縮放至圖徵 (features)" + +#: ckanext/reclineview/theme/templates/recline_map_form.html:11 +msgid "Cluster markers" +msgstr "將附近的圖徵 (features) 標記為叢集" + +#: ckanext/resourceproxy/blueprint.py:42 +msgid "Invalid URL." +msgstr "無效的網址" + +#: ckanext/stats/templates/ckanext/stats/index.html:11 +#: ckanext/stats/templates/ckanext/stats/index.html:107 +msgid "Top Rated Datasets" +msgstr "評分最高的資料集" + +#: ckanext/stats/templates/ckanext/stats/index.html:17 +msgid "Average rating" +msgstr "平均評分" + +#: ckanext/stats/templates/ckanext/stats/index.html:18 +msgid "Number of ratings" +msgstr "參與評分的人數" + +#: ckanext/stats/templates/ckanext/stats/index.html:32 +msgid "No ratings" +msgstr "無人參與評分" + +#: ckanext/stats/templates/ckanext/stats/index.html:37 +#: ckanext/stats/templates/ckanext/stats/index.html:109 +msgid "Largest Groups" +msgstr "擁有最多資料集的的群組" + +#: ckan/logic/converters.py:174 ckan/logic/validators.py:268 +#: ckanext/stats/templates/ckanext/stats/index.html:42 +msgid "Group" +msgstr "群組" + +#: ckanext/stats/templates/ckanext/stats/index.html:43 +msgid "Number of datasets" +msgstr "資料集數目" + +#: ckanext/stats/templates/ckanext/stats/index.html:56 +msgid "No groups" +msgstr "沒有群組" + +#: ckanext/stats/templates/ckanext/stats/index.html:61 +#: ckanext/stats/templates/ckanext/stats/index.html:110 +msgid "Top Tags" +msgstr "最熱門的標籤" + +#: ckanext/stats/templates/ckanext/stats/index.html:65 +msgid "Tag Name" +msgstr "標籤名稱" + +#: ckanext/stats/templates/ckanext/stats/index.html:66 +#: ckanext/stats/templates/ckanext/stats/index.html:86 +msgid "Number of Datasets" +msgstr "資料集數量" + +#: ckanext/stats/templates/ckanext/stats/index.html:81 +#: ckanext/stats/templates/ckanext/stats/index.html:111 +msgid "Users Creating Most Datasets" +msgstr "建立最多資料集的使用者" + +#: ckan/logic/converters.py:124 ckan/logic/validators.py:238 +#: ckan/logic/validators.py:255 ckan/logic/validators.py:733 +#: ckan/templates/group/members.html:14 +#: ckan/templates/organization/members.html:19 +#: ckan/templates/package/collaborators/collaborators.html:19 +#: ckanext/stats/templates/ckanext/stats/index.html:85 +msgid "User" +msgstr "使用者" + +#: ckanext/stats/templates/ckanext/stats/index.html:104 +msgid "Statistics Menu" +msgstr "統計目錄" + +#: ckanext/stats/templates/ckanext/stats/index.html:108 +msgid "Most Edited Datasets" +msgstr "最多編輯次數的資料集" + +#: ckanext/textview/plugin.py:69 ckanext/textview/plugin.py:71 +msgid "Text" +msgstr "文字檔案" + +#: ckanext/textview/theme/public/text_view.js:70 +#: ckanext/textview/theme/public/text_view.min.js:3 +msgid "An error occured during AJAX request. Could not load view." +msgstr "" + +#: ckanext/videoview/plugin.py:25 ckanext/videoview/plugin.py:31 +msgid "Video" +msgstr "影片" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "Video url" +msgstr "影片網址" + +#: ckanext/videoview/theme/templates/video_form.html:3 +msgid "eg. http://example.com/video.mpeg (if blank uses resource url)" +msgstr "例如:http://example.com/video.mpeg(若保持空白則使用資源的網址)" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "Poster url" +msgstr "預覽圖網址" + +#: ckanext/videoview/theme/templates/video_form.html:4 +msgid "eg. http://example.com/poster.jpg" +msgstr "例如:http://example.com/poster.jpg" + +#: ckanext/videoview/theme/templates/video_view.html:7 +#, python-format +msgid "" +"Sorry, your browser doesn't support embedded videos, but don't worry, you " +"can download it and watch it " +"with your favorite video player!" +msgstr "" + +#: ckanext/webpageview/plugin.py:22 ckanext/webpageview/plugin.py:27 +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 "例如: http://example.com(若保持空白則使用資源的網址)" + +#: ckan/templates/dataviewer/snippets/data_preview.html:23 +#: ckan/templates/package/snippets/resource_view.html:62 +#: ckanext/webpageview/theme/templates/webpage_view.html:2 +msgid "Your browser does not support iframes." +msgstr "你的瀏覽器不支援此頁框" + +#: ckan/authz.py:223 +#, python-format +msgid "Authorization function not found: %s" +msgstr "授權功能未找到:%s" + +#: ckan/authz.py:242 ckan/templates/header.html:11 +msgid "Admin" +msgstr "管理者" + +#: ckan/authz.py:246 +msgid "Editor" +msgstr "編輯" + +#: ckan/authz.py:250 +msgid "Member" +msgstr "成員" + +#: ckan/controllers/admin.py:33 ckan/views/admin.py:76 +msgid "Need to be system administrator to administer" +msgstr "需要系統管理員來管理" + +#: ckan/controllers/admin.py:49 ckan/templates/admin/config.html:14 +msgid "Site Title" +msgstr "網站標題" + +#: ckan/controllers/admin.py:50 ckan/templates/admin/config.html:16 +msgid "Style" +msgstr "樣式" + +#: ckan/controllers/admin.py:51 ckan/templates/admin/config.html:18 +msgid "Site Tag Line" +msgstr "網站簡述" + +#: ckan/controllers/admin.py:52 +msgid "Site Tag Logo" +msgstr "網站 LOGO" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +#: ckan/templates/group/about.html:3 ckan/templates/group/read_base.html:19 +#: ckan/templates/header.html:92 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:14 +msgid "About" +msgstr "關於" + +#: ckan/controllers/admin.py:54 ckan/templates/admin/config.html:25 +msgid "About page text" +msgstr "關於頁面文字" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Intro Text" +msgstr "簡介文字" + +#: ckan/controllers/admin.py:55 ckan/templates/admin/config.html:27 +msgid "Text on home page" +msgstr "首頁的文字" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Custom CSS" +msgstr "客製化CSS" + +#: ckan/controllers/admin.py:56 ckan/templates/admin/config.html:29 +msgid "Customisable css inserted into the page header" +msgstr "在頁首可自行定義的CSS" + +#: ckan/controllers/admin.py:57 ckan/templates/admin/config.html:31 +msgid "Homepage" +msgstr "首頁" + +#: ckan/controllers/admin.py:160 +#, python-format +msgid "" +"Cannot purge package %s as associated revision %s includes non-deleted " +"packages %s" +msgstr "無法清除 Package %s 相關的修訂版本 %s 包含未刪除的 Packages %s" + +#: ckan/controllers/admin.py:182 +#, python-format +msgid "Problem purging revision %s: %s" +msgstr "程式淨化版本%s: %s" + +#: ckan/controllers/admin.py:184 +msgid "Purge complete" +msgstr "清除完成" + +#: ckan/controllers/admin.py:186 ckan/views/admin.py:216 +msgid "Action not implemented." +msgstr "操作未執行" + +#: ckan/controllers/api.py:124 ckan/controllers/api.py:215 +#: ckan/views/api.py:115 ckan/views/api.py:304 +msgid "Access denied" +msgstr "拒絕存取" + +#: ckan/controllers/api.py:130 ckan/controllers/api.py:224 +#: ckan/logic/action/create.py:973 ckan/logic/converters.py:124 +#: ckan/logic/converters.py:149 ckan/logic/converters.py:174 +#: ckan/logic/validators.py:173 ckan/logic/validators.py:194 +#: ckan/logic/validators.py:215 ckan/logic/validators.py:224 +#: ckan/logic/validators.py:238 ckan/logic/validators.py:255 +#: ckan/logic/validators.py:268 ckan/logic/validators.py:292 +#: ckan/logic/validators.py:733 ckan/views/api.py:122 ckan/views/api.py:313 +msgid "Not found" +msgstr "找不到資料" + +#: ckan/controllers/api.py:136 ckan/views/api.py:129 +msgid "Bad request" +msgstr "錯誤請求" + +#: ckan/controllers/api.py:164 +#, python-format +msgid "Action name not known: %s" +msgstr "未知的指令名稱:%s" + +#: ckan/controllers/api.py:185 ckan/views/api.py:273 +#, python-format +msgid "JSON Error: %s" +msgstr "錯誤的JSON:%s" + +#: ckan/controllers/api.py:191 ckan/views/api.py:279 +#, python-format +msgid "Bad request data: %s" +msgstr "錯誤請求的資料:%s" + +#: ckan/controllers/feed.py:236 ckan/controllers/group.py:129 +#: ckan/controllers/group.py:231 ckan/controllers/group.py:406 +#: ckan/controllers/group.py:516 ckan/controllers/group.py:549 +#: ckan/controllers/group.py:579 ckan/controllers/group.py:590 +#: ckan/controllers/group.py:644 ckan/controllers/group.py:670 +#: ckan/controllers/group.py:726 ckan/controllers/group.py:758 +#: ckan/controllers/group.py:791 ckan/controllers/group.py:848 +#: ckan/controllers/group.py:947 ckan/controllers/package.py:1267 +#: ckan/controllers/package.py:1282 ckan/logic/action/create.py:1468 +#: ckan/views/dataset.py:1027 ckan/views/dataset.py:1044 +#: ckan/views/feed.py:206 ckan/views/group.py:396 ckan/views/group.py:427 +#: ckan/views/group.py:469 ckan/views/group.py:536 ckan/views/group.py:590 +#: ckan/views/group.py:720 ckan/views/group.py:760 ckan/views/group.py:857 +#: ckan/views/group.py:929 ckan/views/group.py:950 ckan/views/group.py:969 +#: ckan/views/group.py:1029 ckan/views/group.py:1099 +msgid "Group not found" +msgstr "群組不存在" + +#: ckan/controllers/feed.py:247 ckan/logic/action/create.py:1468 +#: ckan/views/feed.py:223 +msgid "Organization not found" +msgstr "組織不存在" + +#: ckan/controllers/group.py:131 ckan/controllers/group.py:593 +msgid "Incorrect group type" +msgstr "錯誤的群組類型" + +#: ckan/controllers/group.py:317 ckan/controllers/home.py:61 +#: ckan/controllers/package.py:256 ckan/lib/helpers.py:1249 +#: ckan/templates/header.html:90 +#: ckan/templates/organization/base_form_page.html:4 +#: 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:16 ckan/views/dataset.py:284 +#: ckan/views/group.py:304 ckan/views/home.py:49 +msgid "Organizations" +msgstr "組織" + +#: ckan/controllers/group.py:318 ckan/controllers/home.py:62 +#: ckan/controllers/package.py:257 ckan/lib/helpers.py:1250 +#: ckan/templates/group/base_form_page.html:4 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/header.html:91 ckan/templates/package/group_list.html:5 +#: ckan/templates/package/read_base.html:22 +#: ckan/tests/config/test_middleware.py:120 ckan/views/dataset.py:285 +#: ckan/views/group.py:305 ckan/views/home.py:50 +msgid "Groups" +msgstr "群組" + +#: ckan/controllers/group.py:319 ckan/controllers/home.py:63 +#: ckan/controllers/package.py:258 ckan/lib/helpers.py:1251 +#: ckan/logic/__init__.py:114 +#: 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 ckan/views/dataset.py:286 +#: ckan/views/group.py:306 ckan/views/home.py:51 +msgid "Tags" +msgstr "標籤" + +#: ckan/controllers/group.py:320 ckan/controllers/home.py:64 +#: ckan/controllers/package.py:259 ckan/lib/helpers.py:1252 +#: ckan/views/dataset.py:287 ckan/views/group.py:307 ckan/views/home.py:52 +msgid "Formats" +msgstr "格式" + +#: ckan/controllers/group.py:321 ckan/controllers/home.py:65 +#: ckan/controllers/package.py:260 ckan/lib/helpers.py:1253 +#: ckan/views/dataset.py:288 ckan/views/group.py:308 ckan/views/home.py:53 +msgid "Licenses" +msgstr "授權" + +#: ckan/controllers/group.py:408 ckan/controllers/group.py:525 +#: ckan/controllers/package.py:345 ckan/controllers/package.py:575 +#: ckan/controllers/package.py:792 ckan/controllers/package.py:1411 +#: ckan/controllers/package.py:1445 ckan/views/dataset.py:396 +#: ckan/views/dataset.py:797 ckan/views/group.py:763 +#: ckan/views/resource.py:347 ckan/views/resource.py:527 +#: ckan/views/resource.py:627 +#, python-format +msgid "User %r not authorized to edit %s" +msgstr "使用者 %r 無權修改 %s" + +#: ckan/controllers/group.py:455 ckan/views/group.py:811 +msgid "Not authorized to perform bulk update" +msgstr "未被授權批次更新" + +#: ckan/controllers/group.py:473 ckan/views/group.py:838 +#: ckan/views/group.py:927 +msgid "Unauthorized to create a group" +msgstr "沒有權限建立群組" + +#: ckan/controllers/group.py:551 ckan/controllers/group.py:581 +#: ckan/controllers/package.py:947 ckan/controllers/package.py:995 +#: ckan/controllers/user.py:245 ckan/controllers/user.py:369 +#: ckan/controllers/user.py:550 ckan/views/dataset.py:552 +#: ckan/views/dataset.py:721 ckan/views/dataset.py:1302 +#: ckan/views/group.py:859 ckan/views/group.py:952 ckan/views/user.py:282 +#: ckan/views/user.py:389 ckan/views/user.py:738 +msgid "Integrity Error" +msgstr "完整性錯誤" + +#: ckan/controllers/group.py:607 +#, python-format +msgid "User %r not authorized to edit %s authorizations" +msgstr "使用者 %r 無權修改 %s 的權限" + +#: ckan/controllers/group.py:627 ckan/controllers/group.py:642 +#: ckan/views/group.py:1010 ckan/views/group.py:1027 +#, python-format +msgid "Unauthorized to delete group %s" +msgstr "沒有刪除%s群組的權限" + +#: ckan/controllers/group.py:633 ckan/views/group.py:1019 +msgid "Organization has been deleted." +msgstr "此組織已被刪除" + +#: ckan/controllers/group.py:635 ckan/views/group.py:1021 +msgid "Group has been deleted." +msgstr "此群組已被刪除" + +#: ckan/controllers/group.py:637 ckan/views/group.py:1024 +#, python-format +msgid "%s has been deleted." +msgstr "%s 已被刪除。" + +#: ckan/controllers/group.py:661 ckan/views/group.py:539 +#, python-format +msgid "User %r not authorized to edit members of %s" +msgstr "使用者 %r 無權修改 %s 的成員" + +#: ckan/controllers/group.py:682 ckan/views/group.py:1071 +#, python-format +msgid "Unauthorized to create group %s members" +msgstr "無法授權 %s 為群組成員" + +#: ckan/controllers/group.py:724 ckan/views/group.py:1097 +#, python-format +msgid "Unauthorized to add member to group %s" +msgstr "沒有在群組%s中新增成員的權限" + +#: ckan/controllers/group.py:743 ckan/controllers/group.py:756 +#: ckan/views/group.py:567 ckan/views/group.py:588 +#, python-format +msgid "Unauthorized to delete group %s members" +msgstr "沒有刪除群組%s中成員的權限" + +#: ckan/controllers/group.py:750 ckan/views/group.py:576 +msgid "Group member has been deleted." +msgstr "群組成員已被刪除" + +#: ckan/controllers/group.py:774 ckan/controllers/package.py:435 +msgid "Select two revisions before doing the comparison." +msgstr "挑選兩種版本,然後進行比對。" + +#: ckan/controllers/group.py:798 +msgid "CKAN Group Revision History" +msgstr "CKAN群組版本歷史紀錄" + +#: ckan/controllers/group.py:802 +msgid "Recent changes to CKAN Group: " +msgstr "CKAN群組最近的更新:" + +#: ckan/controllers/group.py:823 ckan/controllers/package.py:486 +msgid "Log message: " +msgstr "記錄檔訊息:" + +#: ckan/controllers/group.py:873 ckan/controllers/package.py:1195 +#: ckan/controllers/user.py:723 ckan/views/dataset.py:921 +#: ckan/views/group.py:614 ckan/views/user.py:768 +msgid "You are now following {0}" +msgstr "你正在關注{0}" + +#: ckan/controllers/group.py:894 ckan/controllers/package.py:1214 +#: ckan/controllers/user.py:743 ckan/views/dataset.py:949 +#: ckan/views/group.py:634 ckan/views/user.py:790 +msgid "You are no longer following {0}" +msgstr "你已取消關注{0}" + +#: ckan/controllers/group.py:915 ckan/controllers/user.py:583 +#: ckan/views/group.py:654 ckan/views/user.py:814 +#, python-format +msgid "Unauthorized to view followers %s" +msgstr "沒有檢視跟隨者%s的權限" + +#: ckan/controllers/home.py:35 +msgid "This site is currently off-line. Database is not initialised." +msgstr "本網站目前無法運作。資料庫沒有初始化。" + +#: ckan/controllers/home.py:73 ckan/views/home.py:61 +#, python-format +msgid "Please update your profile and add your email address. " +msgstr "請 更新你的個人資料 並輸入你的電子郵件地址。" + +#: ckan/controllers/home.py:75 ckan/views/home.py:63 +#, python-format +msgid "%s uses your email address if you need to reset your password." +msgstr "%s 使用你的電子郵件地址,如果你需要重設密碼。" + +#: ckan/controllers/package.py:304 ckan/views/dataset.py:335 +msgid "Invalid search query: {error_message}" +msgstr "無效的搜尋:{error_message}" + +#: ckan/controllers/package.py:323 +msgid "Parameter \"{parameter_name}\" is not an integer" +msgstr "參數\"{parameter_name}\"並不是整數" + +#: ckan/controllers/package.py:343 ckan/controllers/package.py:351 +#: ckan/controllers/package.py:389 ckan/controllers/package.py:455 +#: ckan/controllers/package.py:778 ckan/controllers/package.py:826 +#: ckan/controllers/package.py:844 ckan/controllers/package.py:945 +#: ckan/controllers/package.py:993 ckan/controllers/package.py:1045 +#: ckan/controllers/package.py:1092 ckan/controllers/package.py:1239 +#: ckan/controllers/package.py:1255 ckan/controllers/package.py:1318 +#: ckan/controllers/package.py:1417 ckan/controllers/package.py:1452 +#: ckan/controllers/package.py:1559 ckan/logic/action/create.py:667 +#: ckan/views/dataset.py:392 ckan/views/dataset.py:403 +#: ckan/views/dataset.py:437 ckan/views/dataset.py:458 +#: ckan/views/dataset.py:606 ckan/views/dataset.py:742 +#: ckan/views/dataset.py:776 ckan/views/dataset.py:865 +#: ckan/views/dataset.py:880 ckan/views/dataset.py:978 +#: ckan/views/dataset.py:1011 ckan/views/dataset.py:1098 +#: ckan/views/dataset.py:1252 ckan/views/resource.py:63 +#: ckan/views/resource.py:74 ckan/views/resource.py:534 +#: ckan/views/resource.py:585 ckan/views/resource.py:635 +msgid "Dataset not found" +msgstr "資料集不存在" + +#: ckan/controllers/package.py:377 ckan/controllers/package.py:379 +#: ckan/controllers/package.py:381 +#, python-format +msgid "Invalid revision format: %r" +msgstr "無效的版本格式:%r" + +#: ckan/controllers/package.py:414 ckan/views/dataset.py:512 +msgid "Viewing datasets of type \"{package_type}\" is not supported ({file_!r})." +msgstr "資料集閱讀器 \"{package_type}\" 無法解讀 ({file_!r})." + +#: ckan/controllers/package.py:453 ckan/controllers/package.py:842 +#: ckan/controllers/package.py:943 ckan/controllers/package.py:991 +#: ckan/controllers/package.py:1241 ckan/views/dataset.py:740 +#: ckan/views/dataset.py:980 +#, python-format +msgid "Unauthorized to read package %s" +msgstr "沒有權限讀取組件%s" + +#: ckan/controllers/package.py:462 +msgid "CKAN Dataset Revision History" +msgstr "CKAN資料集版本歷史紀錄" + +#: ckan/controllers/package.py:465 +msgid "Recent changes to CKAN Dataset: " +msgstr "CKAN資料集最近的更新:" + +#: ckan/controllers/package.py:521 ckan/views/dataset.py:537 +msgid "Unauthorized to create a package" +msgstr "沒有權限建立組件" + +#: ckan/controllers/package.py:597 ckan/views/resource.py:377 +msgid "Unauthorized to edit this resource" +msgstr "沒有編輯該資源的權限" + +#: ckan/controllers/package.py:665 ckan/views/resource.py:219 +msgid "Unauthorized to update dataset" +msgstr "沒有更新資料集的權限" + +#: ckan/controllers/package.py:667 ckan/controllers/package.py:708 +#: ckan/controllers/package.py:734 ckan/views/resource.py:223 +#: ckan/views/resource.py:261 ckan/views/resource.py:298 +msgid "The dataset {id} could not be found." +msgstr "找不到 {id} 資料集." + +#: ckan/controllers/package.py:675 ckan/views/resource.py:227 +msgid "You must add at least one data resource" +msgstr "您必須至少新增一個資源" + +#: ckan/controllers/package.py:706 ckan/views/resource.py:258 +msgid "Unauthorized to create a resource" +msgstr "沒有建立資源的權限" + +#: ckan/controllers/package.py:739 ckan/views/resource.py:306 +msgid "Unauthorized to create a resource for this package" +msgstr "沒有為此資料集建立資源的權限" + +#: ckan/controllers/package.py:953 ckan/views/dataset.py:614 +msgid "Unable to add package to search index." +msgstr "無法在搜尋索引中添加組件" + +#: ckan/controllers/package.py:1001 ckan/views/dataset.py:750 +msgid "Unable to update search index." +msgstr "無法更新搜尋索引" + +#: ckan/controllers/package.py:1038 ckan/views/dataset.py:872 +msgid "Dataset has been deleted." +msgstr "資料集已被刪除" + +#: ckan/controllers/package.py:1043 ckan/controllers/package.py:1061 +#: ckan/views/dataset.py:869 ckan/views/dataset.py:884 +#: ckan/views/resource.py:450 +#, python-format +msgid "Unauthorized to delete package %s" +msgstr "沒有刪除%s組件的權限" + +#: ckan/controllers/package.py:1066 ckan/views/resource.py:464 +msgid "Resource has been deleted." +msgstr "此資源已被刪除" + +#: ckan/controllers/package.py:1077 ckan/views/resource.py:476 +#: ckan/views/resource.py:493 +#, python-format +msgid "Unauthorized to delete resource %s" +msgstr "沒有刪除資源%s的權限" + +#: ckan/controllers/package.py:1135 ckan/controllers/package.py:1578 +#: ckan/views/resource.py:123 ckan/views/resource.py:602 +msgid "Resource view not found" +msgstr "資源檢視不存在" + +#: ckan/controllers/package.py:1174 +msgid "Resource data not found" +msgstr "找不到資料" + +#: ckan/controllers/package.py:1183 ckan/views/resource.py:177 +msgid "No download is available" +msgstr "下載不存在" + +#: ckan/controllers/package.py:1320 ckan/views/dataset.py:1100 +#, python-format +msgid "Unauthorized to read dataset %s" +msgstr "沒有讀取資料集%s的權限" + +#: ckan/controllers/package.py:1428 ckan/views/resource.py:547 +#, python-format +msgid "Unauthorized to read resource %s" +msgstr "沒有權限讀取資源%s" + +#: ckan/controllers/package.py:1492 ckan/views/resource.py:697 +msgid "Unauthorized to edit resource" +msgstr "沒有編輯資源的權限" + +#: ckan/controllers/package.py:1510 ckan/views/resource.py:738 +msgid "View not found" +msgstr "資料檢視不存在" + +#: ckan/controllers/package.py:1516 ckan/views/resource.py:747 +msgid "View Type Not found" +msgstr "資料檢視類型不存在" + +#: ckan/controllers/package.py:1572 ckan/views/resource.py:597 +msgid "Bad resource view data" +msgstr "資源檢視描述不正確" + +#: ckan/controllers/package.py:1581 ckan/views/resource.py:605 +msgid "Resource view not supplied" +msgstr "沒有可用的資源檢視" + +#: ckan/controllers/package.py:1610 ckan/views/resource.py:908 +msgid "No preview has been defined." +msgstr "已設定為無預覽" + +#: ckan/controllers/user.py:83 ckan/controllers/user.py:228 +#: ckan/controllers/user.py:243 ckan/controllers/user.py:310 +#: ckan/controllers/user.py:367 ckan/controllers/user.py:522 +#: ckan/controllers/user.py:548 ckan/logic/action/delete.py:366 +#: ckan/logic/auth/update.py:195 ckan/views/user.py:60 ckan/views/user.py:309 +#: ckan/views/user.py:337 ckan/views/user.py:404 ckan/views/user.py:545 +#: ckan/views/user.py:691 ckan/views/user.py:736 +msgid "User not found" +msgstr "使用者不存在" + +#: ckan/controllers/user.py:157 ckan/views/user.py:374 +msgid "Unauthorized to register as a user." +msgstr "無權登錄為用戶." + +#: ckan/controllers/user.py:175 +msgid "Unauthorized to create a user" +msgstr "沒有權限建立使用者" + +#: ckan/controllers/user.py:206 ckan/views/user.py:515 +msgid "Unauthorized to delete user with id \"{user_id}\"." +msgstr "沒有刪除使用者 id \"{user_id}\" 的權限。" + +#: ckan/controllers/user.py:220 ckan/controllers/user.py:283 +#: ckan/views/user.py:252 ckan/views/user.py:537 +msgid "No user specified" +msgstr "沒有使用者的詳細說明" + +#: ckan/controllers/user.py:226 ckan/controllers/user.py:308 +#: ckan/controllers/user.py:365 ckan/controllers/user.py:546 +#: ckan/views/user.py:307 ckan/views/user.py:335 ckan/views/user.py:543 +#: ckan/views/user.py:734 +#, python-format +msgid "Unauthorized to edit user %s" +msgstr "沒有權限修改使用者%s" + +#: ckan/controllers/user.py:230 ckan/controllers/user.py:357 +#: ckan/views/user.py:315 ckan/views/user.py:547 +msgid "Profile updated" +msgstr "個人資料已更新" + +#: ckan/controllers/user.py:241 ckan/views/user.py:402 +#, python-format +msgid "Unauthorized to create user %s" +msgstr "沒有權限建立使用者%s" + +#: ckan/controllers/user.py:247 ckan/views/user.py:395 +msgid "Bad Captcha. Please try again." +msgstr "驗證碼錯誤,請再試一次。" + +#: ckan/controllers/user.py:261 ckan/views/user.py:414 +#, python-format +msgid "" +"User \"%s\" is now registered but you are still logged in as \"%s\" from " +"before" +msgstr "使用者 \"%s\" 已經註冊,但你仍以 \"%s\" 登入中" + +#: ckan/controllers/user.py:289 ckan/views/user.py:258 +msgid "Unauthorized to edit a user." +msgstr "無權修改使用者." + +#: ckan/controllers/user.py:375 ckan/views/user.py:299 +msgid "Password entered was incorrect" +msgstr "輸入密碼錯誤" + +#: ckan/controllers/user.py:376 ckan/templates/user/edit_user_form.html:34 +#: ckan/views/user.py:301 +msgid "Old Password" +msgstr "舊密碼" + +#: ckan/controllers/user.py:376 ckan/views/user.py:301 +msgid "incorrect password" +msgstr "錯誤的密碼" + +#: ckan/controllers/user.py:416 ckan/views/user.py:475 +msgid "Login failed. Bad username or password." +msgstr "登入失敗,使用者名稱或密碼錯誤。" + +#: ckan/controllers/user.py:449 ckan/views/user.py:598 +msgid "Unauthorized to request reset password." +msgstr "無權要求重設密碼." + +#: ckan/controllers/user.py:454 ckan/views/user.py:604 +msgid "Email is required" +msgstr "電子郵件是必須的" + +#: ckan/controllers/user.py:492 ckan/views/user.py:656 +msgid "" +"Error sending the email. Try again later or contact an administrator for " +"help" +msgstr "發送電子郵件時出現錯誤。請稍後再試或向管理員聯繫並尋求幫助" + +#: ckan/controllers/user.py:500 ckan/views/user.py:664 +msgid "" +"A reset link has been emailed to you (unless the account specified does not " +"exist)" +msgstr "重設連結已通過電子郵件發送給您(除非指定的帳號不存在)" + +#: ckan/controllers/user.py:514 ckan/views/user.py:686 +msgid "Unauthorized to reset password." +msgstr "無權重設密碼." + +#: ckan/controllers/user.py:526 ckan/views/user.py:695 +msgid "Invalid reset key. Please try again." +msgstr "無效的重設金鑰,請再試一次。" + +#: ckan/controllers/user.py:543 ckan/views/user.py:731 +msgid "Your password has been reset." +msgstr "你的密碼已經重設。" + +#: ckan/controllers/user.py:565 +msgid "Your password must be 4 characters or longer." +msgstr "你的密碼必須在四個字元以上。" + +#: ckan/controllers/user.py:568 ckan/views/user.py:710 +msgid "The passwords you entered do not match." +msgstr "你輸入的密碼不正確" + +#: ckan/controllers/user.py:571 ckan/views/user.py:713 +msgid "You must provide a password" +msgstr "你必須提供一組密碼" + +#: ckan/controllers/user.py:639 ckan/views/dashboard.py:62 +msgid "Follow item not found" +msgstr "跟隨的物件不存在" + +#: ckan/controllers/user.py:643 ckan/views/dashboard.py:66 +msgid "{0} not found" +msgstr "{0}不存在" + +#: ckan/controllers/user.py:657 ckan/views/dashboard.py:80 +msgid "Everything" +msgstr "所有事物" + +#: ckan/lib/datapreview.py:266 ckan/templates/group/edit_base.html:16 +#: ckan/templates/organization/edit_base.html:17 +#: ckan/templates/package/resource_read.html:38 +#: ckan/templates/package/resource_views.html:4 +msgid "View" +msgstr "瀏覽" + +#: ckan/lib/email_notifications.py:103 +msgid "{n} new activity from {site_title}" +msgid_plural "{n} new activities from {site_title}" +msgstr[0] "{site_title} 有 {n} 個新的活動" + +#: ckan/lib/formatters.py:49 +msgid "Just now" +msgstr "立刻" + +#: ckan/lib/formatters.py:74 +msgid "{bytes} bytes" +msgstr "{bytes} bytes" + +#: ckan/lib/formatters.py:76 +msgid "{kibibytes} KiB" +msgstr "{kibibytes} KiB" + +#: ckan/lib/formatters.py:78 +msgid "{mebibytes} MiB" +msgstr "{mebibytes} MiB" + +#: ckan/lib/formatters.py:80 +msgid "{gibibytes} GiB" +msgstr "{gibibytes} GiB" + +#: ckan/lib/formatters.py:82 +msgid "{tebibytes} TiB" +msgstr "{tebibytes} TiB" + +#: ckan/lib/formatters.py:94 +msgid "{n}" +msgstr "{n}" + +#: ckan/lib/formatters.py:96 +msgid "{k}k" +msgstr "{k}k" + +#: ckan/lib/formatters.py:98 +msgid "{m}M" +msgstr "{m}M" + +#: ckan/lib/formatters.py:100 +msgid "{g}G" +msgstr "{g}G" + +#: ckan/lib/formatters.py:102 +msgid "{t}T" +msgstr "{t}T" + +#: ckan/lib/formatters.py:104 +msgid "{p}P" +msgstr "{p}P" + +#: ckan/lib/formatters.py:106 +msgid "{e}E" +msgstr "{e}E" + +#: ckan/lib/formatters.py:108 +msgid "{z}Z" +msgstr "{z}Z" + +#: ckan/lib/formatters.py:110 +msgid "{y}Y" +msgstr "{y}Y" + +#: ckan/lib/helpers.py:1764 +msgid "Unknown" +msgstr "未知的" + +#: ckan/lib/helpers.py:1817 +#: ckan/templates/snippets/changes/new_resource.html:10 +msgid "Unnamed resource" +msgstr "佚名的資源" + +#: ckan/lib/helpers.py:1856 +msgid "Created new dataset." +msgstr "建立新的資料集" + +#: ckan/lib/helpers.py:1858 +msgid "Edited resources." +msgstr "編輯資源" + +#: ckan/lib/helpers.py:1860 +msgid "Edited settings." +msgstr "編輯設定" + +#: ckan/lib/helpers.py:2096 +msgid "{number} view" +msgid_plural "{number} views" +msgstr[0] "瀏覽次數:{number}" + +#: ckan/lib/helpers.py:2098 +msgid "{number} recent view" +msgid_plural "{number} recent views" +msgstr[0] "目前瀏覽數:{number}" + +#: ckan/lib/mailer.py:58 +#, python-format +msgid "%s <%s>" +msgstr "%s <%s>" + +#: ckan/lib/mailer.py:132 +msgid "No recipient email address available!" +msgstr "沒有收件人的電子郵件地址!" + +#: ckan/lib/mailer.py:150 ckan/templates/home/snippets/stats.html:17 +msgid "organization" +msgstr "組織" + +#: ckan/lib/mailer.py:151 ckan/templates/home/snippets/stats.html:23 +msgid "group" +msgstr "群組" + +#: ckan/lib/navl/dictization_functions.py:13 +#: ckan/lib/navl/dictization_functions.py:16 +#: ckan/lib/navl/dictization_functions.py:19 +#: ckan/lib/navl/dictization_functions.py:22 +#: ckan/lib/navl/dictization_functions.py:25 +#: ckan/lib/navl/dictization_functions.py:28 +#: ckan/lib/navl/dictization_functions.py:31 +#: ckan/lib/navl/dictization_functions.py:34 ckan/lib/navl/validators.py:28 +#: ckan/lib/navl/validators.py:35 ckan/lib/navl/validators.py:55 +#: ckan/logic/action/get.py:2052 ckan/logic/action/update.py:245 +#: ckan/logic/action/update.py:461 ckan/logic/validators.py:635 +msgid "Missing value" +msgstr "值(value)遺失" + +#: ckan/lib/navl/validators.py:69 +#, python-format +msgid "The input field %(name)s was not expected." +msgstr "輸入的字串 %(name)s 不是被預期的" + +#: ckan/lib/navl/validators.py:133 +msgid "Please enter an integer value" +msgstr "請輸入一個整數" + +#: ckan/lib/navl/validators.py:139 +msgid "Must be a Unicode string value" +msgstr "需為Unicode編碼文字" + +#: ckan/logic/__init__.py:103 ckan/logic/action/__init__.py:62 +msgid "Package resource(s) invalid" +msgstr "Package 的資源無效" + +#: ckan/logic/__init__.py:110 ckan/logic/__init__.py:112 +#: ckan/logic/action/__init__.py:64 ckan/logic/action/__init__.py:66 +msgid "Extras" +msgstr "擴充物件" + +#: ckan/logic/converters.py:77 ckan/logic/converters.py:92 +#, python-format +msgid "Tag vocabulary \"%s\" does not exist" +msgstr "標籤字串 \"%s\" 不存在" + +#: ckan/logic/converters.py:149 ckan/logic/validators.py:173 +#: ckan/logic/validators.py:215 ckan/templates/package/read_base.html:21 +#: ckan/tests/config/test_middleware.py:107 +msgid "Dataset" +msgstr "資料集" + +#: ckan/logic/converters.py:183 +msgid "Could not parse as valid JSON" +msgstr "錯誤的JSON格式" + +#: ckan/logic/validators.py:40 ckan/logic/validators.py:49 +msgid "An organization must be provided" +msgstr "必須提供一個組織" + +#: ckan/logic/validators.py:67 +msgid "You cannot move this dataset to another organization" +msgstr "您無法將此資料集移動至其他組織" + +#: ckan/logic/validators.py:71 +msgid "Organization does not exist" +msgstr "組織不存在" + +#: ckan/logic/validators.py:76 +msgid "You cannot add a dataset to this organization" +msgstr "你無法在這個組織中建立資料集" + +#: ckan/logic/validators.py:116 +msgid "Invalid integer" +msgstr "無效的整數" + +#: ckan/logic/validators.py:121 +msgid "Must be a natural number" +msgstr "必須是整數" + +#: ckan/logic/validators.py:127 +msgid "Must be a postive integer" +msgstr "必須是正整數" + +#: ckan/logic/validators.py:154 +msgid "Date format incorrect" +msgstr "日期格式不正確" + +#: ckan/logic/validators.py:163 +msgid "No links are allowed in the log_message." +msgstr "log_message中沒有被允許的連結。" + +#: ckan/logic/validators.py:183 +msgid "Dataset id already exists" +msgstr "資料集 id 已經被使用" + +#: ckan/logic/validators.py:224 +msgid "Resource" +msgstr "資源" + +#: ckan/logic/validators.py:278 +msgid "That group name or ID does not exist." +msgstr "此群組名稱或ID不存在。" + +#: ckan/logic/validators.py:292 +msgid "Activity type" +msgstr "指令類型" + +#: ckan/logic/validators.py:355 +msgid "Names must be strings" +msgstr "名子必須是字串" + +#: ckan/logic/validators.py:359 +msgid "That name cannot be used" +msgstr "此名稱無法使用" + +#: ckan/logic/validators.py:362 +#, python-format +msgid "Must be at least %s characters long" +msgstr "長度必須至少要 %s 個字元" + +#: ckan/logic/validators.py:364 ckan/logic/validators.py:651 +#, python-format +msgid "Name must be a maximum of %i characters long" +msgstr "名稱字串長度的最大值是 %i " + +#: ckan/logic/validators.py:367 +msgid "" +"Must be purely lowercase alphanumeric (ascii) characters and these symbols: " +"-_" +msgstr "必須是小寫英文字母 (ascii編碼)、數字、符號 '-' 及 '_'" + +#: ckan/logic/validators.py:385 +msgid "That URL is already in use." +msgstr "此網址已經被使用" + +#: ckan/logic/validators.py:390 +#, python-format +msgid "Name \"%s\" length is less than minimum %s" +msgstr "名稱 \"%s\" 字串長度小於最小值 %s" + +#: ckan/logic/validators.py:394 +#, python-format +msgid "Name \"%s\" length is more than maximum %s" +msgstr "名稱 \"%s\" 字串長度大於最大值 %s" + +#: ckan/logic/validators.py:400 +#, python-format +msgid "Version must be a maximum of %i characters long" +msgstr "版本名稱長度最大值為 %i" + +#: ckan/logic/validators.py:418 +#, python-format +msgid "Duplicate key \"%s\"" +msgstr "重複的Key \"%s\"" + +#: ckan/logic/validators.py:434 +msgid "Group name already exists in database" +msgstr "群組名稱已經被使用" + +#: ckan/logic/validators.py:440 +#, python-format +msgid "Tag \"%s\" length is less than minimum %s" +msgstr "標籤 \"%s\" 的長度小於最小值%s" + +#: ckan/logic/validators.py:444 +#, python-format +msgid "Tag \"%s\" length is more than maximum %i" +msgstr "標籤 \"%s\" 字串長度大於最大值 %i" + +#: ckan/logic/validators.py:452 +#, python-format +msgid "Tag \"%s\" must be alphanumeric characters or symbols: -_." +msgstr "標籤 \"%s\" 必須是英文字母、數字、符號'-'及'_'" + +#: ckan/logic/validators.py:460 +#, python-format +msgid "Tag \"%s\" must not be uppercase" +msgstr "標籤 \"%s\" 不能有大寫字母" + +#: ckan/logic/validators.py:568 +msgid "User names must be strings" +msgstr "使用者名稱必須是字串" + +#: ckan/logic/validators.py:583 +msgid "That login name is not available." +msgstr "此登入名稱無法使用" + +#: ckan/logic/validators.py:587 +msgid "That login name can not be modified." +msgstr "此登入名稱無法修改" + +#: ckan/logic/validators.py:598 +msgid "Please enter both passwords" +msgstr "請輸入兩組密碼" + +#: ckan/logic/validators.py:606 +msgid "Passwords must be strings" +msgstr "密碼必須是字串" + +#: ckan/logic/validators.py:610 +msgid "Your password must be 8 characters or longer" +msgstr "密碼長度至少要8個字元" + +#: ckan/logic/validators.py:619 +msgid "The passwords you entered do not match" +msgstr "你輸入的密碼不正確" + +#: ckan/logic/validators.py:639 +msgid "" +"Edit not allowed as it looks like spam. Please avoid links in your " +"description." +msgstr "不允許編輯,因為你編輯的內容被判定為疑似廣告內容。請避免在說明中使用連結。" + +#: ckan/logic/validators.py:648 +#, python-format +msgid "Name must be at least %s characters long" +msgstr "使用者名稱長度必須至少要%s個字元" + +#: ckan/logic/validators.py:656 +msgid "That vocabulary name is already in use." +msgstr "該詞彙表的名稱已經被使用。" + +#: ckan/logic/validators.py:662 +#, python-format +msgid "Cannot change value of key from %s to %s. This key is read-only" +msgstr "無法將Key的值從 %s 變更為 %s。 這個Key是唯讀的" + +#: ckan/logic/validators.py:671 +msgid "Tag vocabulary was not found." +msgstr "標籤詞彙不存在" + +#: ckan/logic/validators.py:684 +#, python-format +msgid "Tag %s does not belong to vocabulary %s" +msgstr "標籤%s不屬於詞彙表%s" + +#: ckan/logic/validators.py:690 +msgid "No tag name" +msgstr "無標籤名稱" + +#: ckan/logic/validators.py:703 +#, python-format +msgid "Tag %s already belongs to vocabulary %s" +msgstr "標籤%s已經包含於詞彙表%s" + +#: ckan/logic/validators.py:725 +msgid "Please provide a valid URL" +msgstr "請提供一個有效的網址" + +#: ckan/logic/validators.py:739 +msgid "role does not exist." +msgstr "角色不存在" + +#: ckan/logic/validators.py:768 +msgid "Datasets with no organization can't be private." +msgstr "非組織的資料集不能私有." + +#: ckan/logic/validators.py:774 +msgid "Not a list" +msgstr "不是列表" + +#: ckan/logic/validators.py:777 +msgid "Not a string" +msgstr "不是字串" + +#: ckan/logic/validators.py:811 +msgid "This parent would create a loop in the hierarchy" +msgstr "此父項目可能會於階層中形成迴圈" + +#: ckan/logic/validators.py:821 +msgid "\"filter_fields\" and \"filter_values\" should have the same length" +msgstr "「篩選條件」與「篩選值」需具備相同數量" + +#: ckan/logic/validators.py:832 +msgid "\"filter_fields\" is required when \"filter_values\" is filled" +msgstr "當「篩選值」存在時必須提供「篩選條件」" + +#: ckan/logic/validators.py:835 +msgid "\"filter_values\" is required when \"filter_fields\" is filled" +msgstr "當「篩選條件」存在時必須提供「篩選值」" + +#: ckan/logic/validators.py:849 +msgid "There is a schema field with the same name" +msgstr "已有一個 schema 欄位具有相同名稱" + +#: ckan/logic/validators.py:879 +msgid "Email {email} is not a valid format" +msgstr "電子郵件 {email} 格式錯誤" + +#: ckan/logic/validators.py:919 +msgid "Must be a dict" +msgstr "必須是一個 dict" + +#: ckan/logic/validators.py:940 +msgid "The email address '{email}' belongs to a registered user." +msgstr "電子郵件地址 '{email}' 已被註冊。" + +#: ckan/logic/validators.py:947 +msgid "Value must be one of {}" +msgstr "" + +#: ckan/logic/validators.py:958 +msgid "The value should be a valid JSON object" +msgstr "該值應該是一個有效的 JSON" + +#: ckan/logic/validators.py:960 +msgid "Could not parse the value as a valid JSON object" +msgstr "無法將該值解析為有效的 JSON" + +#: ckan/logic/validators.py:970 +msgid "Could not parse extra '{name}' as valid JSON" +msgstr "" + +#: ckan/logic/action/__init__.py:64 ckan/views/util.py:21 +msgid "Missing Value" +msgstr "遺漏的值" + +#: ckan/logic/action/create.py:660 +msgid "Role must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/create.py:671 +msgid "Not allowed to add collaborators" +msgstr "不允許新增協作者" + +#: ckan/logic/action/create.py:674 ckan/logic/action/delete.py:358 +#: ckan/logic/action/get.py:268 ckan/logic/action/get.py:311 +msgid "Dataset collaborators not enabled" +msgstr "資料集協作者功能未啟用" + +#: ckan/logic/action/create.py:869 +msgid "Trying to create an organization as a group" +msgstr "嘗試建立一個組織,就像群組一樣" + +#: ckan/logic/action/create.py:958 +msgid "You must supply a package id or name (parameter \"package\")." +msgstr "你必須提供一個組件ID或名稱(參數\"組件\")。" + +#: ckan/logic/action/create.py:961 +msgid "You must supply a rating (parameter \"rating\")." +msgstr "你必須留下評分(參數\"評分\")。" + +#: ckan/logic/action/create.py:966 +msgid "Rating must be an integer value." +msgstr "評分必須是一個整數。" + +#: ckan/logic/action/create.py:970 +#, python-format +msgid "Rating must be between %i and %i." +msgstr "評分必須介於%i 及 %i 之間。" + +#: ckan/logic/action/create.py:1175 +msgid "Error sending the invite email, the user was not created: {0}" +msgstr "寄送邀請電子郵件時發生錯誤,使用者:{0} 未被建立" + +#: ckan/logic/action/create.py:1349 ckan/logic/action/create.py:1356 +msgid "You must be logged in to follow users" +msgstr "你必須登入才能關注使用者" + +#: ckan/logic/action/create.py:1369 +msgid "You cannot follow yourself" +msgstr "你無法追蹤自己" + +#: ckan/logic/action/create.py:1377 ckan/logic/action/create.py:1434 +#: ckan/logic/action/create.py:1573 +msgid "You are already following {0}" +msgstr "你正在關注{0}" + +#: ckan/logic/action/create.py:1408 ckan/logic/action/create.py:1416 +msgid "You must be logged in to follow a dataset." +msgstr "你必須登入才能關注資料集" + +#: ckan/logic/action/create.py:1474 +msgid "User {username} does not exist." +msgstr " 使用者 {username} 不存在." + +#: ckan/logic/action/create.py:1549 ckan/logic/action/create.py:1557 +msgid "You must be logged in to follow a group." +msgstr "你必須登入才能關注群組" + +#: ckan/logic/action/delete.py:362 ckan/logic/action/get.py:263 +msgid "Package not found" +msgstr "找不到 Package" + +#: ckan/logic/action/delete.py:418 +msgid "Organization cannot be deleted while it still has datasets" +msgstr "不能刪除還有資料集的組織" + +#: ckan/logic/action/delete.py:635 ckan/logic/action/delete.py:661 +#: ckan/logic/action/get.py:2455 ckan/logic/action/update.py:1084 +msgid "id not in data" +msgstr "在資料中找不到ID" + +#: ckan/logic/action/delete.py:639 ckan/logic/action/get.py:2458 +#: ckan/logic/action/update.py:1088 +#, python-format +msgid "Could not find vocabulary \"%s\"" +msgstr "詞彙表\"%s\" 不存在" + +#: ckan/logic/action/delete.py:669 +#, python-format +msgid "Could not find tag \"%s\"" +msgstr "標籤 \"%s\" 不存在" + +#: ckan/logic/action/delete.py:682 ckan/logic/action/delete.py:686 +msgid "You must be logged in to unfollow something." +msgstr "你必須登入才能取消關注" + +#: ckan/logic/action/delete.py:697 +msgid "You are not following {0}." +msgstr "你並沒有關注{0}" + +#: ckan/logic/action/get.py:275 ckan/logic/action/get.py:323 +msgid "Capacity must be one of \"{}\"" +msgstr "" + +#: ckan/logic/action/get.py:317 +msgid "Not allowed to retrieve collaborators" +msgstr "不允許取得協作者資訊" + +#: ckan/logic/action/get.py:1097 ckan/logic/action/update.py:76 +#: ckan/logic/action/update.py:90 +msgid "Resource was not found." +msgstr "資源不存在" + +#: ckan/logic/action/get.py:1176 +msgid "Parameter is not an bool" +msgstr "" + +#: ckan/logic/action/get.py:2056 +msgid "Do not specify if using \"query\" parameter" +msgstr "若使用\"query\"參數則不要詳細說明" + +#: ckan/logic/action/get.py:2065 +msgid "Must be : pair(s)" +msgstr ":必須是一對" + +#: ckan/logic/action/get.py:2097 +msgid "Field \"{field}\" not recognised in resource_search." +msgstr "在 resource_search 裡無法辨識欄位 \"{field}\"。" + +#: ckan/logic/action/update.py:249 ckan/logic/action/update.py:1169 +msgid "Package was not found." +msgstr "組件不存在" + +#: ckan/logic/action/update.py:944 +msgid "TaskStatus was not found." +msgstr "任務狀態不存在" + +#: ckan/logic/action/update.py:1173 +msgid "Organization was not found." +msgstr "組織不存在" + +#: ckan/logic/auth/create.py:27 ckan/logic/auth/create.py:45 +#, python-format +msgid "User %s not authorized to create packages" +msgstr "使用者 %s 沒有權限建立組件" + +#: ckan/logic/auth/create.py:31 ckan/logic/auth/update.py:56 +#, python-format +msgid "User %s not authorized to edit these groups" +msgstr "使用者 %s 沒有權限編輯群組" + +#: ckan/logic/auth/create.py:38 +#, python-format +msgid "User %s not authorized to add dataset to this organization" +msgstr "使用者 %s 沒授權增加資料集到這個組織" + +#: ckan/logic/auth/create.py:61 +msgid "No dataset id provided, cannot check auth." +msgstr "此資料集的 id 不存在,無法確認權限。" + +#: ckan/logic/auth/create.py:68 ckan/logic/auth/delete.py:34 +#: ckan/logic/auth/get.py:137 ckan/logic/auth/update.py:79 +msgid "No package found for this resource, cannot check auth." +msgstr "此資源的 Package 不存在,無法確認權限。" + +#: ckan/logic/auth/create.py:76 +#, python-format +msgid "User %s not authorized to create resources on dataset %s" +msgstr "使用者 %s 沒有於資料集 %s 中建立資源的權限" + +#: ckan/logic/auth/create.py:108 +#, python-format +msgid "User %s not authorized to edit these packages" +msgstr "使用者 %s 沒有權限編輯組件" + +#: ckan/logic/auth/create.py:119 +#, python-format +msgid "User %s not authorized to create groups" +msgstr "使用者 %s 沒有權限建立群組" + +#: ckan/logic/auth/create.py:129 +#, python-format +msgid "User %s not authorized to create organizations" +msgstr "使用者%s沒有權限建立組織" + +#: ckan/logic/auth/create.py:145 +msgid "User {user} not authorized to create users via the API" +msgstr "使用者 {user} 沒有權限透過 API 建立使用者" + +#: ckan/logic/auth/create.py:148 +msgid "Not authorized to create users" +msgstr "沒有權限建立使用者" + +#: ckan/logic/auth/create.py:191 +msgid "Group was not found." +msgstr "群組不存在" + +#: ckan/logic/auth/create.py:225 +#, python-format +msgid "User %s not authorized to add members" +msgstr "使用者%s沒有權限新增成員" + +#: ckan/logic/auth/create.py:252 ckan/logic/auth/update.py:131 +#, python-format +msgid "User %s not authorized to edit group %s" +msgstr "使用者 %s 沒有權限編輯群組 %s" + +#: ckan/logic/auth/create.py:280 +#, python-format +msgid "User %s not authorized to add collaborators to this dataset" +msgstr "使用者 %s 沒有權限於此資料集新增協作者" + +#: ckan/logic/auth/delete.py:40 +#, python-format +msgid "User %s not authorized to delete resource %s" +msgstr "使用者 %s 沒有權限刪除資源 %s" + +#: ckan/logic/auth/delete.py:56 ckan/logic/auth/get.py:154 +msgid "Resource view not found, cannot check auth." +msgstr "此資源檢視不存在,無法確認權限。" + +#: ckan/logic/auth/delete.py:73 +#, python-format +msgid "User %s not authorized to delete relationship %s" +msgstr "使用者 %s 沒有權限刪除關連性 %s" + +#: ckan/logic/auth/delete.py:82 +#, python-format +msgid "User %s not authorized to delete groups" +msgstr "使用者%s沒有權限刪除群組" + +#: ckan/logic/auth/delete.py:86 +#, python-format +msgid "User %s not authorized to delete group %s" +msgstr "使用者 %s 沒有權限刪除群組 %s" + +#: ckan/logic/auth/delete.py:103 +#, python-format +msgid "User %s not authorized to delete organizations" +msgstr "使用者%s沒有權限刪除組織" + +#: ckan/logic/auth/delete.py:107 +#, python-format +msgid "User %s not authorized to delete organization %s" +msgstr "使用者%s沒有權限刪除組織%s" + +#: ckan/logic/auth/delete.py:120 +#, python-format +msgid "User %s not authorized to delete task_status" +msgstr "使用者 %s 沒有權限刪除任務狀態" + +#: ckan/logic/auth/delete.py:156 +#, python-format +msgid "User %s not authorized to remove collaborators from this dataset" +msgstr "使用者 %s 沒有權限移除此資料集的協作者" + +#: ckan/logic/auth/get.py:15 ckan/logic/auth/get.py:370 +msgid "Not authorized" +msgstr "沒有權限" + +#: ckan/logic/auth/get.py:108 +#, python-format +msgid "User %s not authorized to read these packages" +msgstr "使用者 %s 沒有權限讀取這些組件" + +#: ckan/logic/auth/get.py:124 +#, python-format +msgid "User %s not authorized to read package %s" +msgstr "使用者 %s 沒有權限讀取組件 %s" + +#: ckan/logic/auth/get.py:143 +#, python-format +msgid "User %s not authorized to read resource %s" +msgstr "使用者 %s 沒有權限讀取資源 %s" + +#: ckan/logic/auth/get.py:177 +#, python-format +msgid "User %s not authorized to read group %s" +msgstr "使用者 %s 沒有權限讀取群組 %s" + +#: ckan/logic/auth/get.py:249 +msgid "You must be logged in to access your dashboard." +msgstr "你必須登入才能使用控制台" + +#: ckan/logic/auth/get.py:460 +#, python-format +msgid "User %s not authorized to list collaborators from this dataset" +msgstr "使用者 %s 沒有權限列出此資料集的協作者" + +#: ckan/logic/auth/update.py:50 +#, python-format +msgid "User %s not authorized to edit package %s" +msgstr "使用者 %s 沒有權限編輯組件 %s" + +#: ckan/logic/auth/update.py:87 +#, python-format +msgid "User %s not authorized to edit resource %s" +msgstr "使用者 %s 沒有權限編輯資源 %s" + +#: ckan/logic/auth/update.py:116 +#, python-format +msgid "User %s not authorized to change state of package %s" +msgstr "使用者 %s 沒有權限更改組件的狀態 %s" + +#: ckan/logic/auth/update.py:144 +#, python-format +msgid "User %s not authorized to edit organization %s" +msgstr "使用者%s沒有權限編輯組織%s" + +#: ckan/logic/auth/update.py:161 +#, python-format +msgid "User %s not authorized to change state of group %s" +msgstr "使用者 %s 沒有權限改變群組的狀態 %s" + +#: ckan/logic/auth/update.py:178 +#, python-format +msgid "User %s not authorized to edit permissions of group %s" +msgstr "使用者 %s 沒有權限編輯群組的許可 %s" + +#: ckan/logic/auth/update.py:206 +msgid "Have to be logged in to edit user" +msgstr "需經登入以編輯用戶" + +#: ckan/logic/auth/update.py:214 +#, python-format +msgid "User %s not authorized to edit user %s" +msgstr "使用者 %s 沒有權限編輯使用者 %s" + +#: ckan/logic/auth/update.py:225 +msgid "User {0} not authorized to update user {1}" +msgstr "使用者 {0} 沒有權限更新使用者 {1}" + +#: ckan/logic/auth/update.py:233 +#, python-format +msgid "User %s not authorized to change state of revision" +msgstr "使用者 %s 沒有權限更改版本狀態" + +#: ckan/logic/auth/update.py:242 +#, python-format +msgid "User %s not authorized to update task_status table" +msgstr "使用者 %s 沒有權限更新任務狀態表格" + +#: ckan/logic/auth/update.py:256 +#, python-format +msgid "User %s not authorized to update term_translation table" +msgstr "使用者 %s 沒有權限更新翻譯字詞表格" + +#: ckan/model/license.py:145 +msgid "title" +msgstr "" + +#: ckan/model/license.py:240 +msgid "License not specified" +msgstr "授權類型未指定" + +#: ckan/model/license.py:250 +msgid "Open Data Commons Public Domain Dedication and License (PDDL)" +msgstr "開放資料共用公共領域貢獻和授權條款 (PDDL)" + +#: ckan/model/license.py:260 +msgid "Open Data Commons Open Database License (ODbL)" +msgstr "Open Data Commons Open Database License (ODbL)" + +#: ckan/model/license.py:270 +msgid "Open Data Commons Attribution License" +msgstr "Open Data Commons Attribution License" + +#: ckan/model/license.py:281 +msgid "Creative Commons CCZero" +msgstr "Creative Commons CCZero" + +#: ckan/model/license.py:290 +msgid "Creative Commons Attribution" +msgstr "Creative Commons Attribution" + +#: ckan/model/license.py:300 +msgid "Creative Commons Attribution Share-Alike" +msgstr "Creative Commons Attribution Share-Alike" + +#: ckan/model/license.py:309 +msgid "GNU Free Documentation License" +msgstr "GNU Free Documentation License" + +#: ckan/model/license.py:319 +msgid "Other (Open)" +msgstr "其他(開放)" + +#: ckan/model/license.py:329 +msgid "Other (Public Domain)" +msgstr "其他(公共領域)" + +#: ckan/model/license.py:339 +msgid "Other (Attribution)" +msgstr "其他(歸因)" + +#: ckan/model/license.py:351 +msgid "UK Open Government Licence (OGL)" +msgstr "UK Open Government Licence (OGL)" + +#: ckan/model/license.py:359 +msgid "Creative Commons Non-Commercial (Any)" +msgstr "Creative Commons Non-Commercial (Any)" + +#: ckan/model/license.py:367 +msgid "Other (Non-Commercial)" +msgstr "其他(非商業)" + +#: ckan/model/license.py:375 +msgid "Other (Not Open)" +msgstr "其他(非開放)" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "depends on %s" +msgstr "根據 %s" + +#: ckan/model/package_relationship.py:51 +#, python-format +msgid "is a dependency of %s" +msgstr "是取決於%s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "derives from %s" +msgstr "來自於%s" + +#: ckan/model/package_relationship.py:52 +#, python-format +msgid "has derivation %s" +msgstr "擁有來源%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "links to %s" +msgstr "連結至%s" + +#: ckan/model/package_relationship.py:53 +#, python-format +msgid "is linked from %s" +msgstr "從%s連結而來" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a child of %s" +msgstr "是%s的子項目" + +#: ckan/model/package_relationship.py:54 +#, python-format +msgid "is a parent of %s" +msgstr "是%s的父項目" + +#: ckan/model/package_relationship.py:58 +#, python-format +msgid "has sibling %s" +msgstr "擁有同層級項目%s" + +#: ckan/public/base/javascript/modules/api-info.js:96 +#: ckan/public/base/javascript/modules/api-info.min.js:2 +msgid "There is no API data to load for this resource" +msgstr "這個資源中沒有 API 資料可供讀取" + +#: ckan/public/base/javascript/modules/api-info.js:124 +#: ckan/public/base/javascript/modules/api-info.min.js:4 +msgid "Failed to load data API information" +msgstr "讀取API資訊失敗" + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "Start typing…" +msgstr "開始輸入.." + +#: ckan/public/base/javascript/modules/autocomplete.js:211 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +msgid "No matches found" +msgstr "沒有匹配的資料" + +#: ckan/public/base/javascript/modules/autocomplete.js:220 +#: ckan/public/base/javascript/modules/autocomplete.min.js:7 +#, python-format +msgid "Input is too short, must be at least one character" +msgid_plural "Input is too short, must be at least %(num)d characters" +msgstr[0] "輸入內容必須至少要 %(num)d 字元" + +#: ckan/public/base/javascript/modules/basic-form.js:4 +#: ckan/public/base/javascript/modules/basic-form.min.js:1 +msgid "There are unsaved modifications to this form" +msgstr "此表格有未保存的修改" + +#: ckan/public/base/javascript/modules/confirm-action.js:118 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Please Confirm Action" +msgstr "請確認操作" + +#: ckan/public/base/javascript/modules/confirm-action.js:121 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +msgid "Are you sure you want to perform this action?" +msgstr "確定要執行此操作嗎?" + +#: ckan/public/base/javascript/modules/confirm-action.js:123 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/templates/user/new_user_form.html:9 +#: ckan/templates/user/perform_reset.html:26 +msgid "Confirm" +msgstr "確認" + +#: ckan/public/base/javascript/modules/confirm-action.js:124 +#: ckan/public/base/javascript/modules/confirm-action.min.js:2 +#: ckan/public/base/javascript/modules/resource-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:58 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +#: 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:15 +#: ckan/templates/package/confirm_delete_resource.html:14 +msgid "Cancel" +msgstr "取消" + +#: ckan/public/base/javascript/modules/follow.js:70 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:4 +msgid "Unfollow" +msgstr "取消追蹤" + +#: ckan/public/base/javascript/modules/follow.js:73 +#: ckan/public/base/javascript/modules/follow.min.js:1 +#: ckan/templates/snippets/follow_button.html:9 +msgid "Follow" +msgstr "跟隨" + +#: ckan/public/base/javascript/modules/image-upload.js:62 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link" +msgstr "連結" + +#: ckan/public/base/javascript/modules/image-upload.js:63 +#: ckan/public/base/javascript/modules/image-upload.min.js:3 +msgid "Link to a URL on the internet (you can also link to an API)" +msgstr "連結至網際網路上的網址(您也可以連結至 API)" + +#: ckan/public/base/javascript/modules/image-upload.js:70 +#: ckan/public/base/javascript/modules/image-upload.min.js:4 +msgid "Upload" +msgstr "上傳" + +#: ckan/public/base/javascript/modules/image-upload.js:75 +#: ckan/public/base/javascript/modules/image-upload.min.js:5 +msgid "Please select the file to upload again" +msgstr "請再次選擇要上傳的檔案" + +#: ckan/public/base/javascript/modules/image-upload.js:79 +#: ckan/public/base/javascript/modules/image-upload.min.js:6 +#: ckan/templates/group/snippets/group_item.html:43 +#: ckan/templates/macros/form.html:251 +#: ckan/templates/snippets/search_form.html:69 +msgid "Remove" +msgstr "移除" + +#: ckan/public/base/javascript/modules/image-upload.js:94 +#: ckan/public/base/javascript/modules/image-upload.min.js:7 +msgid "Upload a file on your computer" +msgstr "從您的電腦上傳檔案" + +#: ckan/public/base/javascript/modules/image-upload.js:117 +#: ckan/public/base/javascript/modules/image-upload.js:185 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:11 +#: ckan/public/base/javascript/modules/slug-preview.js:56 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: 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:26 +msgid "URL" +msgstr "網址" + +#: ckan/public/base/javascript/modules/image-upload.js:126 +#: ckan/public/base/javascript/modules/image-upload.js:226 +#: ckan/public/base/javascript/modules/image-upload.min.js:8 +#: ckan/public/base/javascript/modules/image-upload.min.js:12 +msgid "File" +msgstr "檔案" + +#: ckan/public/base/javascript/modules/resource-reorder.js:42 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "Reorder resources" +msgstr "重新排序資源" + +#: ckan/public/base/javascript/modules/resource-reorder.js:43 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +msgid "" +"You can rearrange the resources by dragging them using the arrow icon. Drag " +"the resource to the right and place it to the desired location on the list. " +"When you are done, click the \"Save order\" -button." +msgstr "您可以使用箭頭圖示來拖曳資源,以重新排列它們。將資源拖曳到右側,並將其放置在您想要的位置上。完成後,點選「儲存排序」按鈕。" + +#: ckan/public/base/javascript/modules/resource-reorder.js:65 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:55 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Save order" +msgstr "儲存排序" + +#: ckan/public/base/javascript/modules/resource-reorder.js:78 +#: ckan/public/base/javascript/modules/resource-reorder.min.js:1 +#: ckan/public/base/javascript/modules/resource-view-reorder.js:68 +#: ckan/public/base/javascript/modules/resource-view-reorder.min.js:1 +msgid "Saving..." +msgstr "儲存中..." + +#: ckan/public/base/javascript/modules/resource-upload-field.js:57 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "Upload a file" +msgstr "上傳檔案" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:144 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:1 +msgid "An Error Occurred" +msgstr "發生錯誤" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:204 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to upload file" +msgstr "無法上傳檔案" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:255 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to authenticate upload" +msgstr "無法驗證上傳" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:263 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Resource uploaded" +msgstr "資源已上傳" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:269 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +msgid "Unable to get data for uploaded file" +msgstr "無法取得上傳檔案的資料" + +#: ckan/public/base/javascript/modules/resource-upload-field.js:275 +#: ckan/public/base/javascript/modules/resource-upload-field.min.js:2 +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-filters.js:9 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:1 +#: ckan/templates/package/snippets/view_form_filters.html:16 +msgid "Add Filter" +msgstr "新增篩選條件" + +#: ckan/public/base/javascript/modules/resource-view-filters.js:52 +#: ckan/public/base/javascript/modules/resource-view-filters.min.js:3 +msgid "Select a field" +msgstr "選擇1個欄位" + +#: ckan/public/base/javascript/modules/slug-preview.js:57 +#: ckan/public/base/javascript/modules/slug-preview.min.js:2 +#: ckan/templates/group/edit_base.html:20 ckan/templates/group/members.html:28 +#: ckan/templates/organization/bulk_process.html:75 +#: ckan/templates/organization/edit.html:3 +#: ckan/templates/organization/edit_base.html:22 +#: ckan/templates/organization/members.html:33 +#: ckan/templates/package/collaborators/collaborators.html:33 +#: ckan/templates/package/edit_base.html:8 +#: ckan/templates/package/resource_edit.html:3 +#: ckan/templates/package/resource_edit_base.html:12 +#: ckan/templates/package/snippets/resource_item.html:70 +msgid "Edit" +msgstr "編輯" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:25 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Show more" +msgstr "顯示更多" + +#: ckan/public/base/javascript/modules/table-toggle-more.js:26 +#: ckan/public/base/javascript/modules/table-toggle-more.min.js:1 +msgid "Hide" +msgstr "隱藏" + +#: ckan/templates/error_document_template.html:3 +#, python-format +msgid "Error %(error_code)s" +msgstr "錯誤 %(error_code)s" + +#: ckan/templates/footer.html:9 +msgid "About {0}" +msgstr "關於{0}" + +#: ckan/templates/footer.html:15 +msgid "CKAN API" +msgstr "CKAN API" + +#: ckan/templates/footer.html:16 +msgid "CKAN Association" +msgstr "CKAN 協會" + +#: ckan/templates/footer.html:24 +msgid "" +"Powered by CKAN" +msgstr "" +"Powered by CKAN" + +#: ckan/templates/header.html:9 +msgid "Sysadmin settings" +msgstr "系統管理員設置" + +#: ckan/templates/header.html:16 +msgid "View profile" +msgstr "瀏覽個人資料" + +#: ckan/templates/header.html:23 +#, python-format +msgid "Dashboard (%(num)d new item)" +msgid_plural "Dashboard (%(num)d new items)" +msgstr[0] "控制台(%(num)d 個新物件)" + +#: ckan/templates/header.html:27 ckan/templates/user/dashboard.html:6 +msgid "Dashboard" +msgstr "控制台" + +#: ckan/templates/header.html:33 ckan/templates/header.html:35 +#: ckan/templates/user/dashboard.html:16 +msgid "Profile settings" +msgstr "設定個人資料" + +#: ckan/templates/header.html:40 ckan/templates/header.html:42 +msgid "Log out" +msgstr "登出" + +#: ckan/templates/header.html:49 +msgid "Account" +msgstr "帳號" + +#: ckan/templates/header.html:52 ckan/templates/user/logout_first.html:14 +msgid "Log in" +msgstr "登入" + +#: ckan/templates/header.html:54 ckan/templates/user/new.html:3 +msgid "Register" +msgstr "註冊" + +#: ckan/templates/group/read_base.html:17 +#: ckan/templates/group/snippets/info.html:38 ckan/templates/header.html:89 +#: ckan/templates/organization/bulk_process.html:20 +#: ckan/templates/organization/edit_base.html:23 +#: ckan/templates/organization/read_base.html:17 +#: ckan/templates/package/snippets/new_package_breadcrumb.html:1 +#: ckan/templates/snippets/context/group.html:17 +#: ckan/templates/snippets/context/user.html:19 +#: ckan/templates/snippets/organization.html:61 +#: ckan/templates/user/read.html:11 ckan/templates/user/read_base.html:19 +#: ckan/templates/user/read_base.html:56 +msgid "Datasets" +msgstr "資料集" + +#: ckan/templates/header.html:99 +msgid "Search Datasets" +msgstr "搜尋資料集" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:11 +#: ckan/templates/snippets/simple_search.html:5 +#: ckan/templates/user/snippets/user_search.html:6 +msgid "Search" +msgstr "搜尋" + +#: ckan/templates/header.html:100 ckan/templates/home/snippets/search.html:8 +msgid "Search datasets" +msgstr "搜尋資料集" + +#: ckan/templates/header.html:101 ckan/templates/snippets/search_form.html:16 +msgid "Submit" +msgstr "" + +#: ckan/templates/page.html:6 +msgid "Skip to content" +msgstr "跳至內容" + +#: ckan/templates/page.html:36 +msgid "Breadcrumb" +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:27 +msgid "Trash" +msgstr "垃圾桶" + +#: ckan/templates/admin/config.html:23 ckan/templates/macros/autoform.html:62 +msgid "Site logo" +msgstr "網站 LOGO" + +#: ckan/templates/admin/config.html:35 +#: ckan/templates/admin/confirm_reset.html:7 +msgid "Are you sure you want to reset the config?" +msgstr "確定要重設設置嗎?" + +#: ckan/templates/admin/config.html:35 +msgid "Reset" +msgstr "重設" + +#: ckan/templates/admin/config.html:36 +msgid "Update Config" +msgstr "更新設定檔" + +#: ckan/templates/admin/config.html:45 +msgid "CKAN config options" +msgstr "CKAN 設置選項" + +#: ckan/templates/admin/config.html:52 +#, 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 網站標題的範例,將會出現在 CKAN 的許多地方

" +"

樣式: 您可以從現有的配色方案清單中選擇,做些簡單的變化,快速的讓客製化主題運作。

" +"

網站 LOGO:這是會出現在所有 CKAN 網站模板的 logo。

" +"

關於:此段文字將出現在此 CKAN 網站的「關於」頁面 。

簡介文字:此段文字將作為此 " +"CKAN 網站首頁的歡迎訊息。

客製化 " +"CSS:這是一個 CSS 區塊,將會出現在有<head>標籤的每個頁面。 " +"若您需要更完整的客製化範例,建議您閱讀此文件

" +"

首頁:您可以選擇顯示於首頁的模組佈局。

" + +#: 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 系統管理者" + +#: 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 網站的所有控制權。請小心操作!

關於系統管理功能,請見 CKAN 系統管理者指南

" + +#: ckan/templates/admin/trash.html:12 +msgid "Are you sure you want to purge everything?" +msgstr "您確定要清除所有內容嗎?" + +#: ckan/templates/admin/trash.html:13 +msgid "Purge all" +msgstr "全部清除" + +#: ckan/templates/admin/trash.html:31 +msgid "" +"Purge deleted datasets, organizations or groups forever and irreversibly." +msgstr "永久且不可逆地清除已刪除的資料集、組織或群組。" + +#: ckan/templates/admin/snippets/confirm_delete.html:3 +#: ckan/templates/admin/snippets/confirm_delete.html:17 +#: 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:16 +#: ckan/templates/package/confirm_delete_resource.html:3 +#: ckan/templates/package/confirm_delete_resource.html:15 +msgid "Confirm Delete" +msgstr "確認刪除" + +#: ckan/templates/admin/snippets/data_type.html:7 +msgid "Deleted datasets" +msgstr "已刪除的資料集" + +#: ckan/templates/admin/snippets/data_type.html:9 +msgid "Deleted organizations" +msgstr "已刪除的組織" + +#: ckan/templates/admin/snippets/data_type.html:11 +msgid "Deleted groups" +msgstr "已刪除的群組" + +#: ckan/templates/admin/snippets/data_type.html:41 +msgid "Purge" +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:145 +#: ckan/templates/package/snippets/resource_view.html:34 +msgid "Click here for more information." +msgstr "點選此處獲得更多資訊" + +#: ckan/templates/dataviewer/snippets/data_preview.html:18 +#: ckan/templates/package/snippets/resource_view.html:41 +msgid "Download resource" +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 "沒有處理程序定義的資料類型:%(type)s" + +#: 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/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 "Markdown標記" + +#: 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:8 +#: ckan/templates/group/read_base.html:18 +#: ckan/templates/organization/activity_stream.html:3 +#: ckan/templates/organization/activity_stream.html:8 +#: ckan/templates/organization/read_base.html:18 +#: ckan/templates/package/activity.html:3 +#: ckan/templates/package/activity.html:8 +#: ckan/templates/package/read_base.html:23 +#: ckan/templates/user/activity_stream.html:3 +#: ckan/templates/user/activity_stream.html:8 +#: 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:5 +msgid "Add a Group" +msgstr "增加一個群組" + +#: ckan/templates/group/base_form_page.html:10 +msgid "Group Form" +msgstr "群組表單" + +#: ckan/templates/group/confirm_delete.html:11 +msgid "Are you sure you want to delete group - {name}?" +msgstr "確定要刪除群組:{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 "確定要刪除成員:{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:15 +#: 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/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: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:77 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:79 +#: ckan/templates/organization/members.html:8 +msgid "Add Member" +msgstr "新增成員" + +#: ckan/templates/group/member_new.html:19 +#: ckan/templates/organization/member_new.html:21 +#: ckan/templates/package/collaborators/collaborator_new.html:19 +msgid "Existing User" +msgstr "已存在的使用者" + +#: ckan/templates/group/member_new.html:22 +#: ckan/templates/organization/member_new.html:24 +#: ckan/templates/package/collaborators/collaborator_new.html:22 +msgid "If you wish to add an existing user, search for their username below." +msgstr "若您欲新增已存在之使用者,請在下面搜尋。" + +#: ckan/templates/group/member_new.html:41 +#: ckan/templates/organization/member_new.html:43 +msgid "or" +msgstr "或" + +#: ckan/templates/group/member_new.html:47 +#: ckan/templates/organization/member_new.html:49 +msgid "New User" +msgstr "新使用者" + +#: ckan/templates/group/member_new.html:50 +#: ckan/templates/organization/member_new.html:52 +msgid "If you wish to invite a new user, enter their email address." +msgstr "請在此輸入電子郵件位址,以邀請使用者加入" + +#: ckan/templates/group/member_new.html:62 +#: ckan/templates/group/member_new.html:66 +#: ckan/templates/group/members.html:15 +#: ckan/templates/organization/member_new.html:64 +#: ckan/templates/organization/member_new.html:68 +#: ckan/templates/organization/members.html:20 +#: ckan/templates/package/collaborators/collaborator_new.html:41 +#: ckan/templates/package/collaborators/collaborators.html:20 +msgid "Role" +msgstr "角色" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +msgid "Are you sure you want to delete this member?" +msgstr "確定要刪除這個成員嗎?" + +#: ckan/templates/group/member_new.html:71 +#: ckan/templates/group/members.html:31 +#: ckan/templates/group/snippets/group_form.html:38 +#: ckan/templates/organization/bulk_process.html:57 +#: ckan/templates/organization/member_new.html:73 +#: ckan/templates/organization/members.html:36 +#: ckan/templates/organization/snippets/organization_form.html:38 +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +#: ckan/templates/package/edit_view.html:19 +#: ckan/templates/package/snippets/package_form.html:39 +#: ckan/templates/package/snippets/resource_form.html:67 +#: ckan/templates/user/edit_user_form.html:50 +msgid "Delete" +msgstr "刪除" + +#: ckan/templates/group/member_new.html:90 +#: ckan/templates/organization/member_new.html:92 +msgid "What are roles?" +msgstr "腳色是什麼?" + +#: ckan/templates/group/member_new.html:93 +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:19 ckan/templates/organization/read.html:25 +#: ckan/templates/snippets/search_form.html:3 +msgid "Search datasets..." +msgstr "搜尋資料集" + +#: ckan/templates/group/snippets/feeds.html:2 +msgid "Datasets in group: {group}" +msgstr "群組{group}中的資料集" + +#: ckan/templates/group/snippets/group_form.html:10 +#: ckan/templates/organization/snippets/organization_form.html:10 +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "Name" +msgstr "名稱" + +#: ckan/templates/group/snippets/group_form.html:10 +msgid "My Group" +msgstr "我的群組" + +#: ckan/templates/group/snippets/group_form.html:20 +msgid "A little information about my group..." +msgstr "關於我的群組的資訊..." + +#: ckan/templates/group/snippets/group_form.html:38 +msgid "Are you sure you want to delete this Group?" +msgstr "確定要刪除這個群組嗎?" + +#: ckan/templates/group/snippets/group_form.html:41 +msgid "Save Group" +msgstr "儲存群組" + +#: ckan/templates/group/snippets/group_item.html:38 +#: ckan/templates/group/snippets/group_item.html:39 +msgid "View {name}" +msgstr "瀏覽 {name}" + +#: 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 群組建立並管理多個資料集。群組可以代表一個主題、專案或是小組,可以幫助使用者快速找尋資料集。 " + +#: ckan/templates/group/snippets/info.html:16 +#: ckan/templates/organization/bulk_process.html:82 +#: ckan/templates/package/read.html:29 +#: ckan/templates/package/snippets/package_basic_fields.html:121 +#: ckan/templates/snippets/organization.html:37 +#: ckan/templates/snippets/package_item.html:42 +msgid "Deleted" +msgstr "刪除" + +#: ckan/templates/group/snippets/info.html:26 +#: ckan/templates/snippets/organization.html:47 +msgid "read more" +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是世界上開放原始碼資料入口平台的領導者。

CKAN是一個瀏覽和使用資料完整現成的軟體– " +"透過提供工具以簡化發布、分享、查找和使用資料(包含儲存資料以及強大的資料API)。CKAN的目的是讓資料的發布者(國家和地區的政府、企業和組織)想要使他們的資料開放、可用。

" +"

CKAN在世界各地的官方及民間組織的資料網站被廣泛的使用,如英國的data.gov.uk以及歐盟的publicdata.eu、巴西的dados.gov.br、荷蘭政府入口網站以及美國、英國、阿根廷、芬蘭和許多其他國家的城市地方政府網站。

" +"

CKAN: http://ckan.org/
CKAN試用: http://ckan.org/tour/
其他相關資料: http://ckan.org/features/

" + +#: ckan/templates/home/snippets/promoted.html:8 +msgid "Welcome to CKAN" +msgstr "歡迎來到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 "這裡是關於 CKAN 或本網站的簡介。目前沒有文案,但很快就會有" + +#: 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 "{0}項統計" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "dataset" +msgstr "資料集" + +#: ckan/templates/home/snippets/stats.html:11 +msgid "datasets" +msgstr "個資料集" + +#: ckan/templates/home/snippets/stats.html:17 +msgid "organizations" +msgstr "組織" + +#: ckan/templates/home/snippets/stats.html:23 +msgid "groups" +msgstr "群組" + +#: ckan/templates/macros/form.html:54 ckan/templates/macros/form.html:287 +msgid "This field is required" +msgstr "此欄位必填" + +#: ckan/templates/macros/form.html:136 +#, python-format +msgid "" +"You can use Markdown formatting here" +msgstr "" +"您可以在此使用 Markdown 格式" + +#: ckan/templates/macros/form.html:243 +msgid "Key" +msgstr "" + +#: ckan/templates/macros/form.html:255 +#: ckan/templates/package/resource_read.html:180 +#: ckan/templates/package/snippets/additional_info.html:7 +#: ckan/templates/snippets/additional_info.html:12 +msgid "Value" +msgstr "值" + +#: ckan/templates/macros/form.html:287 +msgid "Custom" +msgstr "客製" + +#: ckan/templates/macros/form.html:312 +msgid "The form contains invalid entries:" +msgstr "此表格包含無效條目:" + +#: ckan/templates/macros/form.html:417 +msgid "Required field" +msgstr "需要的欄位" + +#: ckan/templates/macros/form.html:432 +msgid "http://example.com/my-image.jpg" +msgstr "http://example.com/my-image.jpg" + +#: ckan/templates/macros/form.html:433 +msgid "Image URL" +msgstr "圖片 URL" + +#: ckan/templates/macros/form.html:459 +msgid "Clear Upload" +msgstr "清除已上傳檔案" + +#: ckan/templates/organization/base_form_page.html:5 +msgid "Add an Organization" +msgstr "新增一個組織" + +#: ckan/templates/organization/base_form_page.html:10 +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:16 +msgid " found for \"{query}\"" +msgstr "根據 \"{query}\" 找到" + +#: ckan/templates/organization/bulk_process.html:18 +msgid "Sorry no datasets found for \"{query}\"" +msgstr "根據\"{query}\"找不到任何資料集" + +#: ckan/templates/organization/bulk_process.html:47 +msgid "Make public" +msgstr "設為公開" + +#: ckan/templates/organization/bulk_process.html:51 +msgid "Make private" +msgstr "設為非公開" + +#: ckan/templates/organization/bulk_process.html:80 +#: ckan/templates/package/read.html:26 +#: ckan/templates/snippets/package_item.html:40 +msgid "Draft" +msgstr "草稿" + +#: ckan/templates/organization/bulk_process.html:85 +#: ckan/templates/package/read.html:9 +#: ckan/templates/package/snippets/package_basic_fields.html:101 +#: ckan/templates/snippets/package_item.html:31 +#: ckan/templates/snippets/private.html:2 +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "Private" +msgstr "非公開" + +#: ckan/templates/organization/bulk_process.html:98 +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 "你確定要刪除組織-{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 "編輯組織" + +#: 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:33 +#: ckan/templates/package/collaborators/collaborator_new.html:31 +#: ckan/templates/user/edit_user_form.html:8 +#: ckan/templates/user/logout_first.html:10 +#: ckan/templates/user/new_user_form.html:5 +#: ckan/templates/user/perform_reset.html:22 +#: ckan/templates/user/read_base.html:75 +#: ckan/templates/user/snippets/login_form.html:20 +msgid "Username" +msgstr "使用者名稱" + +#: ckan/templates/organization/member_new.html:55 +msgid "Email address" +msgstr "電子郵件地址" + +#: ckan/templates/organization/member_new.html:75 +msgid "Update Member" +msgstr "更新成員" + +#: ckan/templates/organization/member_new.html:95 +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/members.html:14 +msgid "{count} member" +msgid_plural "{count} members" +msgstr[0] "{count} 位成員" + +#: ckan/templates/organization/new.html:3 +#: ckan/templates/organization/new.html:5 +#: ckan/templates/organization/new.html:7 +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/snippets/feeds.html:2 +msgid "Datasets in organization: {group}" +msgstr "組織 {group} 中的資料集" + +#: 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 組織來建立、管理與發佈多個資料集。在組織中,每位使用者可擁有不同角色,而得以建立、編輯與發佈資料集。 " + +#: ckan/templates/organization/snippets/organization_form.html:10 +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:38 +msgid "" +"Are you sure you want to delete this Organization? Note*: Deleting cannot be" +" performed while public or private datasets belong to this organization." +msgstr "你確定要刪除這個組織嗎?這樣會刪除屬於這個組織的所有公開和非公開之資料集。" + +#: ckan/templates/organization/snippets/organization_form.html:41 +msgid "Save Organization" +msgstr "儲存組織" + +#: ckan/templates/organization/snippets/organization_item.html:42 +#: ckan/templates/organization/snippets/organization_item.html:43 +msgid "View {organization_name}" +msgstr "查看 {organization_name}" + +#: ckan/templates/package/base.html:24 ckan/templates/package/new.html:9 +#: 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 資料集是眾多資料(例如:檔案)的集合,通常伴隨著對該資料集的描述、其他資訊,以及一個固定網址。資料集亦是使用者進行搜尋時所回傳的結果單位。" + +#: ckan/templates/package/changes.html:9 +#: ckan/templates/package/changes.html:17 +#: ckan/templates/snippets/activities/changed_package.html:20 +msgid "Changes" +msgstr "變更" + +#: ckan/templates/package/confirm_delete.html:12 +msgid "Are you sure you want to delete dataset - {name}?" +msgstr "你確定要刪除資料集-{name}嗎?" + +#: ckan/templates/package/confirm_delete_resource.html:11 +msgid "Are you sure you want to delete resource - {name}?" +msgstr "您確定要刪除資源 - {name} 嗎?" + +#: ckan/templates/package/edit_base.html:13 +msgid "View dataset" +msgstr "瀏覽資料集" + +#: ckan/templates/package/edit_base.html:17 +msgid "Edit metadata" +msgstr "編輯後設資料" + +#: ckan/templates/package/collaborators/collaborators.html:3 +#: ckan/templates/package/edit_base.html:20 +msgid "Collaborators" +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:46 +msgid "Preview" +msgstr "預覽" + +#: ckan/templates/package/edit_view.html:21 +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:13 +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 "" +"若 DataStore 擴充套件未啟用,資料瀏覽檢視可能會較為緩慢且不穩定。進一步資訊請參考 資料瀏覽檢視說明。" + +#: ckan/templates/package/new_view.html:29 +#: ckan/templates/package/snippets/resource_form.html:85 +msgid "Add" +msgstr "新增" + +#: ckan/templates/package/read.html:15 +#: ckan/templates/package/resource_read.html:77 +#, python-format +msgid "" +"You're currently viewing an old version of this dataset. To see the current " +"version, click here." +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:30 +msgid "Edit resource" +msgstr "編輯資源" + +#: ckan/templates/package/resource_edit_base.html:26 +msgid "Views" +msgstr "檢視" + +#: ckan/templates/package/resource_read.html:40 +msgid "API Endpoint" +msgstr "API終端" + +#: ckan/templates/package/resource_read.html:42 +#: ckan/templates/package/snippets/resource_item.html:61 +msgid "Go to resource" +msgstr "前往存取資源" + +#: ckan/templates/package/resource_read.html:44 +#: ckan/templates/package/snippets/resource_item.html:58 +msgid "Download" +msgstr "下載" + +#: ckan/templates/package/resource_read.html:87 +#: ckan/templates/package/resource_read.html:89 +msgid "URL:" +msgstr "網址:" + +#: ckan/templates/package/resource_read.html:97 +msgid "Dataset description:" +msgstr "資料集描述:" + +#: ckan/templates/package/resource_read.html:99 +#, python-format +msgid "Source: %(dataset)s" +msgstr "來源:%(dataset)s" + +#: ckan/templates/package/resource_read.html:139 +msgid "There are no views created for this resource yet." +msgstr "此資源沒有可用的檢視。" + +#: ckan/templates/package/resource_read.html:143 +msgid "Not seeing the views you were expecting?" +msgstr "沒有看到您預期的檢視嗎?" + +#: ckan/templates/package/resource_read.html:148 +msgid "Here are some reasons you may not be seeing expected views:" +msgstr "這裡列出一些可能造成無法檢視的原因:" + +#: ckan/templates/package/resource_read.html:150 +msgid "No view has been created that is suitable for this resource" +msgstr "沒有適用於此資源的檢視" + +#: ckan/templates/package/resource_read.html:151 +msgid "The site administrators may not have enabled the relevant view plugins" +msgstr "系統管理者可能並未啟用相關的檢視擴充套件" + +#: ckan/templates/package/resource_read.html:152 +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 "" +"若此檢視需要 DataStore 支援,則可能為 DataStore 擴充套件未啟用、資料並未上傳至 DataStore,或 DataStore " +"上傳作業尚未完成" + +#: ckan/templates/package/resource_read.html:175 +msgid "Additional Information" +msgstr "其他資訊" + +#: ckan/templates/package/resource_read.html:179 +#: ckan/templates/package/snippets/additional_info.html:6 +#: ckan/templates/snippets/additional_info.html:11 +msgid "Field" +msgstr "欄位" + +#: ckan/templates/package/resource_read.html:185 +msgid "Data last updated" +msgstr "最後更新資料" + +#: ckan/templates/package/resource_read.html:186 +#: ckan/templates/package/resource_read.html:190 +#: ckan/templates/package/resource_read.html:194 +#: ckan/templates/package/resource_read.html:198 +#: ckan/templates/snippets/activity_stream.html:10 +#: ckan/templates/snippets/activity_stream.html:17 +#: ckan/templates/snippets/activity_stream.html:30 +msgid "unknown" +msgstr "未知的" + +#: ckan/templates/package/resource_read.html:189 +msgid "Metadata last updated" +msgstr "最後更新的後設資料" + +#: ckan/templates/package/resource_read.html:193 +#: ckan/templates/package/snippets/additional_info.html:70 +msgid "Created" +msgstr "建立" + +#: ckan/templates/package/resource_read.html:197 +#: ckan/templates/package/snippets/resource_form.html:39 +#: ckan/templates/package/snippets/resource_info.html:19 +msgid "Format" +msgstr "格式" + +#: ckan/templates/package/resource_read.html:201 +#: ckan/templates/package/snippets/package_basic_fields.html:30 +#: ckan/templates/snippets/license.html:20 +msgid "License" +msgstr "授權" + +#: ckan/templates/package/resource_views.html:10 +msgid "New view" +msgstr "新增檢視" + +#: ckan/templates/package/resource_views.html:27 +msgid "This resource has no views" +msgstr "此資源沒有檢視" + +#: ckan/templates/package/resources.html:8 +msgid "Add new resource" +msgstr "加入新資源" + +#: ckan/templates/package/resources.html:20 +#: ckan/templates/package/snippets/resources_list.html:27 +#, python-format +msgid "" +"

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

" +msgstr "

此資料集中沒有資料,新增一些如何?

" + +#: ckan/templates/package/search.html:52 +msgid "API" +msgstr "API (應用程式介面)" + +#: ckan/templates/package/search.html:53 +msgid "API Docs" +msgstr "API 文件" + +#: ckan/templates/package/search.html:55 +msgid "full {format} dump" +msgstr "永久 {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 "您也可以使用%(api_link)s (see %(api_doc_link)s)或下載%(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 "您也可以使用%(api_link)s (see %(api_doc_link)s)註冊。" + +#: 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/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +msgid "Edit Collaborator" +msgstr "編輯協作者" + +#: ckan/templates/package/collaborators/collaborator_new.html:5 +#: ckan/templates/package/collaborators/collaborator_new.html:10 +#: ckan/templates/package/collaborators/collaborator_new.html:50 +msgid "Add Collaborator" +msgstr "新增協作者" + +#: ckan/templates/package/collaborators/collaborator_new.html:8 +msgid "Back to all collaborators" +msgstr "回到所有協作者" + +#: ckan/templates/package/collaborators/collaborator_new.html:44 +#: ckan/templates/package/collaborators/collaborators.html:36 +msgid "Are you sure you want to delete this collaborator?" +msgstr "您確定要刪除這個協作者嗎?" + +#: ckan/templates/package/collaborators/collaborator_new.html:46 +msgid "Update Collaborator" +msgstr "更新協作者" + +#: ckan/templates/package/collaborators/collaborator_new.html:63 +msgid "What are the available roles?" +msgstr "角色是什麼?" + +#: ckan/templates/package/collaborators/collaborator_new.html:67 +msgid "" +"

Admin: In addition to managing the dataset, admins can " +"add and remove collaborators from a dataset.

" +msgstr "

管理者:除管理資料集,管理者也可以新增和移除資料集協作者。

" + +#: ckan/templates/package/collaborators/collaborator_new.html:71 +msgid "" +"

Editor: Editors can edit the dataset and its resources, " +"as well accessing the dataset if private.

Member: " +"Members can access the dataset if private, but not edit it.

" +msgstr "" +"

編輯:可以編輯和刪除資料集與資源,也可以瀏覽設為非公開的資料集。

" +"

成員:可以瀏覽設為非公開的資料集,但無法編輯。

" + +#: ckan/templates/package/collaborators/collaborators.html:7 +msgid "Add Collaborators" +msgstr "新增協作者" + +#: ckan/templates/package/collaborators/collaborators.html:14 +msgid "{count} collaborator" +msgid_plural "{count} collaborators" +msgstr[0] "{count} 位協作者" + +#: 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:25 +#: ckan/templates/package/snippets/additional_info.html:30 +#: ckan/templates/package/snippets/package_metadata_fields.html:14 +msgid "Author" +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:117 +#: ckan/templates/user/read_base.html:90 +msgid "State" +msgstr "狀態" + +#: ckan/templates/package/snippets/additional_info.html:62 +msgid "Last Updated" +msgstr "最後更新" + +#: ckan/templates/package/snippets/cannot_create_package.html:10 +msgid "Before you can create a dataset you need to create an organization." +msgstr "在建立資料集之前必須先建立組織。" + +#: ckan/templates/package/snippets/cannot_create_package.html:13 +msgid "Create a new organization" +msgstr "建立一個新的組織" + +#: ckan/templates/package/snippets/cannot_create_package.html:18 +msgid "There are no organizations to which you can assign this dataset." +msgstr "此資料集沒有可隸屬的組織。" + +#: ckan/templates/package/snippets/cannot_create_package.html:19 +msgid "" +"Ask a system administrator to create an organization before you can " +"continue." +msgstr "請聯繫系統管理員建立一個新的組織後,方可繼續。" + +#: ckan/templates/package/snippets/change_item.html:1 +#, python-format +msgid "On %(timestamp)s, %(username)s:" +msgstr "" + +#: ckan/templates/package/snippets/package_basic_fields.html:4 +#: ckan/templates/package/snippets/view_form.html:8 +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:36 +msgid "Please select the license" +msgstr "請選擇授權" + +#: ckan/templates/package/snippets/package_basic_fields.html:47 +msgid "" +"License definitions and additional information can be found at opendefinition.org" +msgstr "" +"使用協定以及其他相關資訊請見opendefinition.org " + +#: ckan/templates/package/snippets/package_basic_fields.html:79 +#: ckan/templates/snippets/organization.html:23 +msgid "Organization" +msgstr "組織" + +#: ckan/templates/package/snippets/package_basic_fields.html:83 +msgid "No organization" +msgstr "沒有此組織" + +#: ckan/templates/package/snippets/package_basic_fields.html:98 +msgid "Visibility" +msgstr "可見的" + +#: ckan/templates/package/snippets/package_basic_fields.html:101 +msgid "Public" +msgstr "公開" + +#: ckan/templates/package/snippets/package_basic_fields.html:120 +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 "" +"您所選取的資料授權條款僅適用於您上傳至本資料集的所有資源(檔案)。當您送出此表單時,代表您已同意以 Open Database " +"License 釋出本資料集之後設資料。" + +#: 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:43 +msgid "Next: Add Data" +msgstr "下一步:新增資料" + +#: ckan/templates/package/snippets/package_metadata_fields.html:6 +msgid "http://example.com/dataset.json" +msgstr "http://example.com/dataset.json" + +#: ckan/templates/package/snippets/package_metadata_fields.html:10 +msgid "1.0" +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 "Joe Bloggs" + +#: 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 "joe@example.com" + +#: 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:26 +msgid "Data" +msgstr "檔案" + +#: ckan/templates/package/snippets/resource_form.html:26 +msgid "http://example.com/external-data.csv" +msgstr "http://example.com/external-data.csv" + +#: ckan/templates/package/snippets/resource_form.html:30 +msgid "eg. January 2011 Gold Prices" +msgstr "例如: 2011年1月金價" + +#: ckan/templates/package/snippets/resource_form.html:34 +msgid "Some useful notes about the data" +msgstr "一些與此資料有關的紀錄" + +#: ckan/templates/package/snippets/resource_form.html:39 +msgid "eg. CSV, XML or JSON" +msgstr "例如:CSV, XML or JSON" + +#: ckan/templates/package/snippets/resource_form.html:42 +msgid "This will be guessed automatically. Leave blank if you wish" +msgstr "通常狀況下將自動生成,可以保持空白。" + +#: ckan/templates/package/snippets/resource_form.html:53 +msgid "eg. 2012-06-05" +msgstr "例如:2012-06-05" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "File Size" +msgstr "檔案大小" + +#: ckan/templates/package/snippets/resource_form.html:55 +msgid "eg. 1024" +msgstr "例如: 1024" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "MIME Type" +msgstr "MIME格式" + +#: ckan/templates/package/snippets/resource_form.html:57 +#: ckan/templates/package/snippets/resource_form.html:59 +msgid "eg. application/json" +msgstr "例如:application/json" + +#: ckan/templates/package/snippets/resource_form.html:67 +msgid "Are you sure you want to delete this resource?" +msgstr "您確定要刪除此資源嗎?" + +#: ckan/templates/package/snippets/resource_form.html:73 +msgid "Previous" +msgstr "先前的" + +#: ckan/templates/package/snippets/resource_form.html:77 +msgid "Save & add another" +msgstr "儲存並新增其他項目" + +#: ckan/templates/package/snippets/resource_form.html:81 +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:37 +msgid "Explore" +msgstr "探索" + +#: ckan/templates/package/snippets/resource_item.html:49 +msgid "More information" +msgstr "更多資訊" + +#: ckan/templates/package/snippets/resource_view.html:10 +msgid "Fullscreen" +msgstr "全螢幕" + +#: ckan/templates/package/snippets/resource_view.html:18 +msgid "Embed" +msgstr "嵌入" + +#: ckan/templates/package/snippets/resource_view.html:32 +msgid "This resource view is not available at the moment." +msgstr "此資源目前無法瀏覽" + +#: ckan/templates/package/snippets/resource_view.html:72 +msgid "Embed resource view" +msgstr "嵌入資源檢視" + +#: ckan/templates/package/snippets/resource_view.html:75 +msgid "" +"You can copy and paste the embed code into a CMS or blog software that " +"supports raw HTML" +msgstr "您可以將此程式碼複製並貼上至支援 HTML 的內容管理系統或部落格" + +#: ckan/templates/package/snippets/resource_view.html:78 +msgid "Width" +msgstr "寬度" + +#: ckan/templates/package/snippets/resource_view.html:81 +msgid "Height" +msgstr "高度" + +#: ckan/templates/package/snippets/resource_view.html:84 +msgid "Code" +msgstr "程式碼" + +#: ckan/templates/package/snippets/resource_views_list.html:8 +msgid "Resource Preview" +msgstr "資源預覽" + +#: ckan/templates/package/snippets/resources_list.html:14 +msgid "Data and Resources" +msgstr "資料與資源" + +#: ckan/templates/package/snippets/resources_list.html:31 +msgid "This dataset has no data" +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:28 +msgid "Remove Filter" +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/snippets/add_dataset.html:6 +msgid "Add Dataset" +msgstr "新增資料集" + +#: ckan/templates/snippets/datapusher_status.html:8 +msgid "Datapusher status: {status}." +msgstr "Datapusher 狀態:{status}。" + +#: ckan/templates/snippets/disqus_trackback.html:2 +msgid "Trackback URL" +msgstr "引用網址" + +#: ckan/templates/snippets/facet_list.html:85 +msgid "Show More {facet_type}" +msgstr "顯示更多 {facet_type}" + +#: ckan/templates/snippets/facet_list.html:88 +msgid "Show Only Popular {facet_type}" +msgstr "僅顯示熱門的 {facet_type}" + +#: ckan/templates/snippets/facet_list.html:92 +msgid "There are no {facet_type} that match this search" +msgstr "沒有 {facet_type} 符合這個搜尋結果" + +#: ckan/templates/snippets/home_breadcrumb_item.html:2 +msgid "Home" +msgstr "首頁" + +#: ckan/templates/snippets/language_selector.html:3 +msgid "Language" +msgstr "語言" + +#: ckan/templates/snippets/language_selector.html:11 +#: ckan/templates/snippets/search_form.html:42 +#: ckan/templates/snippets/simple_search.html:15 +#: ckan/templates/snippets/sort_by.html:22 +msgid "Go" +msgstr "前往" + +#: ckan/templates/snippets/license.html:8 +msgid "No License Provided" +msgstr "沒有可使用的許可" + +#: ckan/templates/snippets/license.html:27 +msgid "This dataset satisfies the Open Definition." +msgstr "此資料集符合開放的定義" + +#: ckan/templates/snippets/organization.html:50 +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/search_form.html:33 +#: ckan/templates/snippets/simple_search.html:8 +#: ckan/templates/snippets/sort_by.html:12 +msgid "Order by" +msgstr "排序依照" + +#: ckan/templates/snippets/search_form.html:74 +msgid "Filter Results" +msgstr "篩選結果" + +#: ckan/templates/snippets/search_form.html:81 +msgid "

Please try another search.

" +msgstr "

請嘗試其他的搜尋關鍵字

" + +#: ckan/templates/snippets/search_form.html:87 +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] "根據\"{query}\"找到{number}個資料集" + +#: ckan/templates/snippets/search_result_text.html:16 +msgid "No datasets found for \"{query}\"" +msgstr "找不到符合 \"{query}\" 的資料集" + +#: ckan/templates/snippets/search_result_text.html:17 +msgid "{number} dataset found" +msgid_plural "{number} datasets found" +msgstr[0] "找到{number}個資料集" + +#: 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] "根據\"{query}\"找到{number}個群組" + +#: ckan/templates/snippets/search_result_text.html:22 +msgid "No groups found for \"{query}\"" +msgstr "找不到符合 \"{query}\" 的群組" + +#: ckan/templates/snippets/search_result_text.html:23 +msgid "{number} group found" +msgid_plural "{number} groups found" +msgstr[0] "找到{number}個群組" + +#: 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] "根據\"{query}\"找到{number}個組織" + +#: ckan/templates/snippets/search_result_text.html:28 +msgid "No organizations found for \"{query}\"" +msgstr "找不到符合 \"{query}\" 的組織" + +#: ckan/templates/snippets/search_result_text.html:29 +msgid "{number} organization found" +msgid_plural "{number} organizations found" +msgstr[0] "找到{number}個組織" + +#: 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:12 +#: ckan/templates/user/new_user_form.html:7 +#: ckan/templates/user/read_base.html:81 +msgid "Email" +msgstr "電子郵件" + +#: ckan/templates/snippets/subscribe.html:5 +msgid "RSS" +msgstr "RSS" + +#: ckan/templates/snippets/activities/added_tag.html:4 +msgid "{actor} added the tag {tag} to the dataset {dataset}" +msgstr "{actor}在{dataset}資料集中新增了{tag}標籤" + +#: ckan/templates/snippets/activities/changed_group.html:4 +msgid "{actor} updated the group {group}" +msgstr "{actor}更新了{group}群組" + +#: ckan/templates/snippets/activities/changed_organization.html:4 +msgid "{actor} updated the organization {organization}" +msgstr "{actor}更新了{organization}組織" + +#: ckan/templates/snippets/activities/changed_package.html:6 +msgid "{actor} updated the dataset {dataset}" +msgstr "{actor}更新了{dataset}" + +#: ckan/templates/snippets/activities/changed_package.html:16 +#: ckan/templates/snippets/activities/new_package.html:15 +msgid "View this version" +msgstr "查看此版本" + +#: ckan/templates/snippets/activities/changed_resource.html:4 +msgid "{actor} updated the resource {resource} in the dataset {dataset}" +msgstr "{actor} 更新了 {dataset} 資料集中的 {resource} 資源" + +#: ckan/templates/snippets/activities/changed_user.html:4 +msgid "{actor} updated their profile" +msgstr "{actor} 更新了基本資料" + +#: ckan/templates/snippets/activities/deleted_group.html:4 +msgid "{actor} deleted the group {group}" +msgstr "{actor}刪除了{group}群組" + +#: ckan/templates/snippets/activities/deleted_organization.html:4 +msgid "{actor} deleted the organization {organization}" +msgstr "{actor}刪除了{organization}組織" + +#: ckan/templates/snippets/activities/deleted_package.html:4 +msgid "{actor} deleted the dataset {dataset}" +msgstr "{actor}刪除了{dataset}資料集" + +#: ckan/templates/snippets/activities/deleted_resource.html:4 +msgid "{actor} deleted the resource {resource} from the dataset {dataset}" +msgstr "{actor} 刪除了 {dataset} 資料集中的 {resource} 資源" + +#: ckan/templates/snippets/activities/fallback.html:14 +msgid "{actor} {activity_type}" +msgstr "" + +#: ckan/templates/snippets/activities/follow_dataset.html:4 +msgid "{actor} started following {dataset}" +msgstr "{actor}開始關注{dataset}資料集" + +#: ckan/templates/snippets/activities/follow_group.html:4 +msgid "{actor} started following {group}" +msgstr "{actor}開始關注{group}群組" + +#: ckan/templates/snippets/activities/follow_user.html:4 +msgid "{actor} started following {user}" +msgstr "{actor}開始關注{user}使用者" + +#: ckan/templates/snippets/activities/new_group.html:4 +msgid "{actor} created the group {group}" +msgstr "{actor}建立了{group}群組" + +#: ckan/templates/snippets/activities/new_organization.html:4 +msgid "{actor} created the organization {organization}" +msgstr "{actor}建立了{organization}組織" + +#: ckan/templates/snippets/activities/new_package.html:5 +msgid "{actor} created the dataset {dataset}" +msgstr "{actor}建立了{dataset}資料集" + +#: ckan/templates/snippets/activities/new_resource.html:4 +msgid "{actor} added the resource {resource} to the dataset {dataset}" +msgstr "{actor} 在 {dataset} 資料集中新增了 {resource} 資源" + +#: ckan/templates/snippets/activities/new_user.html:4 +msgid "{actor} signed up" +msgstr "{actor} 已登錄" + +#: ckan/templates/snippets/activities/removed_tag.html:4 +msgid "{actor} removed the tag {tag} from the dataset {dataset}" +msgstr "{actor}移除了{dataset}資料集中的{tag}標籤" + +#: ckan/templates/snippets/changes/author.html:5 +msgid "Set author of {pkg_link} to {new_author} (previously {old_author})" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:17 +msgid "Set author of {pkg_link} to {new_author}" +msgstr "" + +#: ckan/templates/snippets/changes/author.html:28 +msgid "Removed author from {pkg_link}" +msgstr "移除 {pkg_link} 的作者" + +#: ckan/templates/snippets/changes/author.html:38 +#: ckan/templates/snippets/changes/author_email.html:45 +#: ckan/templates/snippets/changes/extra_fields.html:109 +#: ckan/templates/snippets/changes/maintainer.html:38 +#: ckan/templates/snippets/changes/maintainer_email.html:47 +#: ckan/templates/snippets/changes/no_change.html:3 +#: ckan/templates/snippets/changes/notes.html:38 +#: ckan/templates/snippets/changes/org.html:54 +#: ckan/templates/snippets/changes/resource_desc.html:56 +#: ckan/templates/snippets/changes/resource_extras.html:164 +#: ckan/templates/snippets/changes/resource_format.html:54 +#: ckan/templates/snippets/changes/tags.html:83 +#: ckan/templates/snippets/changes/url.html:47 +#: ckan/templates/snippets/changes/version.html:38 +msgid "No fields were updated. See the metadata diff for more details." +msgstr "未更新任何欄位。請參閱後設資料差異以獲得更多詳細資訊。" + +#: ckan/templates/snippets/changes/author_email.html:5 +msgid "" +"Set author email of {pkg_link} to {new_author_email} (previously " +"{old_author_email})" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:23 +msgid "Set author email of {pkg_link} to {new_author_email}" +msgstr "" + +#: ckan/templates/snippets/changes/author_email.html:36 +msgid "Removed author email from {pkg_link}" +msgstr "移除 {pkg_link} 的作者電子郵件" + +#: ckan/templates/snippets/changes/delete_resource.html:3 +msgid "Deleted resource {resource_link} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extension_fields.html:3 +msgid "Changed value of field {key} to {value} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:5 +msgid "Added field {key} with value {value} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:17 +msgid "Added field {key} to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:28 +msgid "Added the following fields to {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:39 +#: ckan/templates/snippets/changes/resource_extras.html:56 +msgid "{key} with value {value}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:44 +#: ckan/templates/snippets/changes/resource_extras.html:61 +#: ckan/templates/snippets/changes/resource_extras.html:102 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:54 +msgid "" +"Changed value of field {key} to {new_val} (previously " +"{old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:67 +msgid "Changed value of field {key} to {new_val} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:79 +msgid "Removed field {key} from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:90 +msgid "Removed the following fields from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/extra_fields.html:100 +msgid "{key}" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:6 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:25 +msgid "" +"Changed the license of {pkg_link} to {new_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:41 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_link})" +msgstr "" + +#: ckan/templates/snippets/changes/license.html:58 +msgid "" +"Changed the license of {pkg_link} to {new_title} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:5 +msgid "" +"Set maintainer of {pkg_link} to {new_maintainer} (previously " +"{old_maintainer})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:17 +msgid "Set maintainer of {pkg_link} to {new_maintainer}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer.html:28 +msgid "Removed maintainer from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:5 +msgid "" +"Set maintainer email of {pkg_link} to {new_email} (previously {old_email})" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:23 +msgid "Set maintainer email of {pkg_link} to {new_email}" +msgstr "" + +#: ckan/templates/snippets/changes/maintainer_email.html:37 +msgid "Removed maintainer email from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/name.html:3 +msgid "Moved {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_file.html:3 +msgid "Uploaded a new file to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/new_resource.html:15 +msgid "Added resource {resource_link} to {pkg_link}" +msgstr "新增資源 {resource_link} 至 {pkg_link}" + +#: ckan/templates/snippets/changes/notes.html:5 +msgid "" +"Updated description of {pkg_link} from
{old_notes}
to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:17 +msgid "" +"Updated description of {pkg_link} to
{new_notes}
" +msgstr "" + +#: ckan/templates/snippets/changes/notes.html:28 +msgid "Removed description from {pkg_link}" +msgstr "移除 {pkg_link} 的描述" + +#: ckan/templates/snippets/changes/org.html:5 +msgid "" +"Moved {pkg_link} from organization {old_org_link} to organization " +"{new_org_link}" +msgstr "將 {pkg_link} 從組織 {old_org_link} 移至組織 {new_org_link}" + +#: ckan/templates/snippets/changes/org.html:25 +msgid "Removed {pkg_link} from organization {old_org_link}" +msgstr "從組織 {old_org_link} 中移除 {pkg_link}" + +#: ckan/templates/snippets/changes/org.html:40 +msgid "Added {pkg_link} to organization {new_org_link}" +msgstr "新增 {pkg_link} 至組織 {new_org_link}" + +#: ckan/templates/snippets/changes/private.html:3 +msgid "Set visibility of {pkg_link} to {visibility}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:5 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} to
{new_desc}
" +msgstr "" +"更新屬於資料集 {pkg_link} 的資源 {resource_link} 的說明為
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_desc.html:22 +msgid "Removed description from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_desc.html:38 +msgid "" +"Updated description of resource {resource_link} in {pkg_link} from
{old_desc}
to
{new_desc}
" +msgstr "" +"更新屬於資料集 {pkg_link} 的資源 {resource_link} 的說明,由
{old_desc}
改為
{new_desc}
" + +#: ckan/templates/snippets/changes/resource_extras.html:5 +msgid "" +"Added field {key} with value {value} to resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:23 +msgid "Added field {key} to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:40 +msgid "Added the following fields to resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:70 +msgid "Removed field {key} from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:87 +msgid "" +"Removed the following fields from resource {resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:110 +msgid "" +"Changed value of field {key} of resource {resource_link} to " +"{new_val} (previously {old_val}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:129 +msgid "" +"Changed value of field {key} to {new_val} in resource " +"{resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_extras.html:147 +msgid "" +"Removed the value of field {key} in resource {resource_link} in " +"{pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:10 +msgid "Set format of resource {resource_link} to {format_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_format.html:30 +msgid "" +"Set format of resource {resource_link} to {new_format_link} (previously " +"{old_format_link}) in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/resource_name.html:3 +msgid "" +"Renamed resource {old_resource_link} to {new_resource_link} in {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:5 +msgid "Removed tag {tag_link} from {pkg_link}" +msgstr "移除 {pkg_link} 的標籤 {tag_link}" + +#: ckan/templates/snippets/changes/tags.html:20 +msgid "Removed the following tags from {pkg_link}" +msgstr "從 {pkg_link} 中移除下列標籤" + +#: ckan/templates/snippets/changes/tags.html:31 +#: ckan/templates/snippets/changes/tags.html:70 +msgid "{tag_link}" +msgstr "" + +#: ckan/templates/snippets/changes/tags.html:44 +msgid "Added tag {tag_link} to {pkg_link}" +msgstr "新增標籤 {tag_link} 至 {pkg_link}" + +#: ckan/templates/snippets/changes/tags.html:59 +msgid "Added the following tags to {pkg_link}" +msgstr "新增下列標籤至 {pkg_link}" + +#: ckan/templates/snippets/changes/title.html:3 +msgid "Changed title to {title_link} (previously {old_title})" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:5 +msgid "Changed the source URL of {pkg_link} from {old_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:23 +msgid "Removed the source URL from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/url.html:33 +msgid "Changed the source URL of {pkg_link} to {new_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:5 +msgid "" +"Changed the version of {pkg_link} to {new_version} (previously " +"{old_version})" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:17 +msgid "Removed the version from {pkg_link}" +msgstr "" + +#: ckan/templates/snippets/changes/version.html:27 +msgid "Changed the version of {pkg_link} to {new_version}" +msgstr "" + +#: ckan/templates/tag/index.html:33 ckan/templates/tag/index.html:34 +msgid "Search Tags" +msgstr "搜尋標籤" + +#: ckan/templates/user/api_tokens.html:19 +msgid "Create API Token" +msgstr "建立 API Token" + +#: ckan/templates/user/api_tokens.html:29 +#: ckan/templates/user/read_base.html:22 +msgid "API Tokens" +msgstr "" + +#: ckan/templates/user/api_tokens.html:37 +msgid "You haven't created any API Tokens." +msgstr "您尚未建立任何 API Token" + +#: 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:20 +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:23 +#: ckan/templates/user/read.html:22 +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:21 +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使用者了解你是誰以及你從事什麼。" + +#: ckan/templates/user/edit_user_form.html:7 +msgid "Change details" +msgstr "修改資料" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "Full name" +msgstr "全名" + +#: ckan/templates/user/edit_user_form.html:10 +msgid "eg. Joe Bloggs" +msgstr "例如:Joe Bloggs" + +#: ckan/templates/user/edit_user_form.html:12 +msgid "eg. joe@example.com" +msgstr "例如:joe@example.com" + +#: ckan/templates/user/edit_user_form.html:14 +msgid "A little information about yourself" +msgstr "一些關於你自己的資訊" + +#: ckan/templates/user/edit_user_form.html:17 +msgid "Subscribe to notification emails" +msgstr "訂閱通知郵件" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture" +msgstr "個人資料圖片" + +#: ckan/templates/user/edit_user_form.html:26 +#: ckan/templates/user/new_user_form.html:14 +msgid "Profile picture URL" +msgstr "個人資料圖片網址" + +#: ckan/templates/user/edit_user_form.html:31 +msgid "Change password" +msgstr "變更密碼" + +#: ckan/templates/user/edit_user_form.html:34 +msgid "Sysadmin Password" +msgstr "系統管理員密碼" + +#: ckan/templates/user/edit_user_form.html:42 +#: ckan/templates/user/logout_first.html:11 +#: ckan/templates/user/new_user_form.html:8 +#: ckan/templates/user/perform_reset.html:25 +#: ckan/templates/user/snippets/login_form.html:22 +msgid "Password" +msgstr "密碼" + +#: ckan/templates/user/edit_user_form.html:44 +msgid "Confirm Password" +msgstr "確認密碼" + +#: ckan/templates/user/edit_user_form.html:50 +msgid "Are you sure you want to delete this User?" +msgstr "確定要刪除這個成員嗎?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Are you sure you want to regenerate the API key?" +msgstr "您確定要重新產生 API 金鑰嗎?" + +#: ckan/templates/user/edit_user_form.html:55 +msgid "Regenerate API Key" +msgstr "重新產生 API 金鑰" + +#: ckan/templates/user/edit_user_form.html:59 +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 "您已經以{user}的身分登入。" + +#: ckan/templates/user/logout_first.html:9 +msgid "Logout" +msgstr "登出" + +#: ckan/templates/user/logout_first.html:12 +#: ckan/templates/user/snippets/login_form.html:24 +msgid "Remember me" +msgstr "記住我" + +#: ckan/templates/user/logout_first.html:20 +msgid "You're already logged in" +msgstr "您已經登入" + +#: ckan/templates/user/logout_first.html:22 +msgid "You need to log out before you can log in with another account." +msgstr "您必須先登出才能用其他帳號登入。" + +#: ckan/templates/user/logout_first.html:23 +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:27 +msgid "Create Account" +msgstr "建立帳號" + +#: ckan/templates/user/perform_reset.html:4 +#: ckan/templates/user/perform_reset.html:15 +msgid "Reset Your Password" +msgstr "重設您的密碼" + +#: ckan/templates/user/perform_reset.html:7 +#: ckan/templates/user/request_reset.html:6 +msgid "Password Reset" +msgstr "密碼重設" + +#: ckan/templates/user/perform_reset.html:21 +msgid "You can also change username. It can not be modified later." +msgstr "現在可以更改用戶名,但以後不能修改" + +#: ckan/templates/user/perform_reset.html:29 +msgid "Update Password" +msgstr "更新密碼" + +#: ckan/templates/user/perform_reset.html:43 +#: ckan/templates/user/request_reset.html:36 +msgid "How does this work?" +msgstr "這樣如何?" + +#: ckan/templates/user/perform_reset.html:45 +msgid "Simply enter a new password and we'll update your account" +msgstr "簡單地輸入新密碼即可更新您的帳號" + +#: ckan/templates/user/read.html:27 +msgid "User hasn't created any datasets." +msgstr "使用者尚未建立任何資料集。" + +#: ckan/templates/user/read_base.html:42 +msgid "You have not provided a biography." +msgstr "您尚未提供自我介紹。" + +#: ckan/templates/user/read_base.html:44 +msgid "This user has no biography." +msgstr "此使用者沒有自我介紹。" + +#: ckan/templates/user/read_base.html:72 +msgid "Open ID" +msgstr "Open ID" + +#: ckan/templates/user/read_base.html:81 ckan/templates/user/read_base.html:95 +msgid "This means only you can see this" +msgstr "這表示只有你自己有權限瀏覽" + +#: ckan/templates/user/read_base.html:86 +msgid "Member Since" +msgstr "會員註冊日" + +#: ckan/templates/user/read_base.html:95 +msgid "API Key" +msgstr "API Key" + +#: ckan/templates/user/request_reset.html:3 +#: ckan/templates/user/request_reset.html:13 +msgid "Reset your password" +msgstr "重設您的密碼" + +#: ckan/templates/user/request_reset.html:17 +msgid "Email or username" +msgstr "電子郵件或使用者名稱" + +#: ckan/templates/user/request_reset.html:22 +msgid "Request Reset" +msgstr "請求重設" + +#: ckan/templates/user/request_reset.html:38 +msgid "" +"Enter your email address or username into the box and we will send you an " +"email with a link to enter a new password." +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:13 +msgid "Token" +msgstr "" + +#: ckan/templates/user/snippets/api_token_list.html:14 +msgid "Last access" +msgstr "最後存取" + +#: ckan/templates/user/snippets/api_token_list.html:15 +msgid "Actions" +msgstr "操作" + +#: ckan/templates/user/snippets/api_token_list.html:40 +msgid "Revoke" +msgstr "撤銷" + +#: ckan/templates/user/snippets/followee_dropdown.html:15 +#: ckan/templates/user/snippets/followee_dropdown.html:16 +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 "搜尋使用者" + +#: ckan/views/admin.py:203 +msgid "Massive purge complete" +msgstr "全部清除完成" + +#: ckan/views/admin.py:212 +msgid "success" +msgstr "" + +#: ckan/views/dataset.py:360 +msgid "Parameter u\"{parameter_name}\" is not an integer" +msgstr "" + +#: ckan/views/dataset.py:451 ckan/views/dataset.py:469 +#: ckan/views/dataset.py:1132 ckan/views/dataset.py:1213 +#: ckan/views/resource.py:81 +msgid "Activity not found" +msgstr "" + +#: ckan/views/dataset.py:453 ckan/views/dataset.py:1134 +#: ckan/views/dataset.py:1215 +msgid "Unauthorized to view activity data" +msgstr "" + +#: ckan/views/dataset.py:462 +msgid "The detail of this dataset activity is not available" +msgstr "" + +#: ckan/views/dataset.py:604 +msgid "Unauthorized to read package" +msgstr "" + +#: ckan/views/dataset.py:1249 +msgid "Unauthorized to read collaborators {}" +msgstr "沒有權限讀取協作者 {}" + +#: ckan/views/dataset.py:1267 +msgid "Unauthorized to delete collaborators {}" +msgstr "沒有刪除協作者 {} 的權限" + +#: ckan/views/dataset.py:1272 +msgid "User removed from collaborators" +msgstr "協作者已被刪除" + +#: ckan/views/dataset.py:1304 +msgid "Unauthorized to edit collaborators {}" +msgstr "沒有編輯協作者 {} 的權限" + +#: ckan/views/dataset.py:1311 +msgid "User added to collaborators" +msgstr "已新增協作者" + +#: ckan/views/user.py:169 +msgid "Unauthorized to view API tokens." +msgstr "沒有檢視 API Token 的權限" + +#: ckan/views/user.py:203 +msgid "Unauthorized to create API tokens." +msgstr "沒有建立 API Token 的權限" + +#: ckan/views/user.py:218 +msgid "" +"API Token created: {token} " +"{copy}
Make sure to copy it now, you won't be able to see it again!" +msgstr "" +"已建立 API Token:{token} " +"{copy}
請務必立刻把它複製下來,此 Token 將不會再顯示!" + +#: ckan/views/user.py:234 +msgid "Unauthorized to revoke API tokens." +msgstr "沒有撤銷 API Token 的權限" + +#: ckan/views/user.py:706 +msgid "Your password must be 8 characters or longer." +msgstr "密碼長度至少要8個字元" + +#: ckan/views/util.py:26 +msgid "Redirecting to external site is not allowed." +msgstr "禁止重新導向至外部網站。" diff --git a/ckan/lib/base.py b/ckan/lib/base.py index aa1bce30226..dcbfc2db972 100644 --- a/ckan/lib/base.py +++ b/ckan/lib/base.py @@ -93,7 +93,7 @@ def render_snippet(*template_names, **kw): for template_name in template_names: try: output = render(template_name, extra_vars=kw) - if config.get('debug'): + if asbool(config.get('debug')): output = ( '\n\n%s\n' '\n' % (template_name, output, template_name)) diff --git a/ckan/lib/captcha.py b/ckan/lib/captcha.py index aff2df033ac..967512922cc 100644 --- a/ckan/lib/captcha.py +++ b/ckan/lib/captcha.py @@ -1,9 +1,11 @@ # encoding: utf-8 -from ckan.common import config +from ckan.common import config, asint import requests +TIMEOUT = asint(config.get('ckan.requests.timeout', 5)) + def check_recaptcha(request): '''Check a user\'s recaptcha submission is valid, and raise CaptchaError @@ -28,7 +30,7 @@ def check_recaptcha(request): remoteip=client_ip_address, response=recaptcha_response_field.encode('utf8') ) - response = requests.get(recaptcha_server_name, params) + response = requests.get(recaptcha_server_name, params, timeout=TIMEOUT) data = response.json() try: diff --git a/ckan/lib/helpers.py b/ckan/lib/helpers.py index fc8b6979583..d5d95730926 100644 --- a/ckan/lib/helpers.py +++ b/ckan/lib/helpers.py @@ -16,12 +16,10 @@ import copy import uuid -from paste.deploy import converters - import dominate.tags as dom_tags from markdown import markdown from bleach import clean as bleach_clean, ALLOWED_TAGS, ALLOWED_ATTRIBUTES -from ckan.common import config, is_flask_request +from ckan.common import config, is_flask_request, asbool from flask import redirect as _flask_redirect from flask import _request_ctx_stack from flask import url_for as _flask_default_url_for @@ -424,16 +422,29 @@ def _url_for_flask(*args, **kw): kw.pop('host', None) kw.pop('protocol', None) if kw: - my_url += '?' query_args = [] for key, val in kw.items(): if isinstance(val, (list, tuple)): for value in val: + if value is None: + continue query_args.append( - u'{}={}'.format(quote(key), quote(value))) + u'{}={}'.format( + quote(str(key)), + quote(str(value)) + ) + ) else: + if val is None: + continue query_args.append( - u'{}={}'.format(quote(key), quote(val))) + u'{}={}'.format( + quote(str(key)), + quote(str(val)) + ) + ) + if query_args: + my_url += '?' my_url += '&'.join(query_args) else: raise @@ -1163,8 +1174,9 @@ def get_facet_items_dict( if search_facets is None: search_facets = getattr(c, u'search_facets', None) - if not search_facets or not search_facets.get( - facet, {}).get('items'): + if not search_facets \ + or not isinstance(search_facets, dict) \ + or not search_facets.get(facet, {}).get('items'): return [] facets = [] for facet_item in search_facets.get(facet)['items']: @@ -1214,7 +1226,7 @@ def has_more_facets(facet, search_facets, limit=None, exclude_active=False): facets.append(dict(active=False, **facet_item)) elif not exclude_active: facets.append(dict(active=True, **facet_item)) - if c.search_facets_limits and limit is None: + if getattr(c, 'search_facets_limits', None) and limit is None: limit = c.search_facets_limits.get(facet) if limit is not None and len(facets) > limit: return True @@ -2794,7 +2806,8 @@ def license_options(existing_license_id=None): license_ids.insert(0, existing_license_id) return [ (license_id, - register[license_id].title if license_id in register else license_id) + _(register[license_id].title) + if license_id in register else license_id) for license_id in license_ids] @@ -2845,8 +2858,8 @@ def clean_html(html): core_helper(i18n.get_available_locales) core_helper(i18n.get_locales_dict) core_helper(literal) -# Useful additions from the paste library. -core_helper(converters.asbool) +# Useful additions from the common module +core_helper(asbool) # Useful additions from the stdlib. core_helper(urlencode) core_helper(include_asset) diff --git a/ckan/lib/i18n.py b/ckan/lib/i18n.py index 982e618a4ed..33388147982 100644 --- a/ckan/lib/i18n.py +++ b/ckan/lib/i18n.py @@ -41,6 +41,7 @@ import logging import os import os.path +from io import open import six from babel import Locale @@ -351,9 +352,9 @@ def _build_js_translation(lang, source_filenames, entries, dest_filename): ordered_plural = sorted(entry.msgstr_plural.items()) for order, msgstr in ordered_plural: plural.append(msgstr) - with open(dest_filename, u'w') as f: + with open(dest_filename, u'w', encoding='utf-8') as f: s = json.dumps(result, sort_keys=True, indent=2, ensure_ascii=False) - f.write(six.ensure_str(s)) + f.write(s) def build_js_translations(): diff --git a/ckan/lib/io.py b/ckan/lib/io_.py similarity index 100% rename from ckan/lib/io.py rename to ckan/lib/io_.py diff --git a/ckan/lib/jobs.py b/ckan/lib/jobs.py index 73df1362635..979309ae960 100644 --- a/ckan/lib/jobs.py +++ b/ckan/lib/jobs.py @@ -270,13 +270,19 @@ def execute_job(self, job, *args, **kwargs): # The original implementation performs the actual fork queue = remove_queue_name_prefix(job.origin) + + if job.meta.get(u'title'): + job_id = u'{} ({})'.format(job.id, job.meta['title']) + else: + job_id = job.id + log.info(u'Worker {} starts job {} from queue "{}"'.format( - self.key, job.id, queue)) + self.key, job_id, queue)) for plugin in plugins.PluginImplementations(plugins.IForkObserver): plugin.before_fork() result = super(Worker, self).execute_job(job, *args, **kwargs) log.info(u'Worker {} has finished job {} from queue "{}"'.format( - self.key, job.id, queue)) + self.key, job_id, queue)) return result diff --git a/ckan/lib/munge.py b/ckan/lib/munge.py index 8db3438a83f..6488404e62f 100644 --- a/ckan/lib/munge.py +++ b/ckan/lib/munge.py @@ -11,7 +11,7 @@ from six import text_type from ckan import model -from ckan.lib.io import decode_path +from ckan.lib.io_ import decode_path # Maximum length of a filename's extension (including the '.') MAX_FILENAME_EXTENSION_LENGTH = 21 diff --git a/ckan/lib/navl/dictization_functions.py b/ckan/lib/navl/dictization_functions.py index 314600d3779..ae13d79f188 100644 --- a/ckan/lib/navl/dictization_functions.py +++ b/ckan/lib/navl/dictization_functions.py @@ -254,6 +254,18 @@ def convert(converter, key, converted_data, errors, context): return +def _remove_blank_keys(schema): + + for key, value in list(schema.items()): + if isinstance(value[0], dict): + for item in value: + _remove_blank_keys(item) + if not any(value): + schema.pop(key) + + return schema + + def validate(data, schema, context=None): '''Validate an unflattened nested dict against a schema.''' context = context or {} @@ -280,12 +292,21 @@ def validate(data, schema, context=None): if key not in converted_data: converted_data[key] = [] + errors_unflattened = unflatten(errors) + # remove validators that passed - for key in list(errors.keys()): - if not errors[key]: - del errors[key] + dicts_to_process = [errors_unflattened] + while dicts_to_process: + dict_to_process = dicts_to_process.pop() + dict_to_process_copy = copy.copy(dict_to_process) + for key, value in dict_to_process_copy.items(): + if not value: + dict_to_process.pop(key) + continue + if isinstance(value[0], dict): + dicts_to_process.extend(value) - errors_unflattened = unflatten(errors) + _remove_blank_keys(errors_unflattened) return converted_data, errors_unflattened diff --git a/ckan/lib/search/__init__.py b/ckan/lib/search/__init__.py index 5f571b68357..89b7da80775 100644 --- a/ckan/lib/search/__init__.py +++ b/ckan/lib/search/__init__.py @@ -5,11 +5,12 @@ import sys import cgitb import warnings +import base64 import xml.dom.minidom import requests -from ckan.common import asbool, config +from ckan.common import asbool, asint, config import ckan.model as model import ckan.plugins as p import ckan.logic as logic @@ -27,6 +28,7 @@ log = logging.getLogger(__name__) +TIMEOUT = asint(config.get('ckan.requests.timeout', 5)) def text_traceback(): with warnings.catch_warnings(): @@ -37,7 +39,7 @@ def text_traceback(): return res -SUPPORTED_SCHEMA_VERSIONS = ['2.8', '2.9'] +SUPPORTED_SCHEMA_VERSIONS = ['2.8', '2.9', '2.10'] DEFAULT_OPTIONS = { 'limit': 20, @@ -256,18 +258,15 @@ def clear_all(): def _get_schema_from_solr(file_offset): solr_url, solr_user, solr_password = SolrSettings.get() - http_auth = None - if solr_user is not None and solr_password is not None: - http_auth = solr_user + ':' + solr_password - http_auth = 'Basic ' + http_auth.encode('base64').strip() - url = solr_url.strip('/') + file_offset - if http_auth: + if solr_user is not None and solr_password is not None: response = requests.get( - url, headers={'Authorization': http_auth}) + url, + timeout=TIMEOUT, + auth=requests.auth.HTTPBasicAuth(solr_user, solr_password)) else: - response = requests.get(url) + response = requests.get(url, timeout=TIMEOUT) return response @@ -318,7 +317,15 @@ def check_solr_schema_version(schema_file=None): tree = xml.dom.minidom.parseString(schema_content) - version = tree.documentElement.getAttribute('version') + # Up to CKAN 2.9 the schema version was stored in the `version` attribute. + # Going forward, we are storing it in the `name` one in the form `ckan-X.Y` + version = '' + name_attr = tree.documentElement.getAttribute('name') + if name_attr.startswith('ckan-'): + version = name_attr.split('-')[1] + else: + version = tree.documentElement.getAttribute('version') + if not len(version): msg = 'Could not extract version info from the SOLR schema' if schema_file: diff --git a/ckan/lib/search/query.py b/ckan/lib/search/query.py index 4d83f850e63..c2646f86868 100644 --- a/ckan/lib/search/query.py +++ b/ckan/lib/search/query.py @@ -366,6 +366,9 @@ def run(self, query, permission_labels=None, **kwargs): query['mm'] = query.get('mm', '2<-1 5<80%') query['qf'] = query.get('qf', QUERY_FIELDS) + query.setdefault("df", "text") + query.setdefault("q.op", "AND") + try: if query['q'].startswith('{!'): raise SearchError('Local parameters are not supported.') diff --git a/ckan/lib/uploader.py b/ckan/lib/uploader.py index 146e1fe28aa..7a6b4477bd5 100644 --- a/ckan/lib/uploader.py +++ b/ckan/lib/uploader.py @@ -13,7 +13,7 @@ import ckan.lib.munge as munge import ckan.logic as logic import ckan.plugins as plugins -from ckan.common import config +from ckan.common import config, aslist ALLOWED_UPLOAD_TYPES = (cgi.FieldStorage, FlaskFileStorage) MB = 1 << 20 @@ -173,6 +173,8 @@ def upload(self, max_size=2): anything unless the request is actually good. max_size is size in MB maximum of the file''' + self.verify_type() + if self.filename: with open(self.tmp_filepath, 'wb+') as output_file: try: @@ -192,6 +194,31 @@ def upload(self, max_size=2): except OSError: pass + def verify_type(self): + if not self.filename: + return + + mimetypes = aslist( + config.get("ckan.upload.{}.mimetypes".format(self.object_type))) + + types = aslist( + config.get("ckan.upload.{}.types".format(self.object_type))) + + if not mimetypes and not types: + return + + actual = magic.from_buffer(self.upload_file.read(1024), mime=True) + self.upload_file.seek(0, os.SEEK_SET) + err = {self.file_field: [ + "Unsupported upload type: {actual}".format(actual=actual)]} + + if mimetypes and actual not in mimetypes: + raise logic.ValidationError(err) + + type_ = actual.split("/")[0] + if types and type_ not in types: + raise logic.ValidationError(err) + class ResourceUpload(object): def __init__(self, resource): diff --git a/ckan/logic/__init__.py b/ckan/logic/__init__.py index 25f4f308b5c..430a5718574 100644 --- a/ckan/logic/__init__.py +++ b/ckan/logic/__init__.py @@ -328,6 +328,33 @@ def clear_actions_cache(): def chained_action(func): + '''Decorator function allowing action function to be chained. + + This allows a plugin to modify the behaviour of an existing action + function. A Chained action function must be defined as + ``action_function(original_action, context, data_dict)`` where the + first parameter will be set to the action function in the next plugin + or in core ckan. The chained action may call the original_action + function, optionally passing different values, handling exceptions, + returning different values and/or raising different exceptions + to the caller. + + Usage:: + + from ckan.plugins.toolkit import chained_action + + @chained_action + @side_effect_free + def package_search(original_action, context, data_dict): + return original_action(context, data_dict) + + :param func: chained action function + :type func: callable + + :returns: chained action function + :rtype: callable + + ''' func.chained_action = True return func @@ -645,6 +672,32 @@ def auth_disallow_anonymous_access(action): def chained_auth_function(func): ''' Decorator function allowing authentication functions to be chained. + + This chain starts with the last chained auth function to be registered and + ends with the original auth function (or a non-chained plugin override + version). Chained auth functions must accept an extra parameter, + specifically the next auth function in the chain, for example:: + + auth_function(next_auth, context, data_dict). + + The chained auth function may call the next_auth function, optionally + passing different values, handling exceptions, returning different + values and/or raising different exceptions to the caller. + + Usage:: + + from ckan.plugins.toolkit import chained_auth_function + + @chained_auth_function + @auth_allow_anonymous_access + def user_show(next_auth, context, data_dict=None): + return next_auth(context, data_dict) + + :param func: chained authentication function + :type func: callable + + :returns: chained authentication function + :rtype: callable ''' func.chained_auth_function = True return func diff --git a/ckan/logic/action/create.py b/ckan/logic/action/create.py index baa890cac00..17e9cb6968e 100644 --- a/ckan/logic/action/create.py +++ b/ckan/logic/action/create.py @@ -1172,9 +1172,11 @@ def user_invite(context, data_dict): _get_action('user_delete')(context, {'id': user.id}) - msg = _('Error sending the invite email, ' + - 'the user was not created: {0}').format(error) - raise ValidationError({'message': msg}, error_summary=msg) + error_dict = { + "message": _('Error sending the invite email, \ + the user was not created: {0}').format(error) + } + raise ValidationError(error_dict, error_summary=error_dict) return model_dictize.user_dictize(user, context) diff --git a/ckan/logic/action/get.py b/ckan/logic/action/get.py index 25269bbd95e..a8d2ff23da5 100644 --- a/ckan/logic/action/get.py +++ b/ckan/logic/action/get.py @@ -831,7 +831,7 @@ def user_list(context, data_dict): model.User.name.label('name'), model.User.fullname.label('fullname'), model.User.about.label('about'), - model.User.about.label('email'), + model.User.email.label('email'), model.User.created.label('created'), _select([_func.count(model.Package.id)], _and_( diff --git a/ckan/logic/action/update.py b/ckan/logic/action/update.py index 44389efcee9..0fbb183a274 100644 --- a/ckan/logic/action/update.py +++ b/ckan/logic/action/update.py @@ -65,7 +65,6 @@ def resource_update(context, data_dict): ''' model = context['model'] - user = context['user'] id = _get_or_bust(data_dict, "id") if not data_dict.get('url'): @@ -411,7 +410,7 @@ def package_revise(context, data_dict): * Change description in dataset, checking for old description:: match={"notes": "old notes", "name": "xyz"} - date={"notes": "new notes"} + update={"notes": "new notes"} * Identical to above, but using flattened keys:: @@ -899,8 +898,6 @@ def user_generate_apikey(context, data_dict): :rtype: dictionary ''' model = context['model'] - user = context['user'] - session = context['session'] schema = context.get('schema') or schema_.default_generate_apikey_user_schema() context['schema'] = schema # check if user id in data_dict @@ -949,8 +946,7 @@ def task_status_update(context, data_dict): ''' model = context['model'] - session = model.Session - context['session'] = session + session = context['session'] id = data_dict.get("id") schema = context.get('schema') or schema_.default_task_status_schema() @@ -1177,7 +1173,6 @@ def package_owner_org_update(context, data_dict): :type organization_id: string ''' model = context['model'] - user = context['user'] name_or_id = data_dict.get('id') organization_id = data_dict.get('organization_id') diff --git a/ckan/logic/schema.py b/ckan/logic/schema.py index 02a8c984e34..4f4ad66d2ea 100644 --- a/ckan/logic/schema.py +++ b/ckan/logic/schema.py @@ -414,11 +414,9 @@ def default_user_schema( @validator_args def user_new_form_schema( unicode_safe, user_both_passwords_entered, - user_password_validator, user_passwords_match, - email_is_unique): + user_password_validator, user_passwords_match): schema = default_user_schema() - schema['email'] = [email_is_unique] schema['password1'] = [text_type, user_both_passwords_entered, user_password_validator, user_passwords_match] schema['password2'] = [text_type] @@ -428,11 +426,10 @@ def user_new_form_schema( @validator_args def user_edit_form_schema( - ignore_missing, unicode_safe, user_both_passwords_entered, - user_password_validator, user_passwords_match, email_is_unique): + ignore_missing, unicode_safe, user_password_validator, + user_passwords_match): schema = default_user_schema() - schema['email'] = [email_is_unique] schema['password'] = [ignore_missing] schema['password1'] = [ignore_missing, unicode_safe, user_password_validator, user_passwords_match] @@ -450,8 +447,6 @@ def default_update_user_schema( schema['name'] = [ ignore_missing, name_validator, user_name_validator, unicode_safe] - schema['email'] = [ - not_empty, email_validator, email_is_unique, unicode_safe] schema['password'] = [ user_password_validator, ignore_missing, unicode_safe] @@ -469,9 +464,9 @@ def default_generate_apikey_user_schema( @validator_args def default_user_invite_schema( - not_empty, unicode_safe): + not_empty, email_validator, email_is_unique): return { - 'email': [not_empty, text_type], + 'email': [not_empty, email_validator, email_is_unique, text_type], 'group_id': [not_empty], 'role': [not_empty], } diff --git a/ckan/logic/validators.py b/ckan/logic/validators.py index bb5e476d235..fdc0820e946 100644 --- a/ckan/logic/validators.py +++ b/ckan/logic/validators.py @@ -930,21 +930,22 @@ def dict_only(value): raise Invalid(_('Must be a dict')) return value + def email_is_unique(key, data, errors, context): '''Validate email is unique''' model = context['model'] session = context['session'] users = session.query(model.User) \ - .filter(model.User.email == data[key]).all() + .filter(model.User.email == data[key]).all() # is there is no users with this email it's free if not users: return else: # allow user to update their own email for user in users: - if (user.name == data[("name",)] - or user.id == data[("id",)]): + if (user.name in (data.get(("name",)), data.get(("id",))) + or user.id == data.get(("id",))): return raise Invalid( @@ -952,9 +953,9 @@ def email_is_unique(key, data, errors, context): def one_of(list_of_value): - ''' Checks if the provided value is present in a list ''' + ''' Checks if the provided value is present in a list or is an empty string''' def callable(value): - if value not in list_of_value: + if value != "" and value not in list_of_value: raise Invalid(_('Value must be one of {}'.format(list_of_value))) return value return callable diff --git a/ckan/model/__init__.py b/ckan/model/__init__.py index 03f3c13fff9..150e37c84ed 100644 --- a/ckan/model/__init__.py +++ b/ckan/model/__init__.py @@ -266,7 +266,7 @@ def setup_migration_version_control(self): self.reset_alembic_output() alembic_config = AlembicConfig(self._alembic_ini) alembic_config.set_main_option( - "sqlalchemy.url", str(self.metadata.bind.url) + "sqlalchemy.url", config.get("sqlalchemy.url") ) try: sqlalchemy_migrate_version = self.metadata.bind.execute( @@ -287,12 +287,23 @@ def setup_migration_version_control(self): self.alembic_config = alembic_config def current_version(self): + """Returns current revision of the migration repository. + + Returns None for plugins that has no migrations and "base" for plugins + that has migrations but none of them were applied. If current revision + is the newest one, ` (head)` suffix added to the result + + """ + from alembic.util import CommandError try: alembic_current(self.alembic_config) return self.take_alembic_output()[0][0] except (TypeError, IndexError): # alembic is not initialized yet return 'base' + except CommandError: + # trying to get revision of plugin without migrations + return None def downgrade_db(self, version='base'): self.setup_migration_version_control() diff --git a/ckan/model/license.py b/ckan/model/license.py index 7bfaf2d1b8c..85efd7209ef 100644 --- a/ckan/model/license.py +++ b/ckan/model/license.py @@ -6,7 +6,7 @@ import requests from ckan.common import config -from ckan.common import asbool +from ckan.common import asbool, asint import six from six import text_type, string_types @@ -15,6 +15,7 @@ log = __import__('logging').getLogger(__name__) +TIMEOUT = asint(config.get('ckan.requests.timeout', 5)) class License(object): """Domain object for a license.""" @@ -130,7 +131,7 @@ def load_licenses(self, license_url): with open(license_url.replace('file://', ''), 'r') as f: license_data = json.load(f) else: - response = requests.get(license_url) + response = requests.get(license_url, timeout=TIMEOUT) license_data = response.json() except requests.RequestException as e: msg = "Couldn't get the licenses file {}: {}".format(license_url, e) @@ -141,8 +142,6 @@ def load_licenses(self, license_url): for license in license_data: if isinstance(license, string_types): license = license_data[license] - if license.get('title'): - license['title'] = _(license['title']) self._create_license_list(license_data, license_url) def _create_license_list(self, license_data, license_url=''): diff --git a/ckan/public/base/javascript/client.js b/ckan/public/base/javascript/client.js index b016eb3ccac..1da0e90dde8 100644 --- a/ckan/public/base/javascript/client.js +++ b/ckan/public/base/javascript/client.js @@ -172,18 +172,37 @@ var key = typeof options.key != 'undefined' ? item[options.key] : false; var label = typeof options.label != 'undefined' ? item[options.label] : false; + let children = item.children; item = typeof item === 'string' ? item : item.name || item.Name || item.Format || ''; item = jQuery.trim(item); key = key ? key : item; label = label ? label : item; + /* Having the "ID" mark an element as selectable + Group labels should not be selectable + Children should include its own IDs and TEXTs + */ + let ret = {text: label}; + if (children === undefined) { + // This is a regular element without children + ret.id = key; + } else { + // This is a group. Children need ID and TEXT + // "key" and "label" should be defined + for (i = 0, l = children.length; i < l; i = i + 1) { + children[i].id = children[i][options.key]; + children[i].text = children[i][options.label]; + } + ret.children = children; + } + var lowercased = item.toLowerCase(); var returnObject = options && options.objects === true; if (lowercased && !map[lowercased]) { map[lowercased] = 1; - return returnObject ? {id: key, text: label} : item; + return returnObject ? ret : item; } return null; diff --git a/ckan/public/base/javascript/client.min.js b/ckan/public/base/javascript/client.min.js new file mode 100644 index 00000000000..54f85570f18 --- /dev/null +++ b/ckan/public/base/javascript/client.min.js @@ -0,0 +1,14 @@ +(function(ckan,jQuery){function Client(options){this.endpoint=options&&options.endpoint||'';jQuery.proxyAll(this,/parse/);} +jQuery.extend(Client.prototype,{url:function(path){if(!(/^https?:\/\//i).test(path)){path=this.endpoint+'/'+path.replace(/^\//,'');} +return path;},call:function(type,path,data,fn,error){var url=this.url('/api/action/'+path);var error=(error=='undefined')?function(){}:error;var options={contentType:'application/json',url:url,dataType:'json',processData:false,success:fn,error:error};if(type=='POST'){options.type='POST';options.data=JSON.stringify(data);}else{options.type='GET';options.url+=data;} +jQuery.ajax(options);},getTemplate:function(filename,params,success,error){var url=this.url('/api/1/util/snippet/'+encodeURIComponent(filename));if(typeof params==='function'){error=success;success=params;params={};} +return jQuery.get(url,params||{}).then(success,error);},getLocaleData:function(locale,success,error){var url=this.url('/api/i18n/'+(locale||''));return jQuery.getJSON(url).then(success,error);},getCompletions:function(url,options,success,error){if(typeof options==='function'){error=success;success=options;options={};} +var formatter=options&&options.format||this.parseCompletions;var request=jQuery.ajax({url:this.url(url)});return request.pipe(formatter).promise(request).then(success,error);},parseCompletions:function(data,options){if(typeof data==='string'){return this.parsePackageCompletions(data,options);} +var map={};data=data.result?{'ResultSet':{'Result':data.result.map(function(val){return{'Name':val}})}}:data;var raw=jQuery.isArray(data)?data:data.ResultSet&&data.ResultSet.Result||{};var items=jQuery.map(raw,function(item){var key=typeof options.key!='undefined'?item[options.key]:false;var label=typeof options.label!='undefined'?item[options.label]:false;let children=item.children;item=typeof item==='string'?item:item.name||item.Name||item.Format||'';item=jQuery.trim(item);key=key?key:item;label=label?label:item;let ret={text:label};if(children===undefined){ret.id=key;}else{for(i=0,l=children.length;i-1){arrayCopy.splice(index,1);}} +return arrayCopy;} +function _initialize(queryString){var searchParams=Qs.parse(queryString,{ignoreQueryPrefix:true});if(searchParams.filters){var filters={},fieldValuesStr=String(searchParams.filters).split('|'),i,len;for(i=0,len=fieldValuesStr.length;i - + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/changed_group.html b/ckan/templates/snippets/activities/changed_group.html index 19825576639..17727711eb0 100644 --- a/ckan/templates/snippets/activities/changed_group.html +++ b/ckan/templates/snippets/activities/changed_group.html @@ -6,7 +6,7 @@ group=ah.group(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/changed_organization.html b/ckan/templates/snippets/activities/changed_organization.html index 073f8047318..bdaefdde2dc 100644 --- a/ckan/templates/snippets/activities/changed_organization.html +++ b/ckan/templates/snippets/activities/changed_organization.html @@ -6,7 +6,7 @@ organization=ah.organization(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/changed_package.html b/ckan/templates/snippets/activities/changed_package.html index f8e34a6721c..644c6f73521 100644 --- a/ckan/templates/snippets/activities/changed_package.html +++ b/ckan/templates/snippets/activities/changed_package.html @@ -8,7 +8,7 @@ dataset=ah.dataset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }} {% if can_show_activity_detail %}  |  diff --git a/ckan/templates/snippets/activities/changed_resource.html b/ckan/templates/snippets/activities/changed_resource.html index 28192bb62ee..3a1716433e6 100644 --- a/ckan/templates/snippets/activities/changed_resource.html +++ b/ckan/templates/snippets/activities/changed_resource.html @@ -7,7 +7,7 @@ dataset=ah.datset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/changed_user.html b/ckan/templates/snippets/activities/changed_user.html index c4ea1aa2155..6263a0acb93 100644 --- a/ckan/templates/snippets/activities/changed_user.html +++ b/ckan/templates/snippets/activities/changed_user.html @@ -5,7 +5,7 @@ actor=ah.actor(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/deleted_group.html b/ckan/templates/snippets/activities/deleted_group.html index bb5f92b3ae6..806386d8655 100644 --- a/ckan/templates/snippets/activities/deleted_group.html +++ b/ckan/templates/snippets/activities/deleted_group.html @@ -6,7 +6,7 @@ group=ah.group(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/deleted_organization.html b/ckan/templates/snippets/activities/deleted_organization.html index 27753e9151b..4c84d4a4287 100644 --- a/ckan/templates/snippets/activities/deleted_organization.html +++ b/ckan/templates/snippets/activities/deleted_organization.html @@ -6,7 +6,7 @@ organization=ah.organization(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/deleted_package.html b/ckan/templates/snippets/activities/deleted_package.html index 5731125f177..d09a19bc94c 100644 --- a/ckan/templates/snippets/activities/deleted_package.html +++ b/ckan/templates/snippets/activities/deleted_package.html @@ -6,7 +6,7 @@ dataset=ah.dataset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/deleted_resource.html b/ckan/templates/snippets/activities/deleted_resource.html index d78d21234b1..2ccc3faa948 100644 --- a/ckan/templates/snippets/activities/deleted_resource.html +++ b/ckan/templates/snippets/activities/deleted_resource.html @@ -7,7 +7,7 @@ dataset=ah.dataset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/fallback.html b/ckan/templates/snippets/activities/fallback.html index b119c295b36..01deba94688 100644 --- a/ckan/templates/snippets/activities/fallback.html +++ b/ckan/templates/snippets/activities/fallback.html @@ -30,7 +30,7 @@ {% endif %} {% endif %}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/follow_dataset.html b/ckan/templates/snippets/activities/follow_dataset.html index f4487e4fdc0..a9792d3129f 100644 --- a/ckan/templates/snippets/activities/follow_dataset.html +++ b/ckan/templates/snippets/activities/follow_dataset.html @@ -6,7 +6,7 @@ dataset=ah.dataset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/follow_group.html b/ckan/templates/snippets/activities/follow_group.html index 30a4bb12447..0cf004c7259 100644 --- a/ckan/templates/snippets/activities/follow_group.html +++ b/ckan/templates/snippets/activities/follow_group.html @@ -6,7 +6,7 @@ group=ah.group(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/follow_user.html b/ckan/templates/snippets/activities/follow_user.html index 9259ee49079..c7d120a5048 100644 --- a/ckan/templates/snippets/activities/follow_user.html +++ b/ckan/templates/snippets/activities/follow_user.html @@ -6,7 +6,7 @@ user=ah.user(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/new_group.html b/ckan/templates/snippets/activities/new_group.html index 50601aba535..1c8e2e73734 100644 --- a/ckan/templates/snippets/activities/new_group.html +++ b/ckan/templates/snippets/activities/new_group.html @@ -6,7 +6,7 @@ group=ah.group(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/new_organization.html b/ckan/templates/snippets/activities/new_organization.html index ef191615f53..b158e4861cf 100644 --- a/ckan/templates/snippets/activities/new_organization.html +++ b/ckan/templates/snippets/activities/new_organization.html @@ -6,7 +6,7 @@ organization=ah.organization(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/new_package.html b/ckan/templates/snippets/activities/new_package.html index 4b624fb9e9f..b7ee8dacb00 100644 --- a/ckan/templates/snippets/activities/new_package.html +++ b/ckan/templates/snippets/activities/new_package.html @@ -7,7 +7,7 @@ dataset=ah.dataset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }} {% if can_show_activity_detail %}  |  diff --git a/ckan/templates/snippets/activities/new_resource.html b/ckan/templates/snippets/activities/new_resource.html index d3f33c9882b..b60bd95bf9e 100644 --- a/ckan/templates/snippets/activities/new_resource.html +++ b/ckan/templates/snippets/activities/new_resource.html @@ -7,7 +7,7 @@ dataset=ah.dataset(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/new_user.html b/ckan/templates/snippets/activities/new_user.html index 1293f146c7b..e18f4400180 100644 --- a/ckan/templates/snippets/activities/new_user.html +++ b/ckan/templates/snippets/activities/new_user.html @@ -5,7 +5,7 @@ actor=ah.actor(activity) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/activities/removed_tag.html b/ckan/templates/snippets/activities/removed_tag.html index 00acfa15ff6..c20b942ace4 100644 --- a/ckan/templates/snippets/activities/removed_tag.html +++ b/ckan/templates/snippets/activities/removed_tag.html @@ -7,7 +7,7 @@ dataset=ah.dataset(dataset) )|safe }}
- + {{ h.time_ago_from_timestamp(activity.timestamp) }}

diff --git a/ckan/templates/snippets/search_form.html b/ckan/templates/snippets/search_form.html index 01780921073..3c606e235ae 100644 --- a/ckan/templates/snippets/search_form.html +++ b/ckan/templates/snippets/search_form.html @@ -57,7 +57,7 @@

Error

{% if facets %}

{% for field in facets.fields %} - {% set search_facets_items = facets.search.get(field)['items'] %} + {% set search_facets_items = facets.search.get(field)['items'] if facets.search and field in facets.search else [] %} {{ facets.titles.get(field) }}: {% for value in facets.fields[field] %} diff --git a/ckan/tests/cli/test_cli.py b/ckan/tests/cli/test_cli.py index 1b9d4b32e77..2689b7492fe 100644 --- a/ckan/tests/cli/test_cli.py +++ b/ckan/tests/cli/test_cli.py @@ -24,11 +24,11 @@ def test_incorrect_config(cli): def test_correct_config(cli, ckan_config): - """Presense of config file disables default printing of help message. + """With explicit config file user still sees help message. """ result = cli.invoke(ckan, [u'-c', ckan_config[u'__file__']]) - assert u'Error: Missing command.' in result.output - assert result.exit_code + assert u'Usage: ckan' in result.output + assert not result.exit_code def test_correct_config_with_help(cli, ckan_config): @@ -56,6 +56,9 @@ def test_command_from_extension_shown_in_help_when_enabled(cli): result = cli.invoke(ckan, []) assert u'example-iclick-hello' in result.output + result = cli.invoke(ckan, [u'--help']) + assert u'example-iclick-hello' in result.output + def test_ckan_config_loader_parse_file(): """ diff --git a/ckan/tests/cli/test_db.py b/ckan/tests/cli/test_db.py new file mode 100644 index 00000000000..e8af7984ba8 --- /dev/null +++ b/ckan/tests/cli/test_db.py @@ -0,0 +1,97 @@ +# -*- coding: utf-8 -*- + +import os +import pytest + +import ckan.migration as migration +import ckanext.example_database_migrations.plugin as example_plugin + +import ckan.model as model +import ckan.cli.db as db + + +@pytest.fixture +def remove_extra_tables(): + # `clean_db` just removes data leaving tables intact. Thus we have to + # downgrade database because we don't need those extra tables in the + # following tests. + yield + db._run_migrations(u'example_database_migrations', None, False) + + +@pytest.mark.ckan_config(u"ckan.plugins", u"example_database_migrations") +@pytest.mark.usefixtures(u"with_plugins", u"clean_db", u"remove_extra_tables") +class TestMigrations: + + def test_path_to_alembic_config(self): + u"""Every plugins stores its migration inside separate folder. + """ + config = db._resolve_alembic_config(None) + assert config == os.path.join( + os.path.dirname(migration.__file__), u"alembic.ini") + + config = db._resolve_alembic_config(u"example_database_migrations") + assert config == os.path.join( + os.path.dirname(example_plugin.__file__), + u"migration/example_database_migrations/alembic.ini") + + def test_current_migration_version(self): + u"""CKAN migration applied because of clean_db fixture. + + Migrations from plugins are not applied automatically. + """ + version = db.current_revision(None) + assert version.endswith(u"(head)") + + version = db.current_revision(u"example_database_migrations") + assert version == u"base" + + def check_upgrade(self, has_x, has_y, expected_version): + has_table = model.Session.bind.has_table + assert has_table(u"example_database_migrations_x") is has_x + assert has_table(u"example_database_migrations_y") is has_y + version = db.current_revision(u"example_database_migrations") + assert version == expected_version + + def test_upgrade_database(self): + self.check_upgrade(False, False, u"base") + + # core migrations do not change plgugin's state + db._run_migrations(None, None, True) + self.check_upgrade(False, False, u"base") + + # All migrations applied by default + db._run_migrations(u'example_database_migrations', None, True) + self.check_upgrade(True, True, u"728663ebe30e (head)") + + # All migrations applied by default + db._run_migrations(u'example_database_migrations', None, False) + self.check_upgrade(False, False, u"base") + + # Migrations can be applied one after another + db._run_migrations( + u'example_database_migrations', version=u"+1", forward=True) + self.check_upgrade(True, False, u"4f59069f433e") + + db._run_migrations( + u'example_database_migrations', version=u"+1", forward=True) + self.check_upgrade(True, True, u"728663ebe30e (head)") + + # the same is true for downgrade + db._run_migrations( + u'example_database_migrations', version=u"-1", forward=False) + self.check_upgrade(True, False, u"4f59069f433e") + + db._run_migrations( + u'example_database_migrations', version=u"-1", forward=False) + self.check_upgrade(False, False, u"base") + + def test_pending_list(self): + db._run_migrations(u'example_database_migrations', None, False) + + assert db._get_pending_plugins() == {u"example_database_migrations": 2} + db._run_migrations( + u'example_database_migrations', version=u"+1", forward=True) + assert db._get_pending_plugins() == {u"example_database_migrations": 1} + db._run_migrations(u'example_database_migrations') + assert db._get_pending_plugins() == {} diff --git a/ckan/tests/cli/test_user.py b/ckan/tests/cli/test_user.py index a1fd73a7a8c..67d5d72d8c2 100644 --- a/ckan/tests/cli/test_user.py +++ b/ckan/tests/cli/test_user.py @@ -87,12 +87,10 @@ def test_revoke(self, cli): user = factories.User() call_action(u"api_token_create", user=user[u"id"], name=u"first token") tid = model.Session.query(model.ApiToken).first().id - args = [ - u"user", - u"token", - u"revoke", - tid, - ] + + # tid must be escaped. When it starts with a hyphen it treated as a + # flag otherwise. + args = u'user token revoke "{tid}"'.format(tid=tid) result = cli.invoke(ckan, args) assert result.exit_code == 0 assert u"API Token has been revoked" in result.output diff --git a/ckan/tests/controllers/test_group.py b/ckan/tests/controllers/test_group.py index 0dc6c358f49..842745ab834 100644 --- a/ckan/tests/controllers/test_group.py +++ b/ckan/tests/controllers/test_group.py @@ -13,11 +13,13 @@ @pytest.mark.usefixtures("clean_db", "with_request_context") class TestGroupController(object): - def test_bulk_process_throws_404_for_nonexistent_org(self, app): + def test_bulk_process_throws_403_for_nonexistent_org(self, app): + """Returns 403, not 404, because access check cannot be passed. + """ bulk_process_url = url_for( "organization.bulk_process", id="does-not-exist" ) - app.get(url=bulk_process_url, status=404) + app.get(url=bulk_process_url, status=403) def test_page_thru_list_of_orgs_preserves_sort_order(self, app): orgs = [factories.Organization() for _ in range(35)] diff --git a/ckan/tests/legacy/lib/test_navl.py b/ckan/tests/legacy/lib/test_navl.py index 68aa627a445..974f0dca742 100644 --- a/ckan/tests/legacy/lib/test_navl.py +++ b/ckan/tests/legacy/lib/test_navl.py @@ -341,7 +341,45 @@ def test_simple(): converted_data, errors = validate(data, schema) - assert errors == {"numbers": [{"code": [u"Missing value"]}]} + assert errors == {"numbers": [{"code": [u"Missing value"]}, {}]} + + +def test_error_list_position(): + data = { + "name": "fred", + "cats": [{"name": "rita"}, {"name": "otis"}], + "numbers": [ + {"number": "432423432", "code": "+44"}, + {"number": "13221312"}, + {"number": "432423432", "code": "+44"}, + {"number": "13221312"}, + {"number": "432423432", "code": "+44"}, + ], + } + + schema = { + "name": [not_empty], + "cats": { + "name": [not_empty], + }, + "numbers": { + "number": [convert_int], + "code": [not_empty], + "__extras": [ignore], + }, + } + + converted_data, errors = validate(data, schema) + + assert errors == { + "numbers": [ + {}, + {"code": [u"Missing value"]}, + {}, + {"code": [u"Missing value"]}, + {}, + ] + } def test_simple_converter_types(): diff --git a/ckan/tests/lib/search/test_common.py b/ckan/tests/lib/search/test_common.py new file mode 100644 index 00000000000..b1d25667118 --- /dev/null +++ b/ckan/tests/lib/search/test_common.py @@ -0,0 +1,12 @@ +# encoding: utf-8 +import pytest + +from ckan.common import config + + +@pytest.mark.ckan_config(u"solr_user", u"solr") +@pytest.mark.ckan_config(u"solr_password", u"password") +def test_solr_user_and_password(app): + + assert config[u"solr_user"] == u"solr" + assert config[u"solr_password"] == u"password" diff --git a/ckan/tests/lib/test_helpers.py b/ckan/tests/lib/test_helpers.py index 0878473bb48..ee6917f55f9 100644 --- a/ckan/tests/lib/test_helpers.py +++ b/ckan/tests/lib/test_helpers.py @@ -103,6 +103,7 @@ class TestHelpersUrlFor(BaseUrlFor): {"qualified": True, "locale": "de"}, "http://example.com/de/dataset/my_dataset", ), + ({"__no_cache__": True}, "/dataset/my_dataset?__no_cache__=True"), ], ) def test_url_for_default(self, extra, exp): @@ -160,6 +161,32 @@ def test_debugtoolbar_url(self, ckan_config): url = url_for('_debug_toolbar.static', filename='test.js') assert url == expected + @pytest.mark.parametrize( + "extra,exp", + [ + ({"param": "foo"}, "/dataset/my_dataset?param=foo"), + ({"param": 27}, "/dataset/my_dataset?param=27"), + ({"param": 27.3}, "/dataset/my_dataset?param=27.3"), + ({"param": True}, "/dataset/my_dataset?param=True"), + ({"param": None}, "/dataset/my_dataset"), + ({"param": {}}, "/dataset/my_dataset?param=%7B%7D"), + ], + ) + def test_url_for_string_route_with_query_param(self, extra, exp): + assert ( + h.url_for("/dataset/my_dataset", **extra) == + h.url_for("dataset.read", id="my_dataset", **extra) == + exp + ) + + def test_url_for_string_route_with_list_query_param(self): + extra = {'multi': ['foo', 27, 27.3, True, None]} + assert ( + h.url_for("/dataset/my_dataset", **extra) == + h.url_for("dataset.read", id="my_dataset", **extra) == + "/dataset/my_dataset?multi=foo&multi=27&multi=27.3&multi=True" + ) + class TestHelpersUrlForFlaskandPylons(BaseUrlFor): def test_url_for_flask_route_new_syntax(self): diff --git a/ckan/tests/lib/test_io.py b/ckan/tests/lib/test_io.py index 85e702770b4..b4ef2d888c8 100644 --- a/ckan/tests/lib/test_io.py +++ b/ckan/tests/lib/test_io.py @@ -8,7 +8,7 @@ import six from six import text_type -import ckan.lib.io as ckan_io +import ckan.lib.io_ as ckan_io def test_decode_path_fails_for_unicode(): diff --git a/ckan/tests/logic/action/test_create.py b/ckan/tests/logic/action/test_create.py index 50a15b085ea..8f976e066f5 100644 --- a/ckan/tests/logic/action/test_create.py +++ b/ckan/tests/logic/action/test_create.py @@ -67,6 +67,12 @@ def test_requires_email(self, _): with pytest.raises(logic.ValidationError): self._invite_user_to_group(email=None) + @mock.patch("ckan.lib.mailer.send_invite") + def test_existed_email(self, _): + factories.User(email="email@example.com") + with pytest.raises(logic.ValidationError): + self._invite_user_to_group(email="email@example.com") + @mock.patch("ckan.lib.mailer.send_invite") def test_requires_role(self, _): with pytest.raises(logic.ValidationError): @@ -1368,8 +1374,7 @@ def test_ignored_on_create_if_non_sysadmin(self): @pytest.mark.usefixtures("clean_db") class TestUserImageUrl(object): - - def test_upload_picture(self): + def test_external_picture(self): params = { 'name': 'test_user', @@ -1378,7 +1383,67 @@ def test_upload_picture(self): 'image_url': 'https://example.com/mypic.png', } - user_dict = helpers.call_action('user_create', {}, **params) + user_dict = helpers.call_action("user_create", {}, **params) + + assert user_dict["image_url"] == "https://example.com/mypic.png" + assert ( + user_dict["image_display_url"] == "https://example.com/mypic.png" + ) + + def test_upload_non_picture_works_without_extra_config( + self, create_with_upload): + params = { + "name": "test_user_1", + "email": "test1@example.com", + "password": "12345678", + "action": "user_create", + "upload_field_name": "image_upload", + } + assert create_with_upload("hello world", "file.txt", **params) + + @pytest.mark.ckan_config("ckan.upload.user.types", "image") + def test_upload_non_picture(self, create_with_upload): + params = { + "name": "test_user_1", + "email": "test1@example.com", + "password": "12345678", + "action": "user_create", + "upload_field_name": "image_upload", + } + with pytest.raises( + logic.ValidationError, match="Unsupported upload type"): + create_with_upload("hello world", "file.txt", **params) + + @pytest.mark.ckan_config("ckan.upload.user.types", "image") + def test_upload_non_picture_with_png_extension( + self, create_with_upload): + params = { + "name": "test_user_1", + "email": "test1@example.com", + "password": "12345678", + "action": "user_create", + "upload_field_name": "image_upload", + } + with pytest.raises( + logic.ValidationError, match="Unsupported upload type"): + create_with_upload("hello world", "file.png", **params) + + @pytest.mark.ckan_config("ckan.upload.user.types", "image") + def test_upload_picture(self, create_with_upload): + params = { + "name": "test_user_1", + "email": "test1@example.com", + "password": "12345678", + "action": "user_create", + "upload_field_name": "image_upload", + } - assert user_dict['image_url'] == 'https://example.com/mypic.png' - assert user_dict['image_display_url'] == 'https://example.com/mypic.png' + some_png = """ + 89 50 4E 47 0D 0A 1A 0A 00 00 00 0D 49 48 44 52 + 00 00 00 01 00 00 00 01 08 02 00 00 00 90 77 53 + DE 00 00 00 0C 49 44 41 54 08 D7 63 F8 CF C0 00 + 00 03 01 01 00 18 DD 8D B0 00 00 00 00 49 45 4E + 44 AE 42 60 82""" + some_png = some_png.replace(' ', '').replace('\n', '') + some_png_bytes = bytes(bytearray.fromhex(some_png)) + assert create_with_upload(some_png_bytes, "file.png", **params) diff --git a/ckan/tests/logic/action/test_get.py b/ckan/tests/logic/action/test_get.py index ba89e8f8d67..fbadfc5d0bf 100644 --- a/ckan/tests/logic/action/test_get.py +++ b/ckan/tests/logic/action/test_get.py @@ -925,6 +925,19 @@ def test_user_list_not_all_fields(self): got_user = got_users[0] assert got_user == user["name"] + def test_user_list_return_query(self): + user_a = factories.User(email="a@example.com") + query = helpers.call_action( + "user_list", + {"return_query": True}, + email="a@example.com" + ) + user = query.one() + + expected = ["name", "fullname", "about", "email"] + for prop in expected: + assert user_a[prop] == getattr(user, prop), prop + def test_user_list_filtered_by_email(self): user_a = factories.User(email="a@example.com") diff --git a/ckan/tests/logic/test_validators.py b/ckan/tests/logic/test_validators.py index 2eef9e2f2d8..71588a1da27 100644 --- a/ckan/tests/logic/test_validators.py +++ b/ckan/tests/logic/test_validators.py @@ -185,6 +185,22 @@ def test_email_is_unique_validator_user_update_email_unchanged(app): assert updated_user.email == old_email +@pytest.mark.usefixtures("clean_db") +def test_email_is_unique_validator_user_update_using_name_as_id(app): + with app.flask_app.test_request_context(): + user = factories.User(username="user01", email="user01@email.com") + + # try to update user1 and leave email unchanged + old_email = "user01@email.com" + + helpers.call_action( + "user_update", id=user['name'], email=user['email'], about='test') + updated_user = model.User.get(user["id"]) + + assert updated_user.email == old_email + assert updated_user.about == 'test' + + @pytest.mark.usefixtures("clean_db") def test_email_is_unique_validator_user_update_email_new(app): with app.flask_app.test_request_context(): @@ -824,5 +840,7 @@ def test_val_not_in_list(self): func = validators.one_of(cont) raises_Invalid(func)(5) - -# TODO: Need to test when you are not providing owner_org and the validator queries for the dataset with package_show + def test_empty_val_accepted(self): + cont = [1, 2, 3, 4] + func = validators.one_of(cont) + assert func("") == "" diff --git a/ckan/tests/pytest_ckan/fixtures.py b/ckan/tests/pytest_ckan/fixtures.py index 59ce42ff044..8076a6a9b5d 100644 --- a/ckan/tests/pytest_ckan/fixtures.py +++ b/ckan/tests/pytest_ckan/fixtures.py @@ -169,6 +169,29 @@ def test_example(self): reset_db() +@pytest.fixture +def migrate_db_for(): + """Apply database migration defined by plugin. + + In order to use models defined by extension extra tables may be + required. In such cases database migrations(that were generated by `ckan + generate migration -p PLUGIN_NAME`) can be applied as per example below:: + + @pytest.mark.usefixtures("clean_db") + def test_migrations_applied(migrate_db_for): + migrate_db_for("my_plugin") + assert model.Session.bind.has_table("my_plugin_custom_table") + + """ + from ckan.cli.db import _run_migrations + + def runner(plugin, version=u"head", forward=True): + assert plugin, u"Cannot apply migrations of unknown plugin" + _run_migrations(plugin, version, forward) + + return runner + + @pytest.fixture def clean_index(reset_index): """Clear search index before starting the test. diff --git a/ckan/tests/pytest_ckan/test_fixtures.py b/ckan/tests/pytest_ckan/test_fixtures.py index c7d9aede592..38e317efce1 100644 --- a/ckan/tests/pytest_ckan/test_fixtures.py +++ b/ckan/tests/pytest_ckan/test_fixtures.py @@ -101,3 +101,18 @@ def test_create_resource(self, create_with_upload): assert resource[u"url_type"] == u"upload" assert resource[u"format"] == u"TXT" assert resource[u"size"] == 11 + + +class TestMigrateDbFor(object): + @pytest.mark.ckan_config(u"ckan.plugins", u"example_database_migrations") + @pytest.mark.usefixtures(u"with_plugins", u"clean_db") + def test_migrations_applied(self, migrate_db_for): + import ckan.model as model + has_table = model.Session.bind.has_table + assert not has_table(u"example_database_migrations_x") + assert not has_table(u"example_database_migrations_y") + + migrate_db_for(u"example_database_migrations") + + assert has_table(u"example_database_migrations_x") + assert has_table(u"example_database_migrations_y") diff --git a/ckan/views/api.py b/ckan/views/api.py index 89954766e61..3bc21c1632f 100644 --- a/ckan/views/api.py +++ b/ckan/views/api.py @@ -3,6 +3,7 @@ import os import logging import html +import io from flask import Blueprint, make_response import six @@ -479,7 +480,7 @@ def i18n_js_translations(lang, ver=API_REST_DEFAULT_VERSION): u'base', u'i18n', u'{0}.js'.format(lang))) if not os.path.exists(source): return u'{}' - translations = json.load(open(source, u'r')) + translations = json.load(io.open(source, u'r', encoding=u'utf-8')) return _finish_ok(translations) diff --git a/ckan/views/feed.py b/ckan/views/feed.py index 0acdf07bfcb..a7346d9ea78 100644 --- a/ckan/views/feed.py +++ b/ckan/views/feed.py @@ -204,6 +204,8 @@ def group(id): group_dict = logic.get_action(u'group_show')(context, {u'id': id}) except logic.NotFound: base.abort(404, _(u'Group not found')) + except logic.NotAuthorized: + base.abort(403, _(u'Not authorized to see this page')) return group_or_organization(group_dict, is_org=False) @@ -221,6 +223,8 @@ def organization(id): }) except logic.NotFound: base.abort(404, _(u'Organization not found')) + except logic.NotAuthorized: + base.abort(403, _(u'Not authorized to see this page')) return group_or_organization(group_dict, is_org=True) diff --git a/ckan/views/group.py b/ckan/views/group.py index dd38fce8c36..c44f1418cb3 100644 --- a/ckan/views/group.py +++ b/ckan/views/group.py @@ -251,10 +251,9 @@ def _read(id, limit, group_type): sort_by = request.params.get(u'sort', None) def search_url(params): - controller = lookup_group_controller(group_type) action = u'bulk_process' if getattr( g, u'action', u'') == u'bulk_process' else u'read' - url = h.url_for(u'.'.join([controller, action]), id=id) + url = h.url_for(u'.'.join([group_type, action]), id=id) params = [(k, v.encode(u'utf-8') if isinstance(v, string_types) else str(v)) for k, v in params] @@ -706,6 +705,12 @@ def _prepare(self, group_type, id=None): u'for_view': True, u'extras_as_string': True } + + try: + check_access(u'bulk_update_public', context, {u'org_id': id}) + except NotAuthorized: + base.abort(403, _(u'Unauthorized to access')) + return context def get(self, id, group_type, is_organization): @@ -748,10 +753,9 @@ def get(self, id, group_type, is_organization): def post(self, id, group_type, is_organization, data=None): set_org(is_organization) - context = self._prepare(group_type) + context = self._prepare(group_type, id) data_dict = {u'id': id, u'type': group_type} try: - check_access(u'bulk_update_public', context, {u'org_id': id}) # Do not query for the group datasets when dictizing, as they will # be ignored and get requested on the controller anyway data_dict['include_datasets'] = False @@ -922,8 +926,8 @@ def _prepare(self, id, is_organization, data=None): } try: - group = _action(u'group_show')(context, data_dict) - check_access(u'group_update', context) + _action(u'group_show')(context, data_dict) + _check_access(u'group_update', context, {u'id': id}) except NotAuthorized: base.abort(403, _(u'Unauthorized to create a group')) except NotFound: @@ -1084,7 +1088,15 @@ def post(self, group_type, is_organization, id=None): u'role': data_dict['role'] } del data_dict['email'] - user_dict = _action(u'user_invite')(context, user_data_dict) + + try: + user_dict = _action(u'user_invite')(context, user_data_dict) + except ValidationError as e: + for _, error in e.error_summary.items(): + h.flash_error(error) + return h.redirect_to( + u'{}.member_new'.format(group_type), id=id) + data_dict['username'] = user_dict['name'] try: @@ -1094,7 +1106,8 @@ def post(self, group_type, is_organization, id=None): except NotFound: base.abort(404, _(u'Group not found')) except ValidationError as e: - h.flash_error(e.error_summary) + for _, error in e.error_summary.items(): + h.flash_error(error) return h.redirect_to(u'{}.member_new'.format(group_type), id=id) # TODO: Remove diff --git a/ckanext/datapusher/cli.py b/ckanext/datapusher/cli.py index 65d02e79e23..0453c4a6267 100644 --- a/ckanext/datapusher/cli.py +++ b/ckanext/datapusher/cli.py @@ -29,10 +29,11 @@ def confirm(yes): click.confirm(question, abort=True) -@click.group() +@click.group(short_help=u"Perform commands in the datapusher.") def datapusher(): - u'''Perform commands in the datapusher. - ''' + """Perform commands in the datapusher. + """ + pass @datapusher.command() diff --git a/ckanext/datapusher/logic/action.py b/ckanext/datapusher/logic/action.py index cc05dbd21e8..d6a86fb3871 100644 --- a/ckanext/datapusher/logic/action.py +++ b/ckanext/datapusher/logic/action.py @@ -14,7 +14,7 @@ import ckan.lib.navl.dictization_functions import ckan.logic as logic import ckan.plugins as p -from ckan.common import config +from ckan.common import config, asint import ckanext.datapusher.logic.schema as dpschema import ckanext.datapusher.interfaces as interfaces @@ -22,6 +22,8 @@ _get_or_bust = logic.get_or_bust _validate = ckan.lib.navl.dictization_functions.validate +TIMEOUT = asint(config.get('ckan.requests.timeout', 5)) + def datapusher_submit(context, data_dict): ''' Submit a job to the datapusher. The datapusher is a service that @@ -71,8 +73,6 @@ def datapusher_submit(context, data_dict): callback_url = h.url_for( '/api/3/action/datapusher_hook', qualified=True) - user = p.toolkit.get_action('user_show')(context, {'id': context['user']}) - for plugin in p.PluginImplementations(interfaces.IDataPusher): upload = plugin.can_upload(res_id) if not upload: @@ -119,6 +119,10 @@ def datapusher_submit(context, data_dict): pass context['ignore_auth'] = True + # Use local session for task_status_update, so it can commit its own + # results without messing up with the parent session that contains pending + # updats of dataset/resource/etc. + context['session'] = context['model'].meta.create_local_session() p.toolkit.get_action('task_status_update')(context, task) site_user = p.toolkit.get_action( @@ -130,6 +134,7 @@ def datapusher_submit(context, data_dict): headers={ 'Content-Type': 'application/json' }, + timeout=TIMEOUT, data=json.dumps({ 'api_key': site_user['apikey'], 'job_type': 'push_to_datastore', @@ -296,8 +301,10 @@ def datapusher_status(context, data_dict): if job_id: url = urljoin(datapusher_url, 'job' + '/' + job_id) try: - r = requests.get(url, headers={'Content-Type': 'application/json', - 'Authorization': job_key}) + r = requests.get(url, + timeout=TIMEOUT, + headers={'Content-Type': 'application/json', + 'Authorization': job_key}) r.raise_for_status() job_detail = r.json() for log in job_detail['logs']: diff --git a/ckanext/datastore/backend/postgres.py b/ckanext/datastore/backend/postgres.py index 7e48f8a3eb9..0bfcf09bc05 100644 --- a/ckanext/datastore/backend/postgres.py +++ b/ckanext/datastore/backend/postgres.py @@ -124,7 +124,7 @@ def _get_engine_from_url(connection_url): engine = _engines.get(connection_url) if not engine: extras = {'url': connection_url} - config.setdefault('pool_pre_ping', True) + config.setdefault('ckan.datastore.sqlalchemy.pool_pre_ping', True) engine = sqlalchemy.engine_from_config(config, 'ckan.datastore.sqlalchemy.', **extras) @@ -1259,6 +1259,9 @@ def search_data(context, data_dict): else: distinct = '' + if not sort and not distinct: + sort = ['_id'] + if sort: sort_clause = 'ORDER BY %s' % (', '.join(sort)).replace('%', '%%') else: diff --git a/ckanext/datastore/cli.py b/ckanext/datastore/cli.py index 497d33780e7..33a10dd6531 100644 --- a/ckanext/datastore/cli.py +++ b/ckanext/datastore/cli.py @@ -15,10 +15,11 @@ log = logging.getLogger(__name__) -@click.group() +@click.group(short_help=u"Perform commands to set up the datastore.") def datastore(): - u'''Perform commands to set up the datastore. - ''' + """Perform commands to set up the datastore. + """ + pass @datastore.command( diff --git a/ckanext/example_database_migrations/__init__.py b/ckanext/example_database_migrations/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/ckanext/example_database_migrations/migration/example_database_migrations/README b/ckanext/example_database_migrations/migration/example_database_migrations/README new file mode 100644 index 00000000000..98e4f9c44ef --- /dev/null +++ b/ckanext/example_database_migrations/migration/example_database_migrations/README @@ -0,0 +1 @@ +Generic single-database configuration. \ No newline at end of file diff --git a/ckanext/example_database_migrations/migration/example_database_migrations/alembic.ini b/ckanext/example_database_migrations/migration/example_database_migrations/alembic.ini new file mode 100644 index 00000000000..14beac58a70 --- /dev/null +++ b/ckanext/example_database_migrations/migration/example_database_migrations/alembic.ini @@ -0,0 +1,74 @@ +# A generic, single database configuration. + +[alembic] +# path to migration scripts +script_location = %(here)s + +# template used to generate migration files +# file_template = %%(rev)s_%%(slug)s + +# timezone to use when rendering the date +# within the migration file as well as the filename. +# string value is passed to dateutil.tz.gettz() +# leave blank for localtime +# timezone = + +# max length of characters to apply to the +# "slug" field +#truncate_slug_length = 40 + +# set to 'true' to run the environment during +# the 'revision' command, regardless of autogenerate +# revision_environment = false + +# set to 'true' to allow .pyc and .pyo files without +# a source .py file to be detected as revisions in the +# versions/ directory +# sourceless = false + +# version location specification; this defaults +# to /home/sergey/Projects/core/ckan/ckanext/example_database_migrations/migration/example_database_migrations/versions. When using multiple version +# directories, initial revisions must be specified with --version-path +# version_locations = %(here)s/bar %(here)s/bat /home/sergey/Projects/core/ckan/ckanext/example_database_migrations/migration/example_database_migrations/versions + +# the output encoding used when revision files +# are written from script.py.mako +# output_encoding = utf-8 + +sqlalchemy.url = driver://user:pass@localhost/dbname + + +# Logging configuration +[loggers] +keys = root,sqlalchemy,alembic + +[handlers] +keys = console + +[formatters] +keys = generic + +[logger_root] +level = WARN +handlers = console +qualname = + +[logger_sqlalchemy] +level = WARN +handlers = +qualname = sqlalchemy.engine + +[logger_alembic] +level = INFO +handlers = +qualname = alembic + +[handler_console] +class = StreamHandler +args = (sys.stderr,) +level = NOTSET +formatter = generic + +[formatter_generic] +format = %(levelname)-5.5s [%(name)s] %(message)s +datefmt = %H:%M:%S diff --git a/ckanext/example_database_migrations/migration/example_database_migrations/env.py b/ckanext/example_database_migrations/migration/example_database_migrations/env.py new file mode 100644 index 00000000000..00936821888 --- /dev/null +++ b/ckanext/example_database_migrations/migration/example_database_migrations/env.py @@ -0,0 +1,81 @@ +# -*- coding: utf-8 -*- + +from __future__ import with_statement +from alembic import context +from sqlalchemy import engine_from_config, pool +from logging.config import fileConfig + +import os + +# this is the Alembic Config object, which provides +# access to the values within the .ini file in use. +config = context.config + +# Interpret the config file for Python logging. +# This line sets up loggers basically. +fileConfig(config.config_file_name) + +# add your model's MetaData object here +# for 'autogenerate' support +# from myapp import mymodel +# target_metadata = mymodel.Base.metadata +target_metadata = None + +# other values from the config, defined by the needs of env.py, +# can be acquired: +# my_important_option = config.get_main_option("my_important_option") +# ... etc. + +name = os.path.basename(os.path.dirname(__file__)) + + +def run_migrations_offline(): + """Run migrations in 'offline' mode. + + This configures the context with just a URL + and not an Engine, though an Engine is acceptable + here as well. By skipping the Engine creation + we don't even need a DBAPI to be available. + + Calls to context.execute() here emit the given string to the + script output. + + """ + + url = config.get_main_option(u"sqlalchemy.url") + context.configure( + url=url, target_metadata=target_metadata, literal_binds=True, + version_table=u'{}_alembic_version'.format(name) + ) + + with context.begin_transaction(): + context.run_migrations() + + +def run_migrations_online(): + """Run migrations in 'online' mode. + + In this scenario we need to create an Engine + and associate a connection with the context. + + """ + connectable = engine_from_config( + config.get_section(config.config_ini_section), + prefix=u'sqlalchemy.', + poolclass=pool.NullPool) + + with connectable.connect() as connection: + context.configure( + connection=connection, + target_metadata=target_metadata, + version_table=u'{}_alembic_version'.format(name) + ) + + with context.begin_transaction(): + context.run_migrations() + + +if context.is_offline_mode(): + run_migrations_offline() +else: + run_migrations_online() diff --git a/ckanext/example_database_migrations/migration/example_database_migrations/script.py.mako b/ckanext/example_database_migrations/migration/example_database_migrations/script.py.mako new file mode 100644 index 00000000000..2c0156303a8 --- /dev/null +++ b/ckanext/example_database_migrations/migration/example_database_migrations/script.py.mako @@ -0,0 +1,24 @@ +"""${message} + +Revision ID: ${up_revision} +Revises: ${down_revision | comma,n} +Create Date: ${create_date} + +""" +from alembic import op +import sqlalchemy as sa +${imports if imports else ""} + +# revision identifiers, used by Alembic. +revision = ${repr(up_revision)} +down_revision = ${repr(down_revision)} +branch_labels = ${repr(branch_labels)} +depends_on = ${repr(depends_on)} + + +def upgrade(): + ${upgrades if upgrades else "pass"} + + +def downgrade(): + ${downgrades if downgrades else "pass"} diff --git a/ckanext/example_database_migrations/migration/example_database_migrations/versions/4f59069f433e_create_x_table.py b/ckanext/example_database_migrations/migration/example_database_migrations/versions/4f59069f433e_create_x_table.py new file mode 100644 index 00000000000..508ff6d98c4 --- /dev/null +++ b/ckanext/example_database_migrations/migration/example_database_migrations/versions/4f59069f433e_create_x_table.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +"""create x table + +Revision ID: 4f59069f433e +Revises: +Create Date: 2021-06-07 16:36:45.509302 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = u'4f59069f433e' +down_revision = None +branch_labels = None +depends_on = None + + +def upgrade(): + op.create_table( + u'example_database_migrations_x', + sa.Column(u'xid', sa.Integer, primary_key=True) + ) + + +def downgrade(): + op.drop_table(u'example_database_migrations_x') diff --git a/ckanext/example_database_migrations/migration/example_database_migrations/versions/728663ebe30e_create_y_table.py b/ckanext/example_database_migrations/migration/example_database_migrations/versions/728663ebe30e_create_y_table.py new file mode 100644 index 00000000000..283428cbab1 --- /dev/null +++ b/ckanext/example_database_migrations/migration/example_database_migrations/versions/728663ebe30e_create_y_table.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- + +"""create y table + +Revision ID: 728663ebe30e +Revises: 4f59069f433e +Create Date: 2021-06-07 16:36:54.388978 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = u'728663ebe30e' +down_revision = u'4f59069f433e' +branch_labels = None +depends_on = None + + +def upgrade(): + op.create_table( + u'example_database_migrations_y', + sa.Column(u'yid', sa.Integer, primary_key=True) + ) + + +def downgrade(): + op.drop_table(u'example_database_migrations_y') diff --git a/ckanext/example_database_migrations/plugin.py b/ckanext/example_database_migrations/plugin.py new file mode 100644 index 00000000000..8332e2cbe12 --- /dev/null +++ b/ckanext/example_database_migrations/plugin.py @@ -0,0 +1,7 @@ +# -*- coding: utf-8 -*- + +import ckan.plugins as p + + +class ExampleDatabaseMigrationsPlugin(p.SingletonPlugin): + pass diff --git a/ckanext/example_flask_iblueprint/plugin.py b/ckanext/example_flask_iblueprint/plugin.py index 55ceefed557..32991c8b2b2 100644 --- a/ckanext/example_flask_iblueprint/plugin.py +++ b/ckanext/example_flask_iblueprint/plugin.py @@ -58,6 +58,21 @@ def helper_here(): return render_template_string(html) +def flask_request(): + u'''A simple template with a helper that exists. Rendering with a helper + shouldn't raise an exception.''' + + html = u''' + + + Hello from Flask + + {{ request.params }} + ''' + + return render_template_string(html) + + class ExampleFlaskIBlueprintPlugin(p.SingletonPlugin): u''' An example IBlueprint plugin to demonstrate Flask routing from an @@ -84,6 +99,7 @@ def get_blueprint(self): (u'/', u'home', override_flask_home), (u'/helper_not_here', u'helper_not_here', helper_not_here), (u'/helper', u'helper_here', helper_here), + (u'/flask_request', u'flask_request', flask_request), ] for rule in rules: blueprint.add_url_rule(*rule) diff --git a/ckanext/example_flask_iblueprint/tests/test_routes.py b/ckanext/example_flask_iblueprint/tests/test_routes.py index ffdb28b57ca..efe20cbdfb6 100644 --- a/ckanext/example_flask_iblueprint/tests/test_routes.py +++ b/ckanext/example_flask_iblueprint/tests/test_routes.py @@ -43,3 +43,11 @@ def test_plugin_route_with_non_existent_helper(self, app): """ with pytest.raises(HelperError): app.get(u"/helper_not_here") + + def test_flask_request_in_template(self, app): + u""" + Test that we are using Flask request wrapped with CKANRequest + params is should be accessible for backward compatibility + """ + res = app.get(u"/flask_request?test=it_works") + assert helpers.body_contains(res, u'it_works') diff --git a/ckanext/resourceproxy/blueprint.py b/ckanext/resourceproxy/blueprint.py index 61f5661ef6e..8ea9efa73b9 100644 --- a/ckanext/resourceproxy/blueprint.py +++ b/ckanext/resourceproxy/blueprint.py @@ -17,6 +17,7 @@ config.get(u'ckan.resource_proxy.max_file_size', 1024**2) ) CHUNK_SIZE = asint(config.get(u'ckan.resource_proxy.chunk_size', 4096)) +TIMEOUT = asint(config.get(u'ckan.resource_proxy.timeout', 10)) resource_proxy = Blueprint(u'resource_proxy', __name__) @@ -45,13 +46,13 @@ def proxy_resource(context, data_dict): try: # first we try a HEAD request which may not be supported did_get = False - r = requests.head(url) + r = requests.head(url, timeout=TIMEOUT) # Servers can refuse HEAD requests. 405 is the appropriate # response, but 400 with the invalid method mentioned in the # text, or a 403 (forbidden) status is also possible (#2412, # #2530) if r.status_code in (400, 403, 405): - r = requests.get(url, stream=True) + r = requests.get(url, timeout=TIMEOUT, stream=True) did_get = True r.raise_for_status() @@ -65,7 +66,7 @@ def proxy_resource(context, data_dict): ) if not did_get: - r = requests.get(url, stream=True) + r = requests.get(url, timeout=TIMEOUT, stream=True) response.headers[u'content-type'] = r.headers[u'content-type'] response.charset = r.encoding diff --git a/ckanext/resourceproxy/tests/test_proxy.py b/ckanext/resourceproxy/tests/test_proxy.py index 99d359257ed..b6b89be48e2 100644 --- a/ckanext/resourceproxy/tests/test_proxy.py +++ b/ckanext/resourceproxy/tests/test_proxy.py @@ -70,7 +70,7 @@ def test_resource_proxy_on_200(self): body=six.ensure_binary(JSON_STRING)) url = self.data_dict['resource']['url'] - result = requests.get(url) + result = requests.get(url, timeout=30) assert result.status_code == 200, result.status_code assert "yes, I'm proxied" in six.ensure_str(result.content) @@ -83,7 +83,7 @@ def test_resource_proxy_on_404(self, app): status=404) url = self.data_dict['resource']['url'] - result = requests.get(url) + result = requests.get(url, timeout=30) assert result.status_code == 404, result.status_code proxied_url = proxy.get_proxified_resource_url(self.data_dict) @@ -134,7 +134,7 @@ def test_non_existent_url(self, app): def f1(): url = self.data_dict['resource']['url'] - requests.get(url) + requests.get(url, timeout=30) with pytest.raises(requests.ConnectionError): f1() diff --git a/contrib/docker/ckan-entrypoint.sh b/contrib/docker/ckan-entrypoint.sh index acc7b935342..59997267601 100755 --- a/contrib/docker/ckan-entrypoint.sh +++ b/contrib/docker/ckan-entrypoint.sh @@ -35,6 +35,7 @@ set_environment () { export CKAN_SMTP_MAIL_FROM=${CKAN_SMTP_MAIL_FROM} export CKAN_MAX_UPLOAD_SIZE_MB=${CKAN_MAX_UPLOAD_SIZE_MB} export CKAN_LOG_PATH=${CKAN_LOG_PATH} + export SECRET_KEY=${SECRET_KEY} } write_config () { @@ -70,7 +71,7 @@ if [ -z "$CKAN_DATAPUSHER_URL" ]; then fi set_environment -ckan --config "$CONFIG" db init +${CKAN_VENV}/bin/ckan --config "$CONFIG" db init # ckan-paster --plugin=ckan db init -c "${CKAN_CONFIG}/production.ini" # ckan-paster --plugin=ckanext-harvest harvester initdb -c "${CKAN_CONFIG}/production.ini" # ckan-paster --plugin=ckanext-spatial spatial initdb -c "${CKAN_CONFIG}/production.ini" diff --git a/contrib/docker/ckan_utils.sh b/contrib/docker/ckan_utils.sh new file mode 100644 index 00000000000..9ebd4fcf687 --- /dev/null +++ b/contrib/docker/ckan_utils.sh @@ -0,0 +1,136 @@ +#!/bin/bash + +# CKAN utility functions and environment variables +# To get started, source this file and then run ckan_list_utils + +export CKAN_DOCKER=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) +export CKAN_BASE=$(readlink -f ${CKAN_DOCKER}/../../) +export VOL_CKAN_HOME=`sudo docker volume inspect docker_ckan_home | jq -r -c '.[] | .Mountpoint'` +export VOL_CKAN_CONFIG=`sudo docker volume inspect docker_ckan_config | jq -r -c '.[] | .Mountpoint'` +export VOL_CKAN_STORAGE=`sudo docker volume inspect docker_ckan_storage | jq -r -c '.[] | .Mountpoint'` + +ckan_utils_ls() { + declare -F | grep "ckan_" + echo "Run 'type ' for more details about each utility function listed above." +} + +ckan_variables() { + echo "CKAN_BASE $CKAN_BASE" + echo "CKAN_DOCKER: $CKAN_DOCKER" + echo "VOL_CKAN_HOME: $VOL_CKAN_HOME" + echo "VOL_CKAN_CONFIG: $VOL_CKAN_CONFIG" + echo "VOL_CKAN_STORAGE: $VOL_CKAN_STORAGE" +} + +ckan_ps() { + pushd $CKAN_DOCKER + docker-compose ps + popd +} + +ckan_logs() { + sudo docker logs ckan +} + +ckan_stop() { + pushd $CKAN_DOCKER + sudo docker-compose stop ckan + sudo docker-compose stop ckan_gather_harvester + sudo docker-compose stop ckan_fetch_harvester + sudo docker-compose stop ckan_run_harvester + popd +} + +ckan_start() { + pushd $CKAN_DOCKER + sudo docker-compose start ckan + sudo docker-compose start ckan_gather_harvester + sudo docker-compose start ckan_fetch_harvester + sudo docker-compose start ckan_run_harvester + popd +} + +ckan_down() { + pushd $CKAN_DOCKER + sudo docker-compose down "$@" + popd +} + +ckan_up() { + pushd $CKAN_DOCKER + sudo docker-compose up "$@" + popd +} + +ckan_perms() { + sudo chown 900:900 -R $VOL_CKAN_HOME/venv/src/ +} + +ckan_reload() { + bash $CKAN_BASE/ckan_reload_ckan.sh +} + +ckan_reindex() { + sudo docker exec -it ckan -c /etc/ckan/production.ini search-index rebuild +} + +ckan_create_admin() { + sudo docker exec -i ckan -c /etc/ckan/production.ini sysadmin add admin +} + +ckan_upgrade() { + cd $CKAN_DOCKER + sudo docker-compose down + # use down -v to remove all volumes in addition to containers + git pull + sudo docker-compose pull + sudo docker-compose up -d --build +} + +ckan_compile_css(){ + cd $CKAN_DOCKER/src/ckanext-cioos_theme/ckanext/cioos_theme/public/ + sass --update --style=compressed cioos_atlantic.scss:cioos_atlantic.css cioos_theme.scss:cioos_theme.css + cd $CKAN_DOCKER +} + +ckan_api_setup() { + echo "Setting up the URL, API_KEY, and conda environment for use with the CKAN API." + echo "For more information, see:" + echo "https://github.com/ckan/ckanapi" + echo "https://docs.ckan.org/en/latest/api/index.html" + echo "" + if ! command -v conda &> /dev/null; then + echo "The conda command is not in the current PATH" + echo "Typically found at $HOME/miniconda3/etc/profile.d/conda.sh" + echo "Please enter the full path to your conda.sh" + read -p CONDA_SH + export CONDA_SH=$CONDA_SH + fi + if ! command -v ckanapi &> /dev/null; then + echo "The ckanapi command is not in the current PATH" + echo "Which conda environment enables the ckanapi command?" + read -p CONDA_ENV + fi + if [ -z $CKAN_URL ]; then + echo "What is the CKAN URL?" + read -p CKAN_URL + export CKAN_URL=$CKAN_URL + fi + if [ -z $CKAN_API_KEY ]; then + echo "What is the API key to use?" + read -p CKAN_API_KEY + export CKAN_API_KEY=$CKAN_API_KEY + fi + echo "a" +} + +ckan_api() { + if [[ -z $CONDA_SH ]] || [[ -z $CONDA_ENV ]] || [[ -z $CKAN_URL ]] || [[ -z $CKAN_API_KEY ]]; then + echo "A required environment variable for the CKAN API setup is not set." + echo "Run the ckan_api_setup command to set these first." + else + source $CONDA_SH + conda activate $CONDA_ENV + ckanapi -r $CKAN_URL -a $CKAN_API_KEY "$@" + fi +} diff --git a/contrib/docker/production_non_root_url.ini b/contrib/docker/production_non_root_url.ini index 01234c79d61..81e6fd18ea6 100644 --- a/contrib/docker/production_non_root_url.ini +++ b/contrib/docker/production_non_root_url.ini @@ -303,7 +303,7 @@ qualname = werkzeug propagate = 0 [logger_ckan] -level = INFO +level = WARNING handlers = console, file qualname = ckan propagate = 0 diff --git a/contrib/docker/production_root_url.ini b/contrib/docker/production_root_url.ini index 1d681d94483..3ab64afa192 100644 --- a/contrib/docker/production_root_url.ini +++ b/contrib/docker/production_root_url.ini @@ -305,7 +305,7 @@ qualname = werkzeug propagate = 0 [logger_ckan] -level = INFO +level = WARNING handlers = console, file qualname = ckan propagate = 0 diff --git a/contrib/docker/solr/Dockerfile b/contrib/docker/solr/Dockerfile index 0c642c89e13..18ecde47893 100644 --- a/contrib/docker/solr/Dockerfile +++ b/contrib/docker/solr/Dockerfile @@ -1,31 +1,25 @@ # FROM solr:6.6.5 -FROM solr:6.6.6 +# FROM solr:6.6.6 +FROM solr:8 MAINTAINER Open Knowledge +EXPOSE 8983 + # Enviroment ENV SOLR_CORE ckan +ENV SOLR_CONFIG_DIR="/opt/solr/server/solr/configsets" +ENV SOLR_SCHEMA_FILE="$SOLR_CONFIG_DIR/ckan/conf/managed-schema" -# Create Directories -RUN mkdir -p /opt/solr/server/solr/$SOLR_CORE/conf -RUN mkdir -p /opt/solr/server/solr/$SOLR_CORE/data - -# Adding Files -ADD ./contrib/docker/solr/solrconfig.xml \ -./ckan/config/solr/schema.xml \ -https://raw.githubusercontent.com/apache/lucene-solr/releases/lucene-solr/6.6.6/solr/server/solr/configsets/basic_configs/conf/currency.xml \ -https://raw.githubusercontent.com/apache/lucene-solr/releases/lucene-solr/6.6.6/solr/server/solr/configsets/basic_configs/conf/synonyms.txt \ -https://raw.githubusercontent.com/apache/lucene-solr/releases/lucene-solr/6.6.6/solr/server/solr/configsets/basic_configs/conf/stopwords.txt \ -https://raw.githubusercontent.com/apache/lucene-solr/releases/lucene-solr/6.6.6/solr/server/solr/configsets/basic_configs/conf/protwords.txt \ -https://raw.githubusercontent.com/apache/lucene-solr/releases/lucene-solr/6.6.6/solr/server/solr/configsets/data_driven_schema_configs/conf/elevate.xml \ -/opt/solr/server/solr/$SOLR_CORE/conf/ - -# Create Core.properties -RUN echo name=$SOLR_CORE > /opt/solr/server/solr/$SOLR_CORE/core.properties +USER root -# Giving ownership to Solr +# Create a CKAN configset by copying the default one +RUN cp -R $SOLR_CONFIG_DIR/_default $SOLR_CONFIG_DIR/ckan -USER root -RUN chown -R $SOLR_USER:$SOLR_USER /opt/solr/server/solr/$SOLR_CORE +# Adding Files +ADD ./ckan/config/solr/schema.xml $SOLR_SCHEMA_FILE +RUN chmod 644 $SOLR_SCHEMA_FILE # User USER $SOLR_USER:$SOLR_USER + +CMD ["sh", "-c", "solr-precreate ckan $SOLR_CONFIG_DIR/ckan"] diff --git a/contrib/docker/src/cioos-siooc-schema b/contrib/docker/src/cioos-siooc-schema index 2539204e38f..609ad1711f5 160000 --- a/contrib/docker/src/cioos-siooc-schema +++ b/contrib/docker/src/cioos-siooc-schema @@ -1 +1 @@ -Subproject commit 2539204e38fc11b0d9f1a072870f40bba76bdfa3 +Subproject commit 609ad1711f5b842fc80db802290e9c23ec8edbf8 diff --git a/contrib/docker/src/ckanext-cioos_harvest b/contrib/docker/src/ckanext-cioos_harvest index 3d9a7e32107..0d8f9e655c8 160000 --- a/contrib/docker/src/ckanext-cioos_harvest +++ b/contrib/docker/src/ckanext-cioos_harvest @@ -1 +1 @@ -Subproject commit 3d9a7e321078ffdaff1983f427ef56d1cc0900f1 +Subproject commit 0d8f9e655c81b8410e3946564fd19dd2c75ecfff diff --git a/contrib/docker/src/ckanext-cioos_theme b/contrib/docker/src/ckanext-cioos_theme index d64d08840be..e15aa74e1e5 160000 --- a/contrib/docker/src/ckanext-cioos_theme +++ b/contrib/docker/src/ckanext-cioos_theme @@ -1 +1 @@ -Subproject commit d64d08840bed9add5e1439050606c5af66a2975c +Subproject commit e15aa74e1e5eec7b6c01c896dcfc69f1f12237c3 diff --git a/contrib/docker/src/ckanext-dcat b/contrib/docker/src/ckanext-dcat index b50bd2420df..d616db8e03d 160000 --- a/contrib/docker/src/ckanext-dcat +++ b/contrib/docker/src/ckanext-dcat @@ -1 +1 @@ -Subproject commit b50bd2420df9c317f78b46f36cc0e376f3b2f4f7 +Subproject commit d616db8e03d653b24164cb21822842ae9494f5c4 diff --git a/contrib/docker/src/ckanext-fluent b/contrib/docker/src/ckanext-fluent index f04de7f53a0..755b33c325f 160000 --- a/contrib/docker/src/ckanext-fluent +++ b/contrib/docker/src/ckanext-fluent @@ -1 +1 @@ -Subproject commit f04de7f53a01bb338519bb4ded3d39f4f29c1148 +Subproject commit 755b33c325f5e451cdeb7dff652bb68e0c2d77f9 diff --git a/contrib/docker/src/ckanext-geoview b/contrib/docker/src/ckanext-geoview index a1a17202510..cc30270e84c 160000 --- a/contrib/docker/src/ckanext-geoview +++ b/contrib/docker/src/ckanext-geoview @@ -1 +1 @@ -Subproject commit a1a17202510c442a1f7cf95ed09d7984484d9764 +Subproject commit cc30270e84c50df17a7a9f00b1223219dc3afa52 diff --git a/contrib/docker/src/ckanext-harvest b/contrib/docker/src/ckanext-harvest index d1f93d86caa..ffb6c8311fb 160000 --- a/contrib/docker/src/ckanext-harvest +++ b/contrib/docker/src/ckanext-harvest @@ -1 +1 @@ -Subproject commit d1f93d86caa977869cbdcd36fe2ec1bb279bc383 +Subproject commit ffb6c8311fb4ac5bedf8e83b6c1dc7a18f93bc3a diff --git a/contrib/docker/src/ckanext-scheming b/contrib/docker/src/ckanext-scheming index 3c4f4f61824..26a3f994e1e 160000 --- a/contrib/docker/src/ckanext-scheming +++ b/contrib/docker/src/ckanext-scheming @@ -1 +1 @@ -Subproject commit 3c4f4f61824166bdf6a7007c0daaae348d785568 +Subproject commit 26a3f994e1eda72297db5befd4f8fea1b1eefaf7 diff --git a/contrib/docker/src/ckanext-spatial b/contrib/docker/src/ckanext-spatial index 73feefffe79..94d2736cdc7 160000 --- a/contrib/docker/src/ckanext-spatial +++ b/contrib/docker/src/ckanext-spatial @@ -1 +1 @@ -Subproject commit 73feefffe79db6fc384cf35af42e2e45b0fe8bb3 +Subproject commit 94d2736cdc7b288d4e5d22441e87e2f628ec1821 diff --git a/cypress/integration/modules/autocomplete.spec.js b/cypress/integration/modules/autocomplete.spec.js index e87a133c738..62387c9937e 100644 --- a/cypress/integration/modules/autocomplete.spec.js +++ b/cypress/integration/modules/autocomplete.spec.js @@ -74,7 +74,8 @@ describe('ckan.modules.AutocompleteModule()', function () { formatInputTooShort: this.module.formatInputTooShort, createSearchChoice: this.module.formatTerm, // Not used by tags. initSelection: this.module.formatInitialValue, - tokenSeparators: [','] + tokenSeparators: [','], + minimumInputLength: 0 }); }); @@ -92,7 +93,8 @@ describe('ckan.modules.AutocompleteModule()', function () { formatNoMatches: this.module.formatNoMatches, formatInputTooShort: this.module.formatInputTooShort, initSelection: this.module.formatInitialValue, - tokenSeparators: [','] + tokenSeparators: [','], + minimumInputLength: 0 }); }) it('should watch the keydown event on the select2 input'); @@ -112,7 +114,8 @@ describe('ckan.modules.AutocompleteModule()', function () { formatInputTooShort: this.module.formatInputTooShort, createSearchChoice: this.module.formatTerm, // Not used by tags. initSelection: this.module.formatInitialValue, - tokenSeparators: [','] + tokenSeparators: [','], + minimumInputLength: 0 }); }); @@ -131,9 +134,31 @@ describe('ckan.modules.AutocompleteModule()', function () { formatInputTooShort: this.module.formatInputTooShort, createSearchChoice: this.module.formatTerm, // Not used by tags. initSelection: this.module.formatInitialValue, - tokenSeparators: [','] + tokenSeparators: [','], + minimumInputLength: 0 }); }); + + it('should allow a changing minimumInputLength', function () { + this.module.options.minimumInputLength = 3; + this.module.setupAutoComplete(); + + expect(this.select2).to.be.called; + expect(this.select2).to.be.calledWith({ + width: 'resolve', + query: this.module._onQuery, + dropdownCssClass: '', + containerCssClass: '', + formatResult: this.module.formatResult, + formatNoMatches: this.module.formatNoMatches, + formatInputTooShort: this.module.formatInputTooShort, + createSearchChoice: this.module.formatTerm, // Not used by tags. + initSelection: this.module.formatInitialValue, + tokenSeparators: [','], + minimumInputLength: 3 + }); + }); + }); describe('.getCompletions(term, fn)', function () { diff --git a/doc/_templates/footer.html b/doc/_templates/footer.html index ea9a372b6f0..9022ffacdac 100644 --- a/doc/_templates/footer.html +++ b/doc/_templates/footer.html @@ -37,8 +37,6 @@

Related Projects: - The DataHub - — DataCatalogs.orgOpenSpending.org diff --git a/doc/api/index.rst b/doc/api/index.rst index e19c165bcd7..f1723a6595c 100644 --- a/doc/api/index.rst +++ b/doc/api/index.rst @@ -387,11 +387,11 @@ Uploading a new version of a resource file ========================================== You can use the ``upload`` parameter of the -:py:func:`~ckan.logic.action.update.resource_update` function to upload a +:py:func:`~ckan.logic.action.patch.resource_patch` function to upload a new version of a resource file. This requires a ``multipart/form-data`` request, with curl you can do this using the ``@file.csv``:: - curl -X POST -H "Content-Type: multipart/form-data" -H "Authorization: XXXX" -F "id=" -F "upload=@updated_file.csv" https://demo.ckan.org/api/3/action/resource_update + curl -X POST -H "Content-Type: multipart/form-data" -H "Authorization: XXXX" -F "id=" -F "upload=@updated_file.csv" https://demo.ckan.org/api/3/action/resource_patch .. _api-reference: diff --git a/doc/maintaining/cli.rst b/doc/maintaining/cli.rst index 44882277eae..e2dde594918 100644 --- a/doc/maintaining/cli.rst +++ b/doc/maintaining/cli.rst @@ -263,6 +263,7 @@ db: Manage databases ckan db downgrade - Downgrade the database ckan db duplicate_emails - Check users email for duplicate ckan db init - Initialize the database + ckan db pending-migrations - List all sources with unapplied migrations. ckan db upgrade - Upgrade the database ckan db version - Returns current version of data schema diff --git a/doc/maintaining/configuration.rst b/doc/maintaining/configuration.rst index 192077f7ff7..290a7ab4f10 100644 --- a/doc/maintaining/configuration.rst +++ b/doc/maintaining/configuration.rst @@ -657,6 +657,34 @@ Default value: ``http https ftp`` Controls what uri schemes are rendered as links. +.. _ckan.requests.timeout: + +ckan.requests.timeout +^^^^^^^^^^^^^^^^^^^^^ + +Example:: + + ckan.requests.timeout = 3 + +Default value: 5 + +Default timeout for GET requests performed by the requests library. + + +.. _ckan.resource_proxy.timeout: + +ckan.resource_proxy.timeout +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Example:: + + ckan.resource_proxy.timeout = 5 + +Default value: 10 + +Default timeout for GET requests performed in the resourceproxy plugin by the requests library. + + .. _config-authorization: Authorization Settings @@ -1084,7 +1112,7 @@ ckan.search.default_package_sort Example:: - ckan.search.default_package_sort = "name asc" + ckan.search.default_package_sort = name asc Default value: ``score desc, metadata_modified desc`` @@ -1870,6 +1898,61 @@ Default value: ``2`` The maximum in megabytes an image upload can be. +Uploader Settings +----------------- + +.. _ckan.upload.user.types: + +ckan.upload.user.types +^^^^^^^^^^^^^^^^^^^^^^ + +Example:: + + ckan.upload.user.types = image text + +Default value: + +File types allowed to upload as user's avatar. No restrictions applied when empty + +.. _ckan.upload.user.mimetypes: + +ckan.upload.user.mimetypes +^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Example:: + + ckan.upload.user.mimetypes = image/png text/svg + +Default value: + +File MIMETypes allowed to upload as user's avatar. No restrictions applied when empty + +.. _ckan.upload.group.types: + +ckan.upload.group.types +^^^^^^^^^^^^^^^^^^^^^^^ + +Example:: + + ckan.upload.group.types = image text + +Default value: + +File types allowed to upload as group image. No restrictions applied when empty + +.. _ckan.upload.group.mimetypes: + +ckan.upload.group.mimetypes +^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +Example:: + + ckan.upload.group.mimetypes = image/png text/svg + +Default value: + +File MIMETypes allowed to upload as group image. No restrictions applied when empty + Webassets Settings ------------------ diff --git a/doc/maintaining/installing/install-from-docker-compose.rst b/doc/maintaining/installing/install-from-docker-compose.rst index c1836136481..290d960829d 100644 --- a/doc/maintaining/installing/install-from-docker-compose.rst +++ b/doc/maintaining/installing/install-from-docker-compose.rst @@ -174,7 +174,7 @@ a. Configure datastore database With running CKAN containers, execute the built-in setup script against the ``db`` container:: - docker exec ckan /usr/local/bin/ckan-paster --plugin=ckan datastore set-permissions -c /etc/ckan/production.ini | docker exec -i db psql -U ckan + docker exec ckan /usr/local/bin/ckan -c /etc/ckan/production.ini datastore set-permissions | docker exec -i db psql -U ckan The script pipes in the output of ``paster ckan set-permissions`` - however, as this output can change in future versions of CKAN, we set the permissions directly. @@ -221,7 +221,7 @@ Now the datastore API should return content when visiting:: ------------------------- With all images up and running, create the CKAN admin user (johndoe in this example):: - docker exec -it ckan /usr/local/bin/ckan-paster --plugin=ckan sysadmin -c /etc/ckan/production.ini add johndoe + docker exec -it ckan /usr/local/bin/ckan -c /etc/ckan/production.ini sysadmin add johndoe Now you should be able to login to the new, empty CKAN. The admin user's API key will be instrumental in tranferring data from other instances. diff --git a/doc/maintaining/installing/install-from-source.rst b/doc/maintaining/installing/install-from-source.rst index bd0f53556e1..d1bd02686be 100644 --- a/doc/maintaining/installing/install-from-source.rst +++ b/doc/maintaining/installing/install-from-source.rst @@ -277,6 +277,11 @@ Follow the instructions in :doc:`/maintaining/datastore` to create the required databases and users, set the right permissions and set the appropriate values in your CKAN config file. +Once you have set up the DataStore, you may then wish to configure either the DataPusher or XLoader +extensions to add data to the DataStore. To install DataPusher refer to this link: +https://github.com/ckan/datapusher and to install XLoader refer to this link: +https://github.com/ckan/ckanext-xloader + --------------- 9. You're done! --------------- diff --git a/requirements.in b/requirements.in index 499136695c7..6068f7bcfbd 100644 --- a/requirements.in +++ b/requirements.in @@ -22,17 +22,17 @@ pysolr==3.6.0 python-dateutil>=1.5.0 pytz==2016.7 PyUtilib==5.7.1 -pyyaml==5.3.1 +pyyaml==5.4.1 repoze.who==2.3 -requests==2.22.0 +requests==2.25.1 Routes==1.13 rq==1.0 simplejson==3.10.0 -sqlalchemy-migrate==0.12.0 SQLAlchemy==1.3.5 sqlparse==0.2.2 tzlocal==1.3 unicodecsv>=0.9 +watchdog==2.1.5 # For py3 support webassets==0.12.1 Werkzeug[watchdog]==1.0.0 zope.interface==4.3.2 diff --git a/requirements.txt b/requirements.txt index 067af63479d..69ff8c1ad1d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,63 +2,61 @@ # This file is autogenerated by pip-compile # To update, run: # -# pip-compile --output-file requirements.txt requirements.in +# pip-compile requirements.in # -alembic==1.0.0 -babel==2.7.0 -beaker==1.11.0 -bleach==3.1.4 -certifi==2019.11.28 # via requests -chardet==3.0.4 # via requests -click==7.1.2 -decorator==4.4.1 # via sqlalchemy-migrate -dominate==2.4.0 -fanstatic==1.1 -feedgen==0.9.0 -flask-babel==1.0.0 -flask-multistatic==1.0 -flask==1.1.1 -idna==2.8 # via requests +alembic==1.0.0 # via -r requirements.in +babel==2.7.0 # via -r requirements.in, flask-babel +beaker==1.11.0 # via -r requirements.in +bleach==3.1.4 # via -r requirements.in +certifi==2021.5.30 # via requests +chardet==4.0.0 # via requests +click==7.1.2 # via -r requirements.in, flask, rq +dominate==2.4.0 # via -r requirements.in +fanstatic==1.1 # via -r requirements.in +feedgen==0.9.0 # via -r requirements.in +flask-babel==1.0.0 # via -r requirements.in +flask-multistatic==1.0 # via -r requirements.in +flask==1.1.1 # via -r requirements.in, flask-babel, flask-multistatic +funcsigs==1.0.2 # via beaker +idna==2.10 # via requests itsdangerous==1.1.0 # via flask -jinja2==2.10.1 -PyJWT==1.7.1 -lxml==4.4.2 # via feedgen -mako==1.1.0 # via alembic -markdown==2.6.7 +jinja2==2.10.1 # via -r requirements.in, flask, flask-babel +lxml==4.6.3 # via feedgen +mako==1.1.5 # via alembic +markdown==2.6.7 # via -r requirements.in markupsafe==1.1.1 # via jinja2, mako nose==1.3.7 # via pyutilib -passlib==1.6.5 -pastedeploy==2.0.1 # manually kept - remove when #4802 is complete -pathtools==0.1.2 # via watchdog -pbr==5.4.4 # via sqlalchemy-migrate -polib==1.0.7 -psycopg2==2.8.2 -pysolr==3.6.0 -python-dateutil==2.8.1 +passlib==1.6.5 # via -r requirements.in +polib==1.0.7 # via -r requirements.in +psycopg2==2.8.2 # via -r requirements.in +pyjwt==1.7.1 # via -r requirements.in +pysolr==3.6.0 # via -r requirements.in +python-dateutil==2.8.2 # via -r requirements.in, alembic, feedgen python-editor==1.0.4 # via alembic -python-magic==0.4.15 -pytz==2016.7 -pyutilib==5.7.1 -pyyaml==5.3.1 -redis==3.3.11 # via rq +python-magic==0.4.15 # via -r requirements.in +pytz==2016.7 # via -r requirements.in, babel, flask-babel, tzlocal +pyutilib==5.7.1 # via -r requirements.in +pyyaml==5.4.1 # via -r requirements.in +redis==3.5.3 # via rq repoze.lru==0.7 # via routes -repoze.who==2.3 -requests==2.22.0 -routes==1.13 -rq==1.0 +repoze.who==2.3 # via -r requirements.in +requests==2.25.1 # via -r requirements.in, pysolr +routes==1.13 # via -r requirements.in +rq==1.0 # via -r requirements.in shutilwhich==1.1.0 # via fanstatic -simplejson==3.10.0 -six==1.13.0 # via bleach, python-dateutil, pyutilib, sqlalchemy-migrate -sqlalchemy-migrate==0.12.0 -sqlalchemy==1.3.5 -sqlparse==0.2.2 -tempita==0.5.2 # via sqlalchemy-migrate -tzlocal==1.3 -unicodecsv==0.14.1 -urllib3==1.25.8 # via requests -watchdog==0.10.2 # via werkzeug -webassets==0.12.1 +simplejson==3.10.0 # via -r requirements.in +six==1.16.0 # via bleach, python-dateutil, pyutilib +sqlalchemy==1.3.5 # via -r requirements.in, alembic +sqlparse==0.2.2 # via -r requirements.in +tzlocal==1.3 # via -r requirements.in +unicodecsv==0.14.1 # via -r requirements.in +urllib3==1.26.6 # via requests +watchdog==2.1.5 # via -r requirements.in, werkzeug +webassets==0.12.1 # via -r requirements.in webencodings==0.5.1 # via bleach -webob==1.8.5 # via fanstatic, repoze.who -werkzeug[watchdog]==1.0.0 -zope.interface==4.3.2 +webob==1.8.7 # via fanstatic, repoze.who +werkzeug[watchdog]==1.0.0 # via -r requirements.in, flask +zope.interface==4.3.2 # via -r requirements.in, repoze.who + +# The following packages are considered to be unsafe in a requirements file: +# setuptools diff --git a/setup.py b/setup.py index b64aeb6201c..baae3d16c0b 100644 --- a/setup.py +++ b/setup.py @@ -155,6 +155,7 @@ 'example_iapitoken = ckanext.example_iapitoken.plugin:ExampleIApiTokenPlugin', 'example_iclick = ckanext.example_iclick.plugin:ExampleIClickPlugin', 'example_iauthenticator = ckanext.example_iauthenticator.plugin:ExampleIAuthenticatorPlugin', + 'example_database_migrations = ckanext.example_database_migrations.plugin:ExampleDatabaseMigrationsPlugin', ], 'ckan.system_plugins': [ 'synchronous_search = ckan.lib.search:SynchronousSearchPlugin',